veloren/assets/common/material_stats_manifest.ron
2021-06-07 11:02:34 +02:00

60 lines
1.5 KiB
Plaintext

// Keep in mind that material stats are multiplied by the form stats, not added (e.g. equip_time_secs is most sensitive to this)
({
"common.items.mineral.ingot.bloodsteel": (
equip_time_secs: 1.0,
power: 1.75,
poise_strength: 1.75,
speed: 1.75,
crit_chance: 1.75,
crit_mult: 1.75,
),
"common.items.mineral.ingot.bronze": (
equip_time_secs: 1.0,
power: 0.75,
poise_strength: 0.75,
speed: 0.75,
crit_chance: 0.75,
crit_mult: 0.75,
),
"common.items.mineral.ingot.cobalt": (
equip_time_secs: 1.0,
power: 1.5,
poise_strength: 1.5,
speed: 1.5,
crit_chance: 1.5,
crit_mult: 1.5,
),
"common.items.mineral.ingot.copper": (
equip_time_secs: 1.0,
power: 0.4,
poise_strength: 0.4,
speed: 0.4,
crit_chance: 0.4,
crit_mult: 0.4,
),
"common.items.mineral.ingot.iron": (
equip_time_secs: 1.0,
power: 1.0,
poise_strength: 1.0,
speed: 1.0,
crit_chance: 1.0,
crit_mult: 1.0,
),
"common.items.mineral.ingot.steel": (
equip_time_secs: 1.0,
power: 1.25,
poise_strength: 1.25,
speed: 1.25,
crit_chance: 1.25,
crit_mult: 1.25,
),
"common.items.mineral.ingot.tin": (
equip_time_secs: 1.0,
power: 0.25,
poise_strength: 0.25,
speed: 0.25,
crit_chance: 0.25,
crit_mult: 0.25,
),
})