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

21 lines
525 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(
kind: Drink,
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: [],
)