Skip to content

Commit

Permalink
Tool starting trait tweaks
Browse files Browse the repository at this point in the history
Pickadzes and mattocks no longer start with melee traits, they both do enough other stuff to not need one
Kama once again has tilling, for consistency with scythes. Having multiple tools start with tilling is reasonable as its the most important right click action
  • Loading branch information
KnightMiner committed Dec 19, 2023
1 parent a113fa8 commit cc72e93
Show file tree
Hide file tree
Showing 9 changed files with 10 additions and 15 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,10 @@
"abilities": 1
},
"traits": [
{
"name": "tconstruct:tilling",
"level": 1
},
{
"name": "tconstruct:shears",
"level": 1
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,6 @@
"abilities": 1
},
"traits": [
{
"name": "tconstruct:sticky",
"level": 1
},
{
"name": "tconstruct:tilling",
"level": 1
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,10 +29,6 @@
{
"name": "tconstruct:pathing",
"level": 1
},
{
"name": "tconstruct:bane_of_sssss",
"level": 1
}
],
"actions": [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,6 @@ protected void addToolDefinitions() {
.multiplier(ToolStats.MINING_SPEED, 1.1f)
.multiplier(ToolStats.ATTACK_DAMAGE, 1.1f)
// traits
.trait(ModifierIds.sticky, 1)
.trait(TinkerModifiers.tilling)
// harvest
.action(ToolActions.AXE_DIG)
Expand All @@ -161,7 +160,6 @@ protected void addToolDefinitions() {
.multiplier(ToolStats.ATTACK_DAMAGE, 1.15f)
// traits
.trait(TinkerModifiers.pathing)
.trait(ModifierIds.baneOfSssss)
// harvest
.action(ToolActions.PICKAXE_DIG)
.action(ToolActions.SHOVEL_DIG)
Expand Down Expand Up @@ -255,6 +253,7 @@ TinkerTags.Blocks.TREE_LOGS, new TreeAOEIterator(0, 0),
.multiplier(ToolStats.ATTACK_DAMAGE, 0.5f)
.smallToolStartingSlots()
// traits
.trait(TinkerModifiers.tilling)
.trait(TinkerModifiers.shears)
.trait(TinkerModifiers.harvest)
// harvest
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
"1.6 Attack Speed",
"Shears plants and animals",
"Small AOE Attack",
"Harvest plants"
"Harvest plants",
"Tills dirt"
]
}
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@
"0.9 Attack Speed",
"110% Mining Modifier",
"125% Durability Modifier",
"Knockback I",
"Tills dirt"
]
}
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
}
],
"properties": [
"Tills dirt",
"Interact with crops to harvest them",
"Shears blocks and animals",
"Effective on plants",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@
],
"properties": [
"Tills dirt",
"Effective on dirt and logs",
"Extra knockback"
"Effective on dirt and logs"
]
}
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
],
"properties": [
"Advanced harvesting tool",
"3x3 AoE Harvesting",
"3x3 AoE harvesting and tilling",
"Effective on all types of foliage",
"AoE attack capabilities"
]
Expand Down

0 comments on commit cc72e93

Please sign in to comment.