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

44 lines
1.1 KiB
Plaintext
Raw Normal View History

2024-07-03 23:04:49 +00:00
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],
)