hotbot/assets/common/items/debug/golden_cheese.ron
2024-06-11 14:43:30 -04:00

44 lines
1.1 KiB
Plaintext

ItemDef(
legacy_name: "Golden Cheese",
legacy_description: "They say gods eat it to get eternal youth.",
kind: Consumable(
kind: Drink,
effects: All([
Buff((
kind: Regeneration,
data: (
strength: 1000,
duration: Some(999),
),
cat_ids: [Natural],
)),
Buff((
kind: EnergyRegen,
data: (
strength: 1000,
duration: Some(999),
),
cat_ids: [Natural],
)),
Buff((
kind: IncreaseMaxHealth,
data: (
strength: 50000,
duration: Some(999),
),
cat_ids: [Natural],
)),
Buff((
kind: IncreaseMaxEnergy,
data: (
strength: 50000,
duration: Some(999),
),
cat_ids: [Natural],
)),
])
),
quality: Debug,
tags: [Food],
)