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

21 lines
477 B
Plaintext
Raw Normal View History

2024-07-03 19:04:49 -04:00
ItemDef(
legacy_name: "Siphon Charm",
legacy_description: "Siphon your target life and use it for your own.",
kind: Consumable(
kind: Charm,
effects: All([
Buff((
kind: Lifesteal,
data: (
strength: 0.4,
duration: Some(20),
),
cat_ids: [RemoveOnAttack],
)),
])
),
quality: Legendary,
2024-08-08 17:03:53 -04:00
tags: [Charm],
2024-07-03 19:04:49 -04:00
)