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

21 lines
472 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: "Siphon Charm",
legacy_description: "Siphon your target life and use it for your own.",
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: Lifesteal,
data: (
strength: 0.4,
duration: Some(20),
),
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
)