diff options
-rw-r--r-- | npcs.xml | 16 | ||||
-rw-r--r-- | units.xml | 1 |
2 files changed, 16 insertions, 1 deletions
@@ -335,7 +335,7 @@ IDs 900-999 = Special <!-- Fakir, Dog statue NPC --> <sprite>npcs/xml/desertdogstatue.xml</sprite> </npc> - <npc id="163"> + <npc id="163" currency="eggs"> <!-- Easter NPC --> <sprite>npcs/xml/easter.xml</sprite> </npc> @@ -837,6 +837,20 @@ IDs 900-999 = Special <menu name="Buy" command="buy 'NAME'"/> <menu name="Sell" command="sell 'NAME'"/> </npc> + <npc id="813" walkType="all" allowEquipment="true" currency="coins"> + <!-- coin shopkeeper npc with player look. --> + <sprite>races/human-male.xml</sprite> + <menu name="Talk" command="talk 'NAME'"/> + <menu name="Buy" command="buy 'NAME'"/> + <menu name="Sell" command="sell 'NAME'"/> + </npc> + <npc id="814" walkType="all" allowEquipment="true" currency="coins"> + <!-- coin shopkeeper npc with player look (female). --> + <sprite>races/human-female.xml</sprite> + <menu name="Talk" command="talk 'NAME'"/> + <menu name="Buy" command="buy 'NAME'"/> + <menu name="Sell" command="sell 'NAME'"/> + </npc> <!-- Special NPCs --> <!-- WIP <npc id="900"> @@ -10,5 +10,6 @@ Copyright (C) 2010-2013 Evol Online --> <currency> <unit name="points" base=" Points" round="0" separator=" "/> <unit name="coins" base=" Coins" round="0" separator=" "/> + <unit name="eggs" base=" Eggs" round="0" separator=" "/> </currency> </units> |