diff options
author | Jesusaves <cpntb1@ymail.com> | 2021-07-05 17:35:45 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2021-07-05 17:35:45 -0300 |
commit | 0d5262ba6d59ddd73c93415f2b48b5404558cbfa (patch) | |
tree | 2d92002a2c1ed5fa55e6d7cd7ec72f701844a916 | |
parent | 9c6ed4257092a7736b16e52f4bf49f715e18a493 (diff) | |
download | clientdata-0d5262ba6d59ddd73c93415f2b48b5404558cbfa.tar.gz clientdata-0d5262ba6d59ddd73c93415f2b48b5404558cbfa.tar.bz2 clientdata-0d5262ba6d59ddd73c93415f2b48b5404558cbfa.tar.xz clientdata-0d5262ba6d59ddd73c93415f2b48b5404558cbfa.zip |
Add Hero Coin / Boss Medal
Close serverdata#52 along serverdata@4d13117c8898f0cdaa94c5b599938998fc87f03a
-rw-r--r-- | graphics/items/generic/herocoin.png | bin | 0 -> 1032 bytes | |||
-rw-r--r-- | items/generic.xml | 6 | ||||
-rw-r--r-- | npcs.xml | 2 | ||||
-rw-r--r-- | units.xml | 11 |
4 files changed, 14 insertions, 5 deletions
diff --git a/graphics/items/generic/herocoin.png b/graphics/items/generic/herocoin.png Binary files differnew file mode 100644 index 00000000..808d6804 --- /dev/null +++ b/graphics/items/generic/herocoin.png diff --git a/items/generic.xml b/items/generic.xml index 90649150..80f80cac 100644 --- a/items/generic.xml +++ b/items/generic.xml @@ -301,6 +301,12 @@ description="The seeds from a seasonal pumpkin vine." type="generic" weight="1" /> + <item id="3012" + image="generic/herocoin.png" + name="Boss Medal" + description="Acquired with great efforts; Many will never hold one." + type="generic" + weight="1" /> <item id="4000" image="generic/scorpionstinger.png|W:#800000,ffffff" name="Angry Scorpion Stinger" @@ -845,7 +845,7 @@ <npc id="312"> <sprite>npcs/npc-beerguyghost.xml</sprite> </npc> - <npc id="313"> + <npc id="313" currency="medal"> <sprite>npcs/npc-chronos.xml</sprite> </npc> <npc id="314"> @@ -1,7 +1,10 @@ <?xml version="1.0"?> <units> - <unit type="currency" base="GP" round="0"/> - <unit type="weight" base="g" round="0"> - <level symbol="kg" count="1000" round="2"/> - </unit> + <unit type="currency" base="GP" round="0" separator=" "/> + <unit type="weight" base="g" round="0" separator=" "> + <level symbol="kg" count="1000" round="2"/> + </unit> + <currency> + <unit name="medal" base=" Medals" round="0" separator=" "/> + </currency> </units> |