veloren/assets/common/items/consumable/curious_potion.ron

75 lines
2.4 KiB
Rust
Raw Normal View History

2023-03-29 23:11:59 +00:00
ItemDef(
2024-01-13 18:22:50 +00:00
legacy_name: "Curious Potion",
legacy_description: "Wonder what this does...",
2023-03-29 23:11:59 +00:00
kind: Consumable(
kind: Drink,
effects: Any([
Buff((
kind: Polymorphed,
2023-03-29 23:11:59 +00:00
data: (
strength: 0.0,
duration: Some(60),
misc_data: Some(Body(QuadrupedSmall(( species: Frog, body_type: Female )))),
2023-03-29 23:11:59 +00:00
),
cat_ids: [Natural],
)),
Buff((
kind: Polymorphed,
2023-03-29 23:11:59 +00:00
data: (
strength: 0.0,
duration: Some(60),
misc_data: Some(Body(QuadrupedSmall(( species: Rabbit, body_type: Female )))),
2023-03-29 23:11:59 +00:00
),
cat_ids: [Natural],
)),
Buff((
kind: Polymorphed,
2023-03-29 23:11:59 +00:00
data: (
strength: 0.0,
duration: Some(60),
misc_data: Some(Body(QuadrupedSmall(( species: Rat, body_type: Female )))),
2023-03-29 23:11:59 +00:00
),
cat_ids: [Natural],
)),
Buff((
kind: Polymorphed,
2023-03-29 23:11:59 +00:00
data: (
strength: 0.0,
duration: Some(60),
misc_data: Some(Body(QuadrupedSmall(( species: Squirrel, body_type: Female )))),
2023-03-29 23:11:59 +00:00
),
cat_ids: [Natural],
)),
Buff((
kind: Polymorphed,
2023-03-29 23:11:59 +00:00
data: (
strength: 0.0,
duration: Some(60),
misc_data: Some(Body(QuadrupedSmall(( species: Cat, body_type: Female )))),
2023-03-29 23:11:59 +00:00
),
cat_ids: [Natural],
)),
Buff((
kind: Polymorphed,
2023-03-29 23:11:59 +00:00
data: (
strength: 0.0,
duration: Some(60),
misc_data: Some(Body(QuadrupedSmall(( species: Fungome, body_type: Female )))),
2023-03-29 23:11:59 +00:00
),
cat_ids: [Natural],
)),
Buff((
kind: Polymorphed,
2023-03-29 23:11:59 +00:00
data: (
strength: 0.0,
duration: Some(60),
misc_data: Some(Body(QuadrupedSmall(( species: Pig, body_type: Female )))),
2023-03-29 23:11:59 +00:00
),
cat_ids: [Natural],
)),
])
),
quality: Common,
tags: [Potion],
)