mirror of
https://gitlab.com/veloren/veloren.git
synced 2024-08-30 18:12:32 +00:00
20 lines
431 B
Rust
20 lines
431 B
Rust
ItemDef(
|
|
name: "Potion of Combustion",
|
|
description: "Sets the user ablaze",
|
|
kind: Consumable(
|
|
kind: Drink,
|
|
effects: All([
|
|
Buff((
|
|
kind: Burning,
|
|
data: (
|
|
strength: 1.0,
|
|
duration: Some(10)
|
|
),
|
|
cat_ids: [Natural],
|
|
))
|
|
])
|
|
),
|
|
quality: Moderate,
|
|
tags: [Potion],
|
|
)
|