veloren/assets/common/items/debug/golden_cheese.ron

44 lines
1.1 KiB
Rust
Raw Normal View History

2022-09-05 18:57:45 +00:00
ItemDef(
name: "Golden Cheese",
description: "They say gods eat it to get eternal youth.",
kind: Consumable(
kind: Drink,
effects: [
Buff((
kind: Regeneration,
data: (
strength: 1000,
2023-03-08 03:22:54 +00:00
duration: Some(999),
2022-09-05 18:57:45 +00:00
),
cat_ids: [Natural],
)),
Buff((
kind: EnergyRegen,
data: (
strength: 1000,
2023-03-08 03:22:54 +00:00
duration: Some(999),
2022-09-05 18:57:45 +00:00
),
cat_ids: [Natural],
)),
Buff((
kind: IncreaseMaxHealth,
data: (
strength: 50000,
2023-03-08 03:22:54 +00:00
duration: Some(999),
2022-09-05 18:57:45 +00:00
),
cat_ids: [Natural],
)),
Buff((
kind: IncreaseMaxEnergy,
data: (
strength: 50000,
2023-03-08 03:22:54 +00:00
duration: Some(999),
2022-09-05 18:57:45 +00:00
),
cat_ids: [Natural],
)),
]
),
quality: Debug,
tags: [Food],
)