-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
update readme, verbump, add advancement for char sheet recipe
- Loading branch information
Showing
3 changed files
with
38 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,15 @@ | ||
<img src="icon.png" align="right" width="180px"/> | ||
|
||
# Skillworks | ||
# SkillCheck | ||
|
||
|
||
[>> Downloads <<](https://github.com/CottonMC/Skillworks/releases) | ||
[>> Downloads <<](https://github.com/CottonMC/SkillCheck/releases) | ||
|
||
*Improve yourself!* | ||
|
||
**This mod is open source and under a permissive license.** As such, it can be included in any modpack on any platform without prior permission. We appreciate hearing about people using our mods, but you do not need to ask to use them. See the [LICENSE file](LICENSE) for more details. | ||
|
||
Skillworks adds various user-learnable skills similar to an RPG. Currently planned/included: | ||
|
||
- **Fisticuffs**: boosts damage when attacking without an item in hand. | ||
- **Weaver**: allows you to put up to 16 patterns on a single banner. | ||
|
||
This mod requires [Earl Gray](https://gitlab.com/elucent/earl-gray) by Elucent. | ||
- **Artisan**: a class related to making professional goods. | ||
- **Brawler**: a class related to unarmed combat. | ||
- **Thief**: a class related to pilfering and gymnastics. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
32 changes: 32 additions & 0 deletions
32
src/main/resources/data/skillchec/advancements/recipes/character_sheet.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
{ | ||
"parent": "minecraft:recipes/root", | ||
"rewards": { | ||
"recipes": [ | ||
"skillcheck:character_sheet" | ||
] | ||
}, | ||
"criteria": { | ||
"has_lapis": { | ||
"trigger": "minecraft:inventory_changed", | ||
"conditions": { | ||
"items": [ | ||
{ | ||
"item": "minecraft:lapis_lazuli" | ||
} | ||
] | ||
} | ||
}, | ||
"has_the_recipe": { | ||
"trigger": "minecraft:recipe_unlocked", | ||
"conditions": { | ||
"recipe": "skillcheck:character_sheet" | ||
} | ||
} | ||
}, | ||
"requirements": [ | ||
[ | ||
"has_lapis", | ||
"has_the_recipe" | ||
] | ||
] | ||
} |