Advertisement
Guest User

Untitled

a guest
Feb 19th, 2017
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 1.57 KB | None | 0 0
  1. Users:
  2.  
  3. <users>
  4.     <user name="username1">
  5.         <points>1000</points>
  6.         <daily>FriFeb172017</daily>
  7.         <pokemon>
  8.             <num>001</num>
  9.             <lvl>100</lvl>
  10.             <shiny>False</shiny>
  11.             <id>00001</id>
  12.         </pokemon>
  13.         <pokemon>
  14.             <num>001</num>
  15.             <lvl>100</lvl>
  16.             <shiny>False</shiny
  17.             <is>00002</id>
  18.         </pokemon>
  19.         <item name="pokeball" />
  20.         <item name="pokeball" />
  21.     </user>
  22.     <user name="username2">
  23.         <points>1000</points>
  24.         <daily>FriFeb172017</daily>
  25.     </user>
  26. </users>
  27.  
  28. Pokemon:
  29.  
  30. <pokemon>
  31.     <pkmn num="0">
  32.         <name>Missingno</name>
  33.     </pkmn>
  34.     <pkmn num="1">
  35.         <name>Bulbasaur</name>
  36.         <buyable>Yes</buyable><!--Node doesn't exist if pokemon isn't buyable-->
  37.         <price>40</price><!--Price to either buy or evolve to the pokemon-->
  38.         <catchrate>45</catchrate>
  39.         <type1>Grass</type1>
  40.         <type2>Poison</type2><!--Node doesn't exist if the pokemon has no type2-->
  41.         <evolution><!--One of these nodes per evolution the pokemon has-->
  42.             <to>2</to>
  43.             <type>level</type><!--Valid types are: level (can evolve after certain level), random (I.E., Tyrogue), day/night (Eevee), stone, trade, special (specific item)-->
  44.             <requ>16</requ><!--Requirement for evolution - level amount, what type of stone, or what kind of item required-->
  45.         </evolution>
  46.         <nickname>nickname</nickname><!--Node doesn't exist if pokemon has no nickname, can have multiples of these nodes for multiple nicknames-->
  47.     </pkmn>
  48. </pokemon>
  49.  
  50. Items:
  51.  
  52. <items>
  53.     <item name="thunderstone"><!--Item referable name-->
  54.         <name>Thunder Stone</name><!--Displayable name-->
  55.         <price>50</price>
  56.     </item>
  57. </items>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement