mirror of
https://gitlab.com/veloren/veloren.git
synced 2024-08-30 18:12:32 +00:00
68 lines
2.1 KiB
Rust
68 lines
2.1 KiB
Rust
|
ItemDef(
|
||
|
name: "Curious Potion",
|
||
|
description: "Wonder what this does...",
|
||
|
kind: Consumable(
|
||
|
kind: Drink,
|
||
|
effects: Any([
|
||
|
Buff((
|
||
|
kind: Polymorphed(QuadrupedSmall(( species: Frog, body_type: Female ))),
|
||
|
data: (
|
||
|
strength: 0.0,
|
||
|
duration: Some(60),
|
||
|
),
|
||
|
cat_ids: [Natural],
|
||
|
)),
|
||
|
Buff((
|
||
|
kind: Polymorphed(QuadrupedSmall(( species: Rabbit, body_type: Female ))),
|
||
|
data: (
|
||
|
strength: 0.0,
|
||
|
duration: Some(60),
|
||
|
),
|
||
|
cat_ids: [Natural],
|
||
|
)),
|
||
|
Buff((
|
||
|
kind: Polymorphed(QuadrupedSmall(( species: Rat, body_type: Female ))),
|
||
|
data: (
|
||
|
strength: 0.0,
|
||
|
duration: Some(60),
|
||
|
),
|
||
|
cat_ids: [Natural],
|
||
|
)),
|
||
|
Buff((
|
||
|
kind: Polymorphed(QuadrupedSmall(( species: Squirrel, body_type: Female ))),
|
||
|
data: (
|
||
|
strength: 0.0,
|
||
|
duration: Some(60),
|
||
|
),
|
||
|
cat_ids: [Natural],
|
||
|
)),
|
||
|
Buff((
|
||
|
kind: Polymorphed(QuadrupedSmall(( species: Cat, body_type: Female ))),
|
||
|
data: (
|
||
|
strength: 0.0,
|
||
|
duration: Some(60),
|
||
|
),
|
||
|
cat_ids: [Natural],
|
||
|
)),
|
||
|
Buff((
|
||
|
kind: Polymorphed(QuadrupedSmall(( species: Fungome, body_type: Female ))),
|
||
|
data: (
|
||
|
strength: 0.0,
|
||
|
duration: Some(60),
|
||
|
),
|
||
|
cat_ids: [Natural],
|
||
|
)),
|
||
|
Buff((
|
||
|
kind: Polymorphed(QuadrupedSmall(( species: Pig, body_type: Female ))),
|
||
|
data: (
|
||
|
strength: 0.0,
|
||
|
duration: Some(60),
|
||
|
),
|
||
|
cat_ids: [Natural],
|
||
|
)),
|
||
|
])
|
||
|
),
|
||
|
quality: Common,
|
||
|
tags: [Potion],
|
||
|
)
|