veloren/assets/common/material_stats_manifest.ron

60 lines
1.5 KiB
Plaintext
Raw Normal View History

// Keep in mind that material stats are multiplied by the form stats, not added (e.g. equip_time_secs is most sensitive to this)
({
2021-06-05 22:24:31 +00:00
"common.items.mineral.ingot.bloodsteel": (
equip_time_secs: 1.0,
power: 1.75,
poise_strength: 1.75,
speed: 1.75,
crit_chance: 1.75,
2021-07-06 01:32:12 +00:00
range: 1.0,
),
2021-06-05 22:24:31 +00:00
"common.items.mineral.ingot.bronze": (
equip_time_secs: 1.0,
power: 0.75,
poise_strength: 0.75,
speed: 0.75,
crit_chance: 0.75,
2021-07-06 01:32:12 +00:00
range: 1.0,
),
2021-06-05 22:24:31 +00:00
"common.items.mineral.ingot.cobalt": (
equip_time_secs: 1.0,
power: 1.5,
poise_strength: 1.5,
speed: 1.5,
crit_chance: 1.5,
2021-07-06 01:32:12 +00:00
range: 1.0,
),
2021-06-05 22:24:31 +00:00
"common.items.mineral.ingot.copper": (
equip_time_secs: 1.0,
power: 0.4,
poise_strength: 0.4,
speed: 0.4,
crit_chance: 0.4,
2021-07-06 01:32:12 +00:00
range: 1.0,
),
2021-06-05 22:24:31 +00:00
"common.items.mineral.ingot.iron": (
equip_time_secs: 1.0,
power: 1.0,
poise_strength: 1.0,
speed: 1.0,
crit_chance: 1.0,
2021-07-06 01:32:12 +00:00
range: 1.0,
),
2021-06-05 22:24:31 +00:00
"common.items.mineral.ingot.steel": (
equip_time_secs: 1.0,
power: 1.25,
poise_strength: 1.25,
speed: 1.25,
crit_chance: 1.25,
2021-07-06 01:32:12 +00:00
range: 1.0,
),
2021-06-05 22:24:31 +00:00
"common.items.mineral.ingot.tin": (
equip_time_secs: 1.0,
power: 0.25,
poise_strength: 0.25,
speed: 0.25,
crit_chance: 0.25,
2021-07-06 01:32:12 +00:00
range: 1.0,
),
})