Fixed Flowers and Grass items

This commit is contained in:
comfymattress 2020-03-28 14:13:55 -05:00
parent 6bd20c64f8
commit ae975a67f4
9 changed files with 27 additions and 9 deletions

View File

@ -1,5 +1,7 @@
Item(
name: "Blue Flower",
description: "Matches the color of the sky.",
kind: Ingredient,
kind: Ingredient(
kind: Flower,
)
)

View File

@ -1,5 +1,7 @@
Item(
name: "Pink Flower",
description: "Looks like a lollipop.",
kind: Ingredient,
kind: Ingredient(
kind: Flower,
)
)

View File

@ -1,5 +1,7 @@
Item(
name: "Red Flower",
description: "Roses are red...",
kind: Ingredient,
kind: Ingredient(
kind: Flower,
)
)

View File

@ -1,5 +1,7 @@
Item(
name: "Sunflower",
description: "Smells like summer.",
kind: Ingredient,
kind: Ingredient(
kind: Flower,
)
)

View File

@ -1,5 +1,7 @@
Item(
name: "White flower",
description: "Pure and precious.",
kind: Ingredient,
kind: Ingredient(
kind: Flower,
)
)

View File

@ -1,5 +1,7 @@
Item(
name: "Yellow Flower",
description: "Glows like the sun.",
kind: Ingredient,
kind: Ingredient(
kind: Flower,
)
)

View File

@ -1,5 +1,7 @@
Item(
name: "Long Grass",
description: "Greener than an orc's snout.",
kind: Ingredient,
kind: Ingredient(
kind: Grass,
)
)

View File

@ -1,5 +1,7 @@
Item(
name: "Medium Grass",
description: "Greener than an orc's snout.",
kind: Ingredient,
kind: Ingredient(
kind: Grass,
)
)

View File

@ -1,5 +1,7 @@
Item(
name: "Short Grass",
description: "Greener than an orc's snout.",
kind: Ingredient,
kind: Ingredient(
kind: Grass,
)
)