primeiro commit
All checks were successful
Build and Push Image / Build and push image (push) Successful in 3m5s

This commit is contained in:
2024-04-29 21:38:53 -03:00
commit e11bf493a1
2532 changed files with 55878 additions and 0 deletions

View File

@@ -0,0 +1,74 @@
ItemDef(
legacy_name: "Curious Potion",
legacy_description: "Wonder what this does...",
kind: Consumable(
kind: Drink,
effects: Any([
Buff((
kind: Polymorphed,
data: (
strength: 0.0,
duration: Some(60),
misc_data: Some(Body(QuadrupedSmall(( species: Frog, body_type: Female )))),
),
cat_ids: [Natural],
)),
Buff((
kind: Polymorphed,
data: (
strength: 0.0,
duration: Some(60),
misc_data: Some(Body(QuadrupedSmall(( species: Rabbit, body_type: Female )))),
),
cat_ids: [Natural],
)),
Buff((
kind: Polymorphed,
data: (
strength: 0.0,
duration: Some(60),
misc_data: Some(Body(QuadrupedSmall(( species: Rat, body_type: Female )))),
),
cat_ids: [Natural],
)),
Buff((
kind: Polymorphed,
data: (
strength: 0.0,
duration: Some(60),
misc_data: Some(Body(QuadrupedSmall(( species: Squirrel, body_type: Female )))),
),
cat_ids: [Natural],
)),
Buff((
kind: Polymorphed,
data: (
strength: 0.0,
duration: Some(60),
misc_data: Some(Body(QuadrupedSmall(( species: Cat, body_type: Female )))),
),
cat_ids: [Natural],
)),
Buff((
kind: Polymorphed,
data: (
strength: 0.0,
duration: Some(60),
misc_data: Some(Body(QuadrupedSmall(( species: Fungome, body_type: Female )))),
),
cat_ids: [Natural],
)),
Buff((
kind: Polymorphed,
data: (
strength: 0.0,
duration: Some(60),
misc_data: Some(Body(QuadrupedSmall(( species: Pig, body_type: Female )))),
),
cat_ids: [Natural],
)),
])
),
quality: Common,
tags: [Potion],
)

View File

@@ -0,0 +1,27 @@
ItemDef(
legacy_name: "Potion of Agility",
legacy_description: "Fly, you fools!",
kind: Consumable(
kind: Drink,
effects: All([
Buff((
kind: Agility,
data: (
strength: 0.55,
duration: Some(25),
),
cat_ids: [Natural],
)),
Buff((
kind: PotionSickness,
data: (
strength: 0.5,
duration: Some(60),
),
cat_ids: [Natural],
)),
])
),
quality: Moderate,
tags: [Potion],
)

View File

@@ -0,0 +1,27 @@
ItemDef(
legacy_name: "Large Potion",
legacy_description: "Precious medicine, it makes for the largest rejuvenative flask yet.",
kind: Consumable(
kind: Drink,
effects: All([
Buff((
kind: Potion,
data: (
strength: 100.0,
duration: Some(1),
),
cat_ids: [Natural],
)),
Buff((
kind: PotionSickness,
data: (
strength: 0.33,
duration: Some(45),
),
cat_ids: [Natural],
)),
])
),
quality: Common,
tags: [Potion],
)

View File

@@ -0,0 +1,19 @@
ItemDef(
legacy_name: "Potion of Combustion",
legacy_description: "Sets the user ablaze",
kind: Consumable(
kind: Drink,
effects: All([
Buff((
kind: Burning,
data: (
strength: 1.0,
duration: Some(10)
),
cat_ids: [Natural],
))
])
),
quality: Moderate,
tags: [Potion],
)

View File

@@ -0,0 +1,27 @@
ItemDef(
legacy_name: "Medium Potion",
legacy_description: "An innovative invention from an apothecary, better than its smaller precursors.",
kind: Consumable(
kind: Drink,
effects: All([
Buff((
kind: Potion,
data: (
strength: 75.0,
duration: Some(1),
),
cat_ids: [Natural],
)),
Buff((
kind: PotionSickness,
data: (
strength: 0.33,
duration: Some(45),
),
cat_ids: [Natural],
)),
])
),
quality: Common,
tags: [Potion],
)

View File

@@ -0,0 +1,27 @@
ItemDef(
legacy_name: "Minor Potion",
legacy_description: "A small potion concocted from apples and honey.",
kind: Consumable(
kind: Drink,
effects: All([
Buff((
kind: Potion,
data: (
strength: 50.0,
duration: Some(1),
),
cat_ids: [Natural],
)),
Buff((
kind: PotionSickness,
data: (
strength: 0.33,
duration: Some(45),
),
cat_ids: [Natural],
)),
])
),
quality: Common,
tags: [Potion],
)