Skip to content

Commit

Permalink
Slightly reduce staff use item speed
Browse files Browse the repository at this point in the history
  • Loading branch information
KnightMiner committed Feb 13, 2023
1 parent 269f81e commit 3dfaad1
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"base": {
"tconstruct:durability": 800.0,
"tconstruct:block_amount": 20.0,
"tconstruct:use_item_speed": 0.5
"tconstruct:use_item_speed": 0.4
}
},
"slots": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"base": {
"tconstruct:durability": 1225.0,
"tconstruct:block_amount": 15.0,
"tconstruct:use_item_speed": 0.5
"tconstruct:use_item_speed": 0.4
}
},
"slots": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"base": {
"tconstruct:durability": 375.0,
"tconstruct:block_amount": 15.0,
"tconstruct:use_item_speed": 0.5
"tconstruct:use_item_speed": 0.4
}
},
"slots": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -391,7 +391,7 @@ TinkerTags.Blocks.TREE_LOGS, new TreeAOEIterator(0, 0),
define(ToolDefinitions.SKY_STAFF)
.stat(ToolStats.DURABILITY, 375)
.stat(ToolStats.BLOCK_AMOUNT, 15)
.stat(ToolStats.USE_ITEM_SPEED, 0.5f)
.stat(ToolStats.USE_ITEM_SPEED, 0.4f)
.startingSlots(SlotType.UPGRADE, 5)
.startingSlots(SlotType.ABILITY, 2)
.trait(ModifierIds.overslimeFriend)
Expand All @@ -400,7 +400,7 @@ TinkerTags.Blocks.TREE_LOGS, new TreeAOEIterator(0, 0),
define(ToolDefinitions.EARTH_STAFF)
.stat(ToolStats.DURABILITY, 800)
.stat(ToolStats.BLOCK_AMOUNT, 20)
.stat(ToolStats.USE_ITEM_SPEED, 0.5f)
.stat(ToolStats.USE_ITEM_SPEED, 0.4f)
.startingSlots(SlotType.UPGRADE, 2)
.startingSlots(SlotType.DEFENSE, 3)
.startingSlots(SlotType.ABILITY, 2)
Expand All @@ -410,7 +410,7 @@ TinkerTags.Blocks.TREE_LOGS, new TreeAOEIterator(0, 0),
define(ToolDefinitions.ICHOR_STAFF)
.stat(ToolStats.DURABILITY, 1225)
.stat(ToolStats.BLOCK_AMOUNT, 15)
.stat(ToolStats.USE_ITEM_SPEED, 0.5f)
.stat(ToolStats.USE_ITEM_SPEED, 0.4f)
.startingSlots(SlotType.UPGRADE, 2)
.startingSlots(SlotType.ABILITY, 3)
.trait(ModifierIds.overslimeFriend)
Expand Down

0 comments on commit 3dfaad1

Please sign in to comment.