Skip to main content

TinkerToolStats

MangoJellyPuddingOriginalMarch 29, 2025Less than 1 minute

Class Attributes/Methods

AttributeScopeDescription
ACCURACY RangedProjectile accuracy
ARMOR_TOUGHNESS ArmorArmor toughness
ARMOR ArmorArmor value
ATTACK_DAMAGE MeleeMelee attack damage
ATTACK_SPEED MeleeMelee attack speed
BLOCK_AMOUNT DefensiveBlock damage
BLOCK_ANGLE DefensiveBlock angle
DRAW_SPEED RangedDraw speed
DURABILITY CommonDurability
HARVEST_TIER MiningTool harvest tier
KNOCKBACK_RESISTANCE ArmorKnockback resistance
MINING_SPEED MiningMining speed
PROJECTILE_DAMAGE RangedProjectile damage
USE_ITEM_SPEED CommonItem use speed
VELOCITY RangedInitial projectile velocity

Usage Examples

TinkerToolStats.ATTACK_DAMAGE.add;
TinkerToolStats.ATTACK_DAMAGE.multiply;
TinkerToolStats.ATTACK_DAMAGE.multiplyAll;
TinkerToolStats.ATTACK_DAMAGE.update();

Explanation

Method NameTypeDescription
addIncrementAdds to the base value
multiplyMultiplierMultiplies the base value
multiplyAllFinal MultiplierMultiplies the final result
updateUpdateUpdates the result

Pseudocode

((BASE + sum(...ADD)) * sum(...MULTIPLY)) * MULTIPLY_ALL_1 * MULTIPLY_ALL_2 * ...