@Syphon583 @Callum123456789 I could be wrong, but I don't see where I am...unless there was a very recent change and my config files I am looking at are not the latest (they are at least 20.5 version). The auger has the same harvesting tags as the pickaxe so now I am confused
Edit: I know the description in the book states pickaxe or stone axe while the description in rock candy just states mining tool, but the tags seem to indicate that they would affect the auger also. Unless there is something hard coded into the game that ignores those tags (say if the item has the tag motorTool).
From the Iron Pickaxe
<item name="meleeToolPickT1IronPickaxe">
<property name="Tags" value="melee,grunting,medium,tool,longShaft,attStrength,perkMiner69r,perkMotherLode,miningTool,canHaveCosmetic"/>
From the auger
<item name="meleeToolPickT3Auger">
<property name="Tags" value="melee,heavy,tool,motorTool,attStrength,perkMiner69r,perkMotherLode,miningTool,canHaveCosmetic"/>
From the Perk Motherlode
<effect_group>
<passive_effect name="HarvestCount" operation="perc_add" level="1,5" value=".2,1" tags="oreWoodHarvest"/>
<passive_effect name="PlayerExpGain" operation="perc_add" level="1,5" value="-.1,-.4" tags="Harvesting">
<requirement name="HoldingItemHasTags" tags="perkMiner69r"/>
</passive_effect>
From the Coffee buzz book
<requirement name="HasBuff" buff="buffCoffee"/>
<requirement name="ItemHasTags" tags="miningTool"/>
<passive_effect name="HarvestCount" operation="perc_add" level="1" value=".1" tags="oreWoodHarvest"/>
<passive_effect name="PlayerExpGain" operation="perc_add" level="1" value="-.05" tags="Harvesting"/>
</effect_group>
<effect_group>
<requirement name="HasBuff" buff="buffBlackStrapCoffee"/>
<requirement name="ItemHasTags" tags="miningTool"/>
<passive_effect name="HarvestCount" operation="perc_add" level="1" value=".1" tags="oreWoodHarvest"/>
<passive_effect name="PlayerExpGain" operation="perc_add" level="1" value="-.05" tags="Harvesting"/>
</effect_group>
From the rock candy buff
Code:
<effect_group>
<requirement name="HoldingItemHasTags" tags="perkMiner69r"/>
<passive_effect name="HarvestCount" operation="perc_add" value=".2" tags="oreWoodHarvest"/>
<passive_effect name="PlayerExpGain" operation="perc_add" value="-.05" tags="Harvesting"/>
</effect_group>