diff options
-rw-r--r-- | graphics/items/generic-herb.png | bin | 0 -> 1427 bytes | |||
-rw-r--r-- | graphics/sprites/resource-plant.png | bin | 0 -> 2510 bytes | |||
-rw-r--r-- | graphics/sprites/resource-plant.xml | 18 | ||||
-rw-r--r-- | items.xml | 71 | ||||
-rw-r--r-- | monsters.xml | 20 |
5 files changed, 107 insertions, 2 deletions
diff --git a/graphics/items/generic-herb.png b/graphics/items/generic-herb.png Binary files differnew file mode 100644 index 00000000..0a832180 --- /dev/null +++ b/graphics/items/generic-herb.png diff --git a/graphics/sprites/resource-plant.png b/graphics/sprites/resource-plant.png Binary files differnew file mode 100644 index 00000000..9de92cac --- /dev/null +++ b/graphics/sprites/resource-plant.png diff --git a/graphics/sprites/resource-plant.xml b/graphics/sprites/resource-plant.xml new file mode 100644 index 00000000..c61ccbcd --- /dev/null +++ b/graphics/sprites/resource-plant.xml @@ -0,0 +1,18 @@ +<?xml version="1.0"?> +<sprite> + + <imageset name="base" src="graphics/sprites/resource-plant.png|W" width="46" height="42" /> + + <action name="stand" imageset="base"> + <animation> + <frame index="0"/> + </animation> + </action> + + <action name="dead" imageset="base"> + <animation> + <frame index="1"/> + </animation> + </action> + +</sprite>
\ No newline at end of file @@ -2131,6 +2131,77 @@ <sprite>head-demonmask.xml</sprite> </item> + <item id="680" + image="generic-herb.png|W:#e0b0ff" + name="Mauve Herb" + description="An ingredient for brewing healing potions" + type="generic" + weight="1" + max-per-slot="10"/> + + <item id="681" + image="generic-herb.png|W:#0047ab" + name="Cobalt Herb" + description="An ingredient for brewing healing potions" + type="generic" + weight="1" + max-per-slot="10"/> + + <item id="682" + image="generic-herb.png|W:#ef9b0f" + name="Gamboge Herb" + description="An ingredient for brewing healing potions" + type="generic" + weight="1" + max-per-slot="10"/> + + <item id="683" + image="generic-herb.png|W:#e32636" + name="Alizarin Herb" + description="An ingredient for brewing healing potions" + type="generic" + weight="1" + max-per-slot="10"/> + + <item id="684" + image="use-potion-a.png|G:#b03678,ffffff" + name="Tiny Healing Potion" + description="A tiny healing potion made from brewed herbs." + effect="+50 HP" + type="usable" + hp="50" + weight="5" + max-per-slot="10"/> + + <item id="685" + image="use-potion-d.png|G:#b03678,ffffff" + name="Small Healing Potion" + description="A small healing potion made from brewed herbs." + effect="+100 HP" + type="usable" + hp="100" + weight="10" + max-per-slot="10"/> + + <item id="686" + image="use-potion-b.png|G:#b03678,ffffff" + name="Medium Healing Potion" + description="A medium healig potion made from brewed herbs." + effect="+200 HP" + type="usable" + hp="200" + weight="20" + max-per-slot="10"/> + + <item id="687" + image="use-potion-c.png|G:#b03678,ffffff" + name="Large Healing Potion" + description="A large healing potion made from brewed herbs." + effect="+400 HP" + type="usable" + hp="400" + weight="40" + max-per-slot="10"/> <!-- HERE ARE SOME UNUSED ITEM IDs --> diff --git a/monsters.xml b/monsters.xml index ed583628..566514a3 100644 --- a/monsters.xml +++ b/monsters.xml @@ -386,9 +386,25 @@ <sound event="miss">fluffy-miss1.ogg</sound>
<sound event="hurt">fluffy-hurt1.ogg</sound>
</monster>
-
+
<monster id="26" name="Mouboo">
- <sprite>monster-mouboo.xml</sprite>
+ <sprite>monster-mouboo.xml</sprite>
+ </monster>
+
+ <monster id="27" name="Mauve Plant">
+ <sprite>resource-plant.xml|#e0b0ff</sprite>
+ </monster>
+
+ <monster id="28" name="Cobalt Plant">
+ <sprite>resource-plant.xml|#0047ab</sprite>
+ </monster>
+
+ <monster id="29" name="Gamboge Plant">
+ <sprite>resource-plant.xml|#ef9b0f</sprite>
+ </monster>
+
+ <monster id="30" name="Alizarin Plant">
+ <sprite>resource-plant.xml|#e32636</sprite>
</monster>
</monsters>
|