docker-veloren/veloren/assets/common/items/boss_drops/potions.ron
Glauber Ferreira e11bf493a1
All checks were successful
Build and Push Image / Build and push image (push) Successful in 3m5s
primeiro commit
2024-04-29 21:38:53 -03:00

29 lines
707 B
Plaintext

ItemDef(
legacy_name: "Potent Potion",
legacy_description: "A potent healing potion.",
kind: Consumable(
kind: Drink,
effects: All([
Buff((
kind: Potion,
data: (
strength: 100.0,
duration: Some(1),
),
cat_ids: [Natural],
)),
Buff((
kind: PotionSickness,
data: (
strength: 0.33,
duration: Some(45),
delay: Some(1)
),
cat_ids: [Natural],
)),
])
),
quality: High,
tags: [Potion],
)