diff options
author | HoraK-FDF <horak-fdf@web.de> | 2024-07-01 23:44:23 +0200 |
---|---|---|
committer | HoraK-FDF <horak-fdf@web.de> | 2024-07-01 23:44:23 +0200 |
commit | 38d5a8e441fc6b5e8e3e7af8bbf061c2a5080f66 (patch) | |
tree | 0ae3a02f1dd14865af931e6850f443f7aedb146c | |
parent | df06f82c1496dea5e99177c931a1a805abb0e949 (diff) | |
download | clientdata-38d5a8e441fc6b5e8e3e7af8bbf061c2a5080f66.tar.gz clientdata-38d5a8e441fc6b5e8e3e7af8bbf061c2a5080f66.tar.bz2 clientdata-38d5a8e441fc6b5e8e3e7af8bbf061c2a5080f66.tar.xz clientdata-38d5a8e441fc6b5e8e3e7af8bbf061c2a5080f66.zip |
stones, crystals and mobs
-rw-r--r-- | graphics/items/generic/brick-a.png | bin | 0 -> 607 bytes | |||
-rw-r--r-- | graphics/items/generic/crystal-black-quarz.png | bin | 0 -> 584 bytes | |||
-rw-r--r-- | graphics/items/generic/crystal-mountain.png | bin | 0 -> 632 bytes | |||
-rw-r--r-- | graphics/items/generic/stone-a.png | bin | 0 -> 759 bytes | |||
-rw-r--r-- | graphics/items/use/others/anchor-stone-anchored.png | bin | 0 -> 1083 bytes | |||
-rw-r--r-- | graphics/items/use/others/anchor-stone.png | bin | 0 -> 738 bytes | |||
-rw-r--r-- | graphics/sprites/monsters/golem-dyable.png | bin | 0 -> 1185143 bytes | |||
-rw-r--r-- | graphics/sprites/monsters/golem-dyable.xml | 5 | ||||
-rw-r--r-- | items/generic/_include.xml | 4 | ||||
-rw-r--r-- | items/generic/item5380_Stone.xml | 4 | ||||
-rw-r--r-- | items/generic/item5381_Brick.xml | 4 | ||||
-rw-r--r-- | items/generic/item5384_MountainCrystal.xml | 4 | ||||
-rw-r--r-- | items/generic/item5385_BlackQuarz.xml | 4 | ||||
-rw-r--r-- | items/usable/_include.xml | 2 | ||||
-rw-r--r-- | items/usable/item5382_AnchorStone.xml | 10 | ||||
-rw-r--r-- | items/usable/item5383_AnchoredAnchorStone.xml | 10 | ||||
-rw-r--r-- | license.md | 9 | ||||
-rw-r--r-- | monsters.xml | 21 |
18 files changed, 75 insertions, 2 deletions
diff --git a/graphics/items/generic/brick-a.png b/graphics/items/generic/brick-a.png Binary files differnew file mode 100644 index 00000000..c84377ec --- /dev/null +++ b/graphics/items/generic/brick-a.png diff --git a/graphics/items/generic/crystal-black-quarz.png b/graphics/items/generic/crystal-black-quarz.png Binary files differnew file mode 100644 index 00000000..4fe58a5d --- /dev/null +++ b/graphics/items/generic/crystal-black-quarz.png diff --git a/graphics/items/generic/crystal-mountain.png b/graphics/items/generic/crystal-mountain.png Binary files differnew file mode 100644 index 00000000..810f5f1a --- /dev/null +++ b/graphics/items/generic/crystal-mountain.png diff --git a/graphics/items/generic/stone-a.png b/graphics/items/generic/stone-a.png Binary files differnew file mode 100644 index 00000000..18bc06d1 --- /dev/null +++ b/graphics/items/generic/stone-a.png diff --git a/graphics/items/use/others/anchor-stone-anchored.png b/graphics/items/use/others/anchor-stone-anchored.png Binary files differnew file mode 100644 index 00000000..ec0626a0 --- /dev/null +++ b/graphics/items/use/others/anchor-stone-anchored.png diff --git a/graphics/items/use/others/anchor-stone.png b/graphics/items/use/others/anchor-stone.png Binary files differnew file mode 100644 index 00000000..ee9c4d4e --- /dev/null +++ b/graphics/items/use/others/anchor-stone.png diff --git a/graphics/sprites/monsters/golem-dyable.png b/graphics/sprites/monsters/golem-dyable.png Binary files differnew file mode 100644 index 00000000..204ddef1 --- /dev/null +++ b/graphics/sprites/monsters/golem-dyable.png diff --git a/graphics/sprites/monsters/golem-dyable.xml b/graphics/sprites/monsters/golem-dyable.xml new file mode 100644 index 00000000..f693d78e --- /dev/null +++ b/graphics/sprites/monsters/golem-dyable.xml @@ -0,0 +1,5 @@ +<?xml version="1.0"?> +<sprite> + <imageset name="mob" src="graphics/sprites/monsters/golem-dyable.png|W;B" width="128" height="128" offsetY="3"/> + <include file="monsters/golem.xml"/> +</sprite> diff --git a/items/generic/_include.xml b/items/generic/_include.xml index 6785fa99..eee6c34e 100644 --- a/items/generic/_include.xml +++ b/items/generic/_include.xml @@ -290,4 +290,8 @@ <include name="items/generic/item5376_KingChonkyBirbFeather.xml"/> <include name="items/generic/item5377_Honeycomb.xml"/> <include name="items/generic/item5378_Beeswax.xml"/> + <include name="items/generic/item5380_Stone.xml"/> + <include name="items/generic/item5381_Brick.xml"/> + <include name="items/generic/item5384_MountainCrystal.xml"/> + <include name="items/generic/item5385_BlackQuarz.xml"/> </items> diff --git a/items/generic/item5380_Stone.xml b/items/generic/item5380_Stone.xml new file mode 100644 index 00000000..4bfc916a --- /dev/null +++ b/items/generic/item5380_Stone.xml @@ -0,0 +1,4 @@ +<?xml version="1.0"?> +<items> + <item id="5380" image="generic/stone-a.png|W:#280b03,81330f,b3582b,d78464,f8ba81,ffddbb,ffffff" name="Stone" description="A heavy stone, your back is already hurting only from looking at it." type="generic" weight="60"/> +</items> diff --git a/items/generic/item5381_Brick.xml b/items/generic/item5381_Brick.xml new file mode 100644 index 00000000..deb6b9e6 --- /dev/null +++ b/items/generic/item5381_Brick.xml @@ -0,0 +1,4 @@ +<?xml version="1.0"?> +<items> + <item id="5381" image="generic/brick-a.png|W:#280b03,81330f,b3582b,d78464,f8ba81,ffddbb,ffffff" name="Brick" description="You always wanted to create a building? Now you can!" type="generic" weight="40"/> +</items> diff --git a/items/generic/item5384_MountainCrystal.xml b/items/generic/item5384_MountainCrystal.xml new file mode 100644 index 00000000..9fea62f0 --- /dev/null +++ b/items/generic/item5384_MountainCrystal.xml @@ -0,0 +1,4 @@ +<?xml version="1.0"?> +<items> + <item id="5384" image="generic/crystal-mountain.png" name="Mountain Crystal" description="A clear white crystal." type="generic" weight="20"/> +</items> diff --git a/items/generic/item5385_BlackQuarz.xml b/items/generic/item5385_BlackQuarz.xml new file mode 100644 index 00000000..d05d6a6a --- /dev/null +++ b/items/generic/item5385_BlackQuarz.xml @@ -0,0 +1,4 @@ +<?xml version="1.0"?> +<items> + <item id="5385" image="generic/crystal-black-quarz.png" name="Black Quarz" description="A black crystal." type="generic" weight="20"/> +</items> diff --git a/items/usable/_include.xml b/items/usable/_include.xml index 22d7f8b9..e1902d24 100644 --- a/items/usable/_include.xml +++ b/items/usable/_include.xml @@ -137,4 +137,6 @@ <include name="items/usable/item5373_JunglefowlEgg.xml"/> <include name="items/usable/item5374_KingChonkyBirbEgg.xml"/> <include name="items/usable/item5379_Sauerkraut.xml"/> + <include name="items/usable/item5382_AnchorStone.xml"/> + <include name="items/usable/item5383_AnchoredAnchorStone.xml"/> </items> diff --git a/items/usable/item5382_AnchorStone.xml b/items/usable/item5382_AnchorStone.xml new file mode 100644 index 00000000..528403d8 --- /dev/null +++ b/items/usable/item5382_AnchorStone.xml @@ -0,0 +1,10 @@ +<?xml version="1.0"?> +<items> + <item id="5382" + image="use/others/anchor-stone.png|W:#280b03,81330f,b3582b,d78464,f8ba81,ffddbb,ffffff" + name="Anchor Stone" + description="An enchanted stone capable to be bound to a place." + useButton="Activate" + type="usable" + weight="40"/> +</items> diff --git a/items/usable/item5383_AnchoredAnchorStone.xml b/items/usable/item5383_AnchoredAnchorStone.xml new file mode 100644 index 00000000..8b55497e --- /dev/null +++ b/items/usable/item5383_AnchoredAnchorStone.xml @@ -0,0 +1,10 @@ +<?xml version="1.0"?> +<items> + <item id="5383" + image="use/others/anchor-stone-anchored.png|W:#280b03,81330f,b3582b,d78464,f8ba81,ffddbb,ffffff;Y:#8888ff" + name="Anchored Anchor Stone" + description="An enchanted stone bound to a place." + useButton="Recall" + type="usable" + weight="40"/> +</items> @@ -391,6 +391,7 @@ File | Artists | Licenses `graphics/items/generic/bottle-empty.png` | FotherJ, Enchilado | GPLv2, CC BY-SA 3.0 `graphics/items/generic/bottle-ice.png` | FotherJ, Nami, Enchilado | GPLv2, CC BY-SA 3.0 `graphics/items/generic/bottle-sand.png` | FotherJ, Enchilado | GPLv2, CC BY-SA 3.0 +`graphics/items/generic/brick-a.png` | HoraK-FDF | GPLv2, CC BY-SA 4.0 `graphics/items/generic/broken-fourleaf-amulet.png` | Alige, Fate, Enchilado | GPLv2, CC BY-SA 3.0 `graphics/items/generic/brokendoll.png` | Enchilado | GPLv2, CC BY-SA 3.0 `graphics/items/generic/bromenal-droplet.png` | HoraK-FDF | GPLv2, CC BY-SA 4.0 @@ -410,7 +411,9 @@ File | Artists | Licenses `graphics/items/generic/coinbag.png` | :grey_question:, Enchilado | GPLv2 `graphics/items/generic/crocclaw.png` | Reid, Enchilado | CC BY-SA 3.0 `graphics/items/generic/crystal.png` | Crush, Enchilado | GPLv2, CC BY-SA 3.0 +`graphics/items/generic/crystal-black-quarz.png` | HoraK-FDF | GPLv2, CC BY-SA 4.0 `graphics/items/generic/crystal-crozenite.png` | HoraK-FDF | GPLv2, CC BY-SA 4.0 +`graphics/items/generic/crystal-mountain.png` | HoraK-FDF | GPLv2, CC BY-SA 4.0 `graphics/items/generic/crystalized-dragon-blood.png` | HoraK-FDF | GPLv2, CC BY-SA 4.0 `graphics/items/generic/dark-easter-egg.png` | :grey_question:, Enchilado | GPLv2 `graphics/items/generic/dark-petal.png` | Enchilado | GPLv2, CC BY-SA 3.0 @@ -508,6 +511,7 @@ File | Artists | Licenses `graphics/items/generic/squichyclaws.png` | Reid | CC BY-SA 3.0 `graphics/items/generic/squirrel-pelt.png` | Wombat, Enchilado | GPLv2, CC BY-SA 3.0 `graphics/items/generic/stinger.png` | Wombat, Enchilado | GPLv2, CC BY-SA 3.0 +`graphics/items/generic/stone-a.png` | HoraK-FDF | GPLv2, CC BY-SA 4.0 `graphics/items/generic/strange-coin.png` | :grey_question:, Enchilado | GPLv2 `graphics/items/generic/terraniteore.png` | Kr0n05931, Enchilado | GPLv2 `graphics/items/generic/tongue.png` | Enchilado | GPLv2, CC BY-SA 3.0 @@ -610,6 +614,8 @@ File | Artists | Licenses #### Misc Usable Items File | Artists | Licenses ---- |:-------:|:--------: +`graphics/items/use/others/anchor-stone.png` | HoraK-FDF | GPLv2, CC BY-SA 4.0 +`graphics/items/use/others/anchor-stone-anchored.png` | HoraK-FDF | GPLv2, CC BY-SA 4.0 `graphics/items/use/others/croconut.png` | Hal9000 | CC BY-SA 3.0 `graphics/items/use/others/rubberducky.png` | Salmondine, dangerDuck | GPLv2 `graphics/items/use/others/shovel.png` | Alige, Reid | CC BY-SA 3.0 @@ -1013,9 +1019,10 @@ File | Artists | Licenses `graphics/sprites/monsters/goblin-fire.png` | :grey_question:, Neoriceisgood | GPLv2 `graphics/sprites/monsters/goblin-ice.png` | :grey_question:, Neoriceisgood | GPLv2 `graphics/sprites/monsters/golem.png` | Hocus | MIT, GPLv2, CC BY-SA 3.0 -`graphics/sprites/monsters/golem-red.png` | Hocus | MIT, GPLv2, CC BY-SA 3.0 `graphics/sprites/monsters/golem-blackcrystal.png` | Hocus | MIT, GPLv2, CC BY-SA 3.0 `graphics/sprites/monsters/golem-crystal.png` | Hocus, HoraK-FDF | MIT, GPLv2, CC BY-SA 3.0 +`graphics/sprites/monsters/golem-dyable.png` | Hocus, HoraK-FDF | MIT, GPLv2, CC BY-SA 3.0 +`graphics/sprites/monsters/golem-red.png` | Hocus | MIT, GPLv2, CC BY-SA 3.0 `graphics/sprites/monsters/junglefowl.png` | Pateame, Virtual Reality | GPLv2 `graphics/sprites/monsters/larvespa.png` | Arikel | GPLv2, CC BY-SA 3.0 `graphics/sprites/monsters/lizard.png` | Len, Pateame | GPLv2 diff --git a/monsters.xml b/monsters.xml index 74abae05..91e133d1 100644 --- a/monsters.xml +++ b/monsters.xml @@ -1961,7 +1961,26 @@ </monster> <monster id="1224" name="Coal Golem"> - <sprite>monsters/golem.xml</sprite> + <sprite>monsters/golem-dyable.xml|#222222,bbbbbb;#ffffff</sprite> + <attack id="1" critical-hit-effect-id="16" missile-particle="graphics/particles/fire-burst.xml" action="attack"/> + <sound event="die">monsters/golem/die.ogg</sound> + <sound event="hit">monsters/golem/hit1.ogg</sound> + <sound event="miss">monsters/golem/miss1.ogg</sound> + </monster> + + <monster id="1225" name="Stone Slime" targetCursor="medium"> + <sprite>monsters/slime.xml|#280b03,81330f,b3582b,d78464,f8ba81,ffddbb,ffffff</sprite> + <sound event="die">monsters/slime/slime-die1.ogg</sound> + <sound event="hit">monsters/slime/slime-hit1.ogg</sound> + <sound event="hurt">monsters/slime/slime-hurt1.ogg</sound> + <sound event="hurt">monsters/slime/slime-hurt2.ogg</sound> + <sound event="hurt">monsters/slime/slime-hurt3.ogg</sound> + <sound event="move">monsters/slime/slime-move1.ogg</sound> + <sound event="move">monsters/slime/slime-move2.ogg</sound> + </monster> + + <monster id="1226" name="Stone Golem"> + <sprite>monsters/golem-dyable.xml|#280b03,81330f,b3582b,d78464,f8ba81,ffddbb,ffffff;#ff0000,ffffff</sprite> <attack id="1" critical-hit-effect-id="16" missile-particle="graphics/particles/fire-burst.xml" action="attack"/> <sound event="die">monsters/golem/die.ogg</sound> <sound event="hit">monsters/golem/hit1.ogg</sound> |