Fixed Flowers and Grass items

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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