Skip to content

Commit

Permalink
- ups
Browse files Browse the repository at this point in the history
  • Loading branch information
Smartin-b committed Jan 21, 2024
1 parent e08f0b8 commit 9221970
Show file tree
Hide file tree
Showing 6 changed files with 26 additions and 14 deletions.
13 changes: 2 additions & 11 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,2 @@
## v1.5 (1.20.1)
- added more Craftingproperty keys for axes, pickaxes, shovels and hoes
- fixed gui scaling for key and omen skin
- added throwing axe
- rebalanced Pommels and Guards
- increased blocking on Large Guard
- made Katana Guard a Slim Guard skin
- removed blocking from Slim Guard
- added Mining to Sickle
- added Hoe-right click to Sickle and Scythe
- added Native sweeping edge to Scythe
## v1.6 (1.20.1)
- fixed guard changes, accidentally forgot to include the last update
7 changes: 6 additions & 1 deletion common/src/main/resources/assets/arsenal/lang/en_us.json
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,11 @@
"miapi.module.blade_scythe.description": "A long Scythe head. Usually used to cut grass or People down",
"miapi.module.blade_scythe.short_description": "A Scythe Blade, a mixture between Tool and Weapon",

"miapi.module.guard_blocking": "Large Guard",
"miapi.module.guard_blocking.name": "[translation.[material.translation]]Large Guard",
"miapi.module.guard_blocking.description": "A guard specifically designed for blocking.",
"miapi.module.guard_blocking.short_description": "A Large Winged Guard.",

"miapi.module.guard_katana": "Katana Guard",
"miapi.module.guard_katana.name": "[translation.[material.translation]]Katana Guard",
"miapi.module.guard_katana.description": "A guard specifically designed for use with a katana sword.",
Expand Down Expand Up @@ -195,4 +200,4 @@

"miapi.module.mattock.name": "[translation.[material.translation]]Mattock",
"miapi.module.blade_naginata.name": "[translation.[material.translation]]Naginata"
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@
],
"priority": -1,
"repairPriority": 0,
"blocking": 60,
"blocking": "58 + ceil([material.flexibility])",
"abilities": [
"block"
],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,14 @@
"default",
"handheld"
],
"crafting_condition": {
"visible": {
"type": "not",
"condition": {
"type": "true"
}
}
},
"priority": 20,
"repairPriority": 0,
"durability": "[material.durability]* 0.05",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -89,5 +89,13 @@
"guiOffset": {
"sizeX": 1,
"sizeY": 1
},
"crafting_condition": {
"visible": {
"type": "not",
"condition": {
"type": "true"
}
}
}
}
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ org.gradle.jvmargs=-Xmx3G
minecraft_version=1.20.1

archives_base_name=Truly-Modular-arsenal
mod_version=1.5
mod_version=1.6
maven_group=smartin
github=Truly-Modular.Arsenal

Expand Down

0 comments on commit 9221970

Please sign in to comment.