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,19 @@
ItemDef(
legacy_name: "Apple",
legacy_description: "Red and juicy",
kind: Consumable(
kind: Food,
effects: One(
Buff((
kind: Saturation,
data: (
strength: 2.0,
duration: Some(5),
),
cat_ids: [Natural],
)),
)
),
quality: Common,
tags: [Food],
)

View File

@@ -0,0 +1,27 @@
ItemDef(
legacy_name: "Mushroom Curry",
legacy_description: "Who could say no to that?",
kind: Consumable(
kind: ComplexFood,
effects: All([
Buff((
kind: Saturation,
data: (
strength: 10.0,
duration: Some(5),
),
cat_ids: [Natural],
)),
Buff((
kind: Regeneration,
data: (
strength: 1.0,
duration: Some(70),
),
cat_ids: [Natural],
)),
])
),
quality: Moderate,
tags: [Food],
)

View File

@@ -0,0 +1,19 @@
ItemDef(
legacy_name: "Apple Stick",
legacy_description: "The stick makes it easier to carry!",
kind: Consumable(
kind: Food,
effects: One(
Buff((
kind: Saturation,
data: (
strength: 5.0,
duration: Some(5),
),
cat_ids: [Natural],
)),
)
),
quality: Common,
tags: [Food],
)

View File

@@ -0,0 +1,19 @@
ItemDef(
legacy_name: "Blue Cheese",
legacy_description: "Pungent and filling",
kind: Consumable(
kind: Food,
effects: One(
Buff((
kind: Saturation,
data: (
strength: 3.0,
duration: Some(20),
),
cat_ids: [Natural],
)),
)
),
quality: High,
tags: [Food],
)

View File

@@ -0,0 +1,19 @@
ItemDef(
legacy_name: "Cactus Colada",
legacy_description: "Giving you that special prickle.",
kind: Consumable(
kind: Drink,
effects: One(
Buff((
kind: Saturation,
data: (
strength: 5.0,
duration: Some(5),
),
cat_ids: [Natural],
)),
)
),
quality: Moderate,
tags: [Food],
)

View File

@@ -0,0 +1,19 @@
ItemDef(
legacy_name: "Carrot",
legacy_description: "An orange root vegetable. They say it'll improve your vision!",
kind: Consumable(
kind: Food,
effects: One(
Buff((
kind: Saturation,
data: (
strength: 2.0,
duration: Some(5),
),
cat_ids: [Natural],
)),
)
),
quality: Common,
tags: [Food],
)

View File

@@ -0,0 +1,19 @@
ItemDef(
legacy_name: "Dwarven Cheese",
legacy_description: "Made from goat milk from the finest dwarven produce. Aromatic and nutritious!",
kind: Consumable(
kind: Food,
effects: One(
Buff((
kind: Saturation,
data: (
strength: 3.5,
duration: Some(7.5),
),
cat_ids: [Natural],
)),
)
),
quality: Common,
tags: [Food],
)

View File

@@ -0,0 +1,19 @@
ItemDef(
legacy_name: "Coconut",
legacy_description: "Reliable source of water and fat. Can often be found growing on palm trees.",
kind: Consumable(
kind: Food,
effects: One(
Buff((
kind: Saturation,
data: (
strength: 4.0,
duration: Some(5),
),
cat_ids: [Natural],
)),
)
),
quality: Common,
tags: [Food],
)

View File

@@ -0,0 +1,19 @@
ItemDef(
legacy_name: "Coltsfoot",
legacy_description: "A daisy-like flower often used in herbal teas.",
kind: Consumable(
kind: Food,
effects: One(
Buff((
kind: Saturation,
data: (
strength: 2.0,
duration: Some(5),
),
cat_ids: [Natural],
)),
)
),
quality: Common,
tags: [Food],
)

View File

@@ -0,0 +1,19 @@
ItemDef(
legacy_name: "Dandelion",
legacy_description: "A small, yellow flower. Uses the wind to spread its seeds.",
kind: Consumable(
kind: Food,
effects: One(
Buff((
kind: Saturation,
data: (
strength: 1.0,
duration: Some(5),
),
cat_ids: [Natural],
)),
)
),
quality: Common,
tags: [Food],
)

View File

@@ -0,0 +1,19 @@
ItemDef(
legacy_name: "Garlic",
legacy_description: "Make sure to brush your teeth after eating.",
kind: Consumable(
kind: Food,
effects: One(
Buff((
kind: Saturation,
data: (
strength: 2.0,
duration: Some(5),
),
cat_ids: [Natural],
)),
)
),
quality: Common,
tags: [Food],
)

View File

@@ -0,0 +1,19 @@
ItemDef(
legacy_name: "Honeycorn",
legacy_description: "Sweeet",
kind: Consumable(
kind: Food,
effects: One(
Buff((
kind: Saturation,
data: (
strength: 4.0,
duration: Some(5),
),
cat_ids: [Natural],
)),
)
),
quality: Common,
tags: [Food],
)

View File

@@ -0,0 +1,19 @@
ItemDef(
legacy_name: "Lettuce",
legacy_description: "A vibrant green leafy vegetable. Lettuce make some salads!",
kind: Consumable(
kind: Food,
effects: One(
Buff((
kind: Saturation,
data: (
strength: 2.0,
duration: Some(5),
),
cat_ids: [Natural],
)),
)
),
quality: Common,
tags: [Food],
)

View File

@@ -0,0 +1,19 @@
ItemDef(
legacy_name: "Meat",
legacy_description: "Meat. The lifeblood of mankind.",
kind: Consumable(
kind: Food,
effects: One(
Buff((
kind: Saturation,
data: (
strength: 1.0,
duration: Some(5),
),
cat_ids: [Natural],
)),
)
),
quality: Common,
tags: [Food],
)

View File

@@ -0,0 +1,19 @@
ItemDef(
legacy_name: "Cooked Meat Slab",
legacy_description: "Medium Rare.",
kind: Consumable(
kind: Food,
effects: One(
Buff((
kind: Saturation,
data: (
strength: 6.0,
duration: Some(10),
),
cat_ids: [Natural],
)),
)
),
quality: Common,
tags: [Food],
)

View File

@@ -0,0 +1,19 @@
ItemDef(
legacy_name: "Raw Meat Slab",
legacy_description: "Chunk of beastly animal meat, best after cooking.",
kind: Consumable(
kind: Food,
effects: One(
Buff((
kind: Saturation,
data: (
strength: .45,
duration: Some(10),
),
cat_ids: [Natural],
)),
)
),
quality: Common,
tags: [Food],
)

View File

@@ -0,0 +1,19 @@
ItemDef(
legacy_name: "Cooked Meat Sliver",
legacy_description: "Medium Rare.",
kind: Consumable(
kind: Food,
effects: One(
Buff((
kind: Saturation,
data: (
strength: 3.4,
duration: Some(7.5),
),
cat_ids: [Natural],
)),
)
),
quality: Common,
tags: [Food],
)

View File

@@ -0,0 +1,19 @@
ItemDef(
legacy_name: "Raw Meat Sliver",
legacy_description: "Small hunk of beastly animal meat, best after cooking.",
kind: Consumable(
kind: Food,
effects: One(
Buff((
kind: Saturation,
data: (
strength: .25,
duration: Some(10),
),
cat_ids: [Natural],
)),
)
),
quality: Common,
tags: [Food],
)

View File

@@ -0,0 +1,19 @@
ItemDef(
legacy_name: "Cooked Bird Meat",
legacy_description: "Best enjoyed with one in each hand.",
kind: Consumable(
kind: Food,
effects: One(
Buff((
kind: Saturation,
data: (
strength: 4.0,
duration: Some(7.5),
),
cat_ids: [Natural],
)),
)
),
quality: Common,
tags: [Food],
)

View File

@@ -0,0 +1,19 @@
ItemDef(
legacy_name: "Huge Cooked Drumstick",
legacy_description: "Makes for a legendary meal.",
kind: Consumable(
kind: Food,
effects: One(
Buff((
kind: Saturation,
data: (
strength: 9.5,
duration: Some(10),
),
cat_ids: [Natural],
)),
)
),
quality: Common,
tags: [Food],
)

View File

@@ -0,0 +1,19 @@
ItemDef(
legacy_name: "Huge Raw Drumstick",
legacy_description: "It's magnificent.",
kind: Consumable(
kind: Food,
effects: One(
Buff((
kind: Saturation,
data: (
strength: .9,
duration: Some(10),
),
cat_ids: [Natural],
)),
)
),
quality: Common,
tags: [Food],
)

View File

@@ -0,0 +1,19 @@
ItemDef(
legacy_name: "Raw Bird Meat",
legacy_description: "A hefty drumstick.",
kind: Consumable(
kind: Food,
effects: One(
Buff((
kind: Saturation,
data: (
strength: .45,
duration: Some(10),
),
cat_ids: [Natural],
)),
)
),
quality: Common,
tags: [Food],
)

View File

@@ -0,0 +1,19 @@
ItemDef(
legacy_name: "Cooked Fish",
legacy_description: "A fresh cooked seafood steak.",
kind: Consumable(
kind: Food,
effects: One(
Buff((
kind: Saturation,
data: (
strength: 3.9,
duration: Some(7.5),
),
cat_ids: [Natural],
)),
)
),
quality: Common,
tags: [Food],
)

View File

@@ -0,0 +1,19 @@
ItemDef(
legacy_name: "Raw Fish",
legacy_description: "A steak chopped from a fish, best after cooking.",
kind: Consumable(
kind: Food,
effects: One(
Buff((
kind: Saturation,
data: (
strength: .45,
duration: Some(10),
),
cat_ids: [Natural],
)),
)
),
quality: Common,
tags: [Food],
)

View File

