Guest User

Untitled

a guest
Dec 11th, 2017
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.57 KB | None | 0 0
  1. Pokemon = {}
  2. Type = {["Normal"] = "Normal", ["Fire"] = "Fire", ["Grass"] = "Grass", ["Water"] = "Water", ["Psychic"] = "Psychic", ["Fighting"] = "Fighting", ["Electric"] = "Electric"}
  3. Stage = {["Basic"] = "Basic", ["StageOne"] = "Stage One", ["StageTwo"] = "Stage Two"}
  4. Set = {["Legend"] = "Legendary Set"}
  5. Rarity = {["Common"] = "Common", ["Uncommon"] = "Uncommon", ["Rare"] = "Rare", ["Holo"] = "HoloRare"}
  6.  
  7.  
  8. Pokemon.Alakazam = {80, Stage.StageTwo, Set.Legend, Type.Psychic, Rarity.Holo}
  9.  
  10. for k,v in pairs(Pokemon.Alakazam) do
  11. print("Index: "..k.." - ".."Item: "..v)
  12.  
  13. end
Add Comment
Please, Sign In to add comment