Advertisement
Guest User

What i added so far

a guest
Aug 21st, 2017
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.29 KB | None | 0 0
  1. If (Name="Weedle")
  2. {
  3. GuiControl,, Name2, Weedle
  4. GuiControl,, Location, Birch Forest
  5. GuiControl,, Rarity, Common
  6. GuiControl,, Image, %A_WorkingDir%/Images/weedle.png
  7. }
  8. else
  9. If (Name="Rattata")
  10. {
  11. GuiControl,, Name2, Rattata
  12. GuiControl,, Location, Plains
  13. GuiControl,, Rarity, Common
  14. GuiControl,, Image, %A_WorkingDir%/Images/rattata.png
  15. }
  16. else
  17. If (Name="Caterpie")
  18. {
  19. GuiControl,, Name2, Caterpie
  20. GuiControl,, Location, Forest
  21. GuiControl,, Rarity, Common
  22. GuiControl,, Image, %A_WorkingDir%/Images/caterpie.png
  23. }
  24. else
  25. If (Name="Charmander")
  26. {
  27. GuiControl,, Name2, Charmander
  28. GuiControl,, Location, Extreme Hills
  29. GuiControl,, Rarity, Uncommon
  30. GuiControl,, Image, %A_WorkingDir%/Images/charmander.png
  31. }
  32. else
  33. If (Name="Arceus")
  34. {
  35. GuiControl,, Name2, Arceus
  36. GuiControl,, Location, Mega Taiga Hills
  37. GuiControl,, Rarity, Rare
  38. GuiControl,, Image, %A_WorkingDir%/Images/arceus.png
  39. }
  40. else
  41. If (Name="Yveltal")
  42. {
  43. GuiControl,, Name2, Yveltal
  44. GuiControl,, Location, Mega Taiga Hills
  45. GuiControl,, Rarity, Rare
  46. GuiControl,, Image, %A_WorkingDir%/Images/yveltal.png
  47. }
  48. else
  49. If (Name="Charmeleon")
  50. {
  51. GuiControl,, Name2, Charmeleon
  52. GuiControl,, Location, Extreme Hills
  53. GuiControl,, Rarity, uncommon
  54. GuiControl,, Image, %A_WorkingDir%/Images/charmeleon.png
  55. }
  56. else
  57. If (Name="Pikachu")
  58. {
  59. GuiControl,, Name2, Pikachu
  60. GuiControl,, Location, Forest
  61. GuiControl,, Rarity, Common
  62. GuiControl,, Image, %A_WorkingDir%/Images/pikachu.png
  63. }
  64. else
  65. If (Name="Giratina")
  66. {
  67. GuiControl,, Name2, Giratina
  68. GuiControl,, Location, Roofed Forest M
  69. GuiControl,, Rarity, Rare
  70. GuiControl,, Image, %A_WorkingDir%/Images/giratina.png
  71. }
  72. else
  73. If (Name="Bidoof")
  74. {
  75. GuiControl,, Name2, Bidoof
  76. GuiControl,, Location, River
  77. GuiControl,, Rarity, Common
  78. GuiControl,, Image, %A_WorkingDir%/Images/bidoof.png
  79. }
  80. else
  81. If (Name="Ditto")
  82. {
  83. GuiControl,, Name2, Ditto
  84. GuiControl,, Location, Savanna
  85. GuiControl,, Rarity, Uncommon
  86. GuiControl,, Image, %A_WorkingDir%/Images/ditto.png
  87. }
  88. else
  89. If (Name="Celebi")
  90. {
  91. GuiControl,, Name2, Celebi
  92. GuiControl,, Location, Flower Forest
  93. GuiControl,, Rarity, Rare
  94. GuiControl,, Image, %A_WorkingDir%/Images/celebi.png
  95. }
  96. else
  97. If (Name="Meowth")
  98. {
  99. GuiControl,, Name2, Meowth
  100. GuiControl,, Location, Plains
  101. GuiControl,, Rarity, Common
  102. GuiControl,, Image, %A_WorkingDir%/Images/meowth.png
  103. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement