veloren/assets/common/items/charms/burning_charm.ron

22 lines
526 B
Rust
Raw Normal View History

2023-05-19 03:07:44 +00:00
ItemDef(
2024-01-13 18:22:50 +00:00
legacy_name: "Blazing Charm",
legacy_description: "Flame is your ally, harness its power to burn your foes.",
2023-05-19 03:07:44 +00:00
kind: Consumable(
2023-11-22 16:27:09 +00:00
kind: Charm,
2023-05-19 03:07:44 +00:00
effects: All([
Buff((
kind: Flame,
data: (
strength: 0.4,
duration: Some(20),
secondary_duration: Some(5),
),
cat_ids: [RemoveOnAttack],
2023-05-19 03:07:44 +00:00
)),
2023-07-09 20:03:09 +00:00
2023-05-19 03:07:44 +00:00
])
),
quality: Legendary,
tags: [],
2023-11-22 16:27:09 +00:00
)