Skip to content

Commit

Permalink
update readme, verbump, add advancement for char sheet recipe
Browse files Browse the repository at this point in the history
  • Loading branch information
LemmaEOF committed May 8, 2019
1 parent 550e45c commit 0e4689d
Show file tree
Hide file tree
Showing 3 changed files with 38 additions and 8 deletions.
12 changes: 5 additions & 7 deletions README.md
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.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ targetCompatibility = 1.8

archivesBaseName = "skillcheck"
group = "io.github.cottonmc"
version = "0.1.1+1.14"
version = "1.0.0+1.14"

minecraft {
refmapName = 'mixins.skillcheck.refmap.json'
Expand Down
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"
]
]
}

0 comments on commit 0e4689d

Please sign in to comment.