@@ -0,0 +1,19 @@
ItemDef(
legacy_name: "Cooked Tough Meat",
legacy_description: "Tastes exotic.",
kind: Consumable(
kind: Food,
effects: One(
Buff((
kind: Saturation,
data: (
strength: 4.2,
duration: Some(8.5),
),
cat_ids: [Natural],
)),
)
),
quality: Common,
tags: [Food],
)

View File

@@ -0,0 +1,19 @@
ItemDef(
legacy_name: "Raw Tough Meat",
legacy_description: "Peculiar bit of meat, best after cooking.",
kind: Consumable(
kind: Food,
effects: One(
Buff((
kind: Saturation,
data: (
strength: .36,
duration: Some(10),
),
cat_ids: [Natural],
)),
)
),
quality: Common,
tags: [Food],
)

View File

@@ -0,0 +1,19 @@
ItemDef(
legacy_name: "Mushroom",
legacy_description: "Hopefully this one is not poisonous",
kind: Consumable(
kind: Food,
effects: One(
Buff((
kind: Saturation,
data: (
strength: 2.0,
duration: Some(5),
),
cat_ids: [Natural],
)),
)
),
quality: Common,
tags: [Food],
)

View File

@@ -0,0 +1,19 @@
ItemDef(
legacy_name: "Mushroom Stick",
legacy_description: "Roasted mushrooms on a stick for easy carrying",
kind: Consumable(
kind: Food,
effects: One(
Buff((
kind: Saturation,
data: (
strength: 4.0,
duration: Some(6),
),
cat_ids: [Natural],
)),
)
),
quality: Common,
tags: [Food],
)

View File

@@ -0,0 +1,19 @@
ItemDef(
legacy_name: "Onion",
legacy_description: "A vegetable that's made the toughest men cry.",
kind: Consumable(
kind: Food,
effects: One(
Buff((
kind: Saturation,
data: (
strength: 2.0,
duration: Some(5),
),
cat_ids: [Natural],
)),
)
),
quality: Common,
tags: [Food],
)

View File

@@ -0,0 +1,19 @@
ItemDef(
legacy_name: "Plain Salad",
legacy_description: "Literally just chopped lettuce. Does this even count as a salad?",
kind: Consumable(
kind: Food,
effects: One(
Buff((
kind: Saturation,
data: (
strength: 2.5,
duration: Some(5),
),
cat_ids: [Natural],
)),
)
),
quality: Common,
tags: [Food],
)

View File

@@ -0,0 +1,19 @@
ItemDef(
legacy_name: "Pumpkin Spice Brew",
legacy_description: "Brewed from moldy pumpkins.",
kind: Consumable(
kind: Drink,
effects: One(
Buff((
kind: Saturation,
data: (
strength: 2.0,
duration: Some(10),
),
cat_ids: [Natural],
)),
)
),
quality: Moderate,
tags: [Food],
)

View File

@@ -0,0 +1,19 @@
ItemDef(
legacy_name: "Sage",
legacy_description: "A herb commonly used in tea.",
kind: Consumable(
kind: Food,
effects: One(
Buff((
kind: Saturation,
data: (
strength: 2.0,
duration: Some(5),
),
cat_ids: [Natural],
)),
)
),
quality: Common,
tags: [Food],
)

View File

@@ -0,0 +1,27 @@
ItemDef(
legacy_name: "Spore of Corruption",
legacy_description: "You feel an evil force pulsating within.\n\nIt may be unwise to hold on to it for too long...",
kind: Consumable(
kind: ComplexFood,
effects: All([
Buff((
kind: Frenzied,
data: (
strength: 0.4,
duration: Some(60),
),
cat_ids: [Natural],
)),
Buff((
kind: Cursed,
data: (
strength: 0.35,
duration: Some(60),
),
cat_ids: [Natural],
)),
])
),
quality: Epic,
tags: [Food],
)

View File

@@ -0,0 +1,19 @@
ItemDef(
legacy_name: "Sunflower Ice Tea",
legacy_description: "Brewed from freshly shelled sunflower seeds",
kind: Consumable(
kind: Drink,
effects: One(
Buff((
kind: Saturation,
data: (
strength: 3.5,
duration: Some(7.5),
),
cat_ids: [Natural],
)),
)
),
quality: Moderate,
tags: [Food],
)

View File

@@ -0,0 +1,19 @@
ItemDef(
legacy_name: "Tomato",
legacy_description: "A red fruit. It's not actually a vegetable!",
kind: Consumable(
kind: Food,
effects: One(
Buff((
kind: Saturation,
data: (
strength: 2.0,
duration: Some(5),
),
cat_ids: [Natural],
)),
)
),
quality: Common,
tags: [Food],
)

View File

@@ -0,0 +1,19 @@
ItemDef(
legacy_name: "Tomato Salad",
legacy_description: "Leafy salad with some chopped, juicy tomatoes mixed in.",
kind: Consumable(
kind: Food,
effects: One(
Buff((
kind: Saturation,
data: (
strength: 3.0,
duration: Some(5),
),
cat_ids: [Natural],
)),
)
),
quality: Common,
tags: [Food],
)