diff options
-rw-r--r-- | graphics/sprites/icon-feather.png | bin | 0 -> 579 bytes | |||
-rw-r--r-- | graphics/sprites/icon-feather.xml | 10 | ||||
-rw-r--r-- | graphics/sprites/icon-green-barrier.png | bin | 0 -> 756 bytes | |||
-rw-r--r-- | graphics/sprites/icon-green-barrier.xml | 12 | ||||
-rw-r--r-- | graphics/sprites/icon-hidden.png | bin | 0 -> 514 bytes | |||
-rw-r--r-- | graphics/sprites/icon-hidden.xml | 10 | ||||
-rw-r--r-- | graphics/sprites/icon-red-rotating-hex.xml | 17 | ||||
-rw-r--r-- | items.xml | 9 | ||||
-rw-r--r-- | status-effects.xml | 12 |
9 files changed, 70 insertions, 0 deletions
diff --git a/graphics/sprites/icon-feather.png b/graphics/sprites/icon-feather.png Binary files differnew file mode 100644 index 00000000..4651e224 --- /dev/null +++ b/graphics/sprites/icon-feather.png diff --git a/graphics/sprites/icon-feather.xml b/graphics/sprites/icon-feather.xml new file mode 100644 index 00000000..0346a031 --- /dev/null +++ b/graphics/sprites/icon-feather.xml @@ -0,0 +1,10 @@ +<?xml version="1.0"?>
+<sprite>
+ <imageset name="base" src="graphics/sprites/icon-feather.png" width="24" height="24" />
+
+ <action name="default" imageset="base">
+ <animation direction="default">
+ <frame index="0" offsetY="-12" delay="100"/>
+ </animation>
+ </action>
+</sprite>
diff --git a/graphics/sprites/icon-green-barrier.png b/graphics/sprites/icon-green-barrier.png Binary files differnew file mode 100644 index 00000000..19c53b9a --- /dev/null +++ b/graphics/sprites/icon-green-barrier.png diff --git a/graphics/sprites/icon-green-barrier.xml b/graphics/sprites/icon-green-barrier.xml new file mode 100644 index 00000000..4613c612 --- /dev/null +++ b/graphics/sprites/icon-green-barrier.xml @@ -0,0 +1,12 @@ +<?xml version="1.0"?>
+<sprite>
+ <imageset name="base" src="graphics/sprites/icon-green-barrier.png" width="16" height="24" />
+
+ <action name="default" imageset="base">
+ <animation direction="default">
+ <frame index="0" offsetY="-10" delay="100"/>
+ <frame index="1" offsetY="-10" delay="100"/>
+ <frame index="2" offsetY="-10" delay="100"/>
+ </animation>
+ </action>
+</sprite>
diff --git a/graphics/sprites/icon-hidden.png b/graphics/sprites/icon-hidden.png Binary files differnew file mode 100644 index 00000000..b95792c1 --- /dev/null +++ b/graphics/sprites/icon-hidden.png diff --git a/graphics/sprites/icon-hidden.xml b/graphics/sprites/icon-hidden.xml new file mode 100644 index 00000000..5bd03204 --- /dev/null +++ b/graphics/sprites/icon-hidden.xml @@ -0,0 +1,10 @@ +<?xml version="1.0"?>
+<sprite>
+ <imageset name="base" src="graphics/sprites/icon-hidden.png" width="24" height="24" />
+
+ <action name="default" imageset="base">
+ <animation direction="default">
+ <frame index="0" offsetY="-12" delay="100"/>
+ </animation>
+ </action>
+</sprite>
diff --git a/graphics/sprites/icon-red-rotating-hex.xml b/graphics/sprites/icon-red-rotating-hex.xml new file mode 100644 index 00000000..15fd7354 --- /dev/null +++ b/graphics/sprites/icon-red-rotating-hex.xml @@ -0,0 +1,17 @@ +<?xml version="1.0"?>
+<sprite>
+ <imageset name="base" src="graphics/particles/hex-facet-50.png|W:#ff0000" width="9" height="11" />
+
+ <action name="default" imageset="base">
+ <animation direction="default">
+ <frame index="0" offsetY="-10" delay="200"/>
+ <frame index="1" offsetY="-10" delay="200"/>
+ <frame index="2" offsetY="-10" delay="200"/>
+ <frame index="3" offsetY="-10" delay="200"/>
+ <frame index="4" offsetY="-10" delay="200"/>
+ <frame index="5" offsetY="-10" delay="200"/>
+ <frame index="6" offsetY="-10" delay="200"/>
+ <frame index="7" offsetY="-10" delay="200"/>
+ </animation>
+ </action>
+</sprite>
@@ -2186,6 +2186,15 @@ effect="" type="generic" weight="2"/> + <item id="733" + image="use-potion-e.png|R:#fff0ff;G:#d0c09f" + name="Purification Potion" + description="A transparent, odorless liquid that feels strangely lighter than water." + effect="" + type="usable" + mp="0" + weight="5" + max-per-slot="10"/> <!-- HERE ARE SOME UNUSED ITEM IDS --> diff --git a/status-effects.xml b/status-effects.xml index 5c56b423..59fc781d 100644 --- a/status-effects.xml +++ b/status-effects.xml @@ -17,4 +17,16 @@ persistent-particle-effect="true" start-particle="graphics/particles/sphere-white.particle.xml" /> + <status-effect name="hide" id="194" + icon="icon-hidden.xml" + /> + <status-effect name="flying-backpack" id="196" + icon="icon-feather.xml" + /> + <status-effect name="barrier" id="197" + icon="icon-green-barrier.xml" + /> + <status-effect name="phys-shield" id="199" + icon="icon-red-rotating-hex.xml" + /> </status-effects> |