Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- Type advatages (note these are offensive (e.g. fire is super on grass, grass is nvery on fire)
- --[[ The types go in this order dont change the order or it will screw up what beats what
- 0 = None (Only for Type2);
- 1 = Normal;
- 2 = Fire;
- 3 = Water;
- 4 = Electric;
- 5 = Grass;
- 6 = Ice;
- 7 = Fighting;
- 8 = Poison;
- 9 = Ground;
- 10 = Flying;
- 11 = Psychic;
- 12 = Bug;
- 13 = Rock;
- 14 = Ghost;
- 15 = Dragon;
- 16 = Dark;
- 17 = Steel;
- 18 = Fairy;
- --]]
- local nv = 1/10
- local sup = 2
- local imm = 1/10
- local None = {
- 1, -- none
- 1, -- normal
- 1, -- fire
- 1, -- water
- 1, -- electric
- 1, -- grass
- 1, -- ice
- 1, -- fighting
- 1, -- poison
- 1, -- ground
- 1, -- flying
- 1, -- psychic
- 1, -- bug
- 1, -- rock
- 1, -- ghost
- 1, -- dragon
- 1, -- dark
- 1, -- steel
- 1 -- fairy
- }
- local Normal = {
- 1, -- none
- 1, -- normal
- 1, -- fire
- 1, -- water
- 1, -- electric
- 1, -- grass
- 1, -- ice
- 1, -- fighting
- 1, -- poison
- 1, -- ground
- 1, -- flying
- 1, -- psychic
- 1, -- bug
- nv, -- rock
- imm, -- ghost
- 1, -- dragon
- 1, -- dark
- nv, -- steel
- 1 -- fairy
- }
- local Fire = {
- 1, -- none
- 1, -- normal
- nv, -- fire
- nv, -- water
- 1, -- electric
- sup, -- grass
- sup, -- ice
- 1, -- fighting
- 1, -- poison
- 1, -- ground
- 1, -- flying
- 1, -- psychic
- sup, -- bug
- nv, -- rock
- 1, -- ghost
- nv, -- dragon
- 1, -- dark
- sup, -- steel
- 1 -- fairy
- }
- local Water = {
- 1, -- none
- 1, -- normal
- sup, -- fire
- nv, -- water
- 1, -- electric
- nv, -- grass
- 1, -- ice
- 1, -- fighting
- 1, -- poison
- sup, -- ground
- 1, -- flying
- 1, -- psychic
- 1, -- bug
- sup, -- rock
- 1, -- ghost
- nv, -- dragon
- 1, -- dark
- 1, -- steel
- 1 -- fairy
- }
- local Electric = {
- 1, -- none
- 1, -- normal
- 1, -- fire
- sup, -- water
- nv, -- electric
- nv, -- grass
- 1, -- ice
- 1, -- fighting
- 1, -- poison
- imm, -- ground
- sup, -- flying
- 1, -- psychic
- 1, -- bug
- 1, -- rock
- 1, -- ghost
- nv, -- dragon
- 1, -- dark
- 1, -- steel
- 1 -- fairy
- }
- local Grass = {
- 1, -- none
- 1, -- normal
- nv, -- fire
- sup, -- water
- 1, -- electric
- nv, -- grass
- 1, -- ice
- 1, -- fighting
- 1, -- poison
- sup, -- ground
- nv, -- flying
- 1, -- psychic
- nv, -- bug
- sup, -- rock
- 1, -- ghost
- nv, -- dragon
- 1, -- dark
- nv, -- steel
- 1 -- fairy
- }
- local Ice = {
- 1, -- none
- 1, -- normal
- nv, -- fire
- nv, -- water
- 1, -- electric
- sup, -- grass
- nv, -- ice
- 1, -- fighting
- 1, -- poison
- sup, -- ground
- sup, -- flying
- 1, -- psychic
- 1, -- bug
- 1, -- rock
- 1, -- ghost
- sup, -- dragon
- 1, -- dark
- nv, -- steel
- 1 -- fairy
- }
- local Fighting = {
- 1, -- none
- sup, -- normal
- 1, -- fire
- 1, -- water
- 1, -- electric
- 1, -- grass
- sup, -- ice
- 1, -- fighting
- nv, -- poison
- 1, -- ground
- nv, -- flying
- nv, -- psychic
- nv, -- bug
- sup, -- rock
- imm, -- ghost
- 1, -- dragon
- sup, -- dark
- sup, -- steel
- nv -- fairy
- }
- local Poison = {
- 1, -- none
- 1, -- normal
- 1, -- fire
- 1, -- water
- 1, -- electric
- sup, -- grass
- 1, -- ice
- 1, -- fighting
- nv, -- poison
- nv, -- ground
- 1, -- flying
- 1, -- psychic
- 1, -- bug
- nv, -- rock
- nv, -- ghost
- 1, -- dragon
- 1, -- dark
- imm, -- steel
- sup -- fairy
- }
- local Ground = {
- 1, -- none
- 1, -- normal
- sup, -- fire
- 1, -- water
- sup, -- electric
- nv, -- grass
- 1, -- ice
- 1, -- fighting
- sup, -- poison
- 1, -- ground
- imm, -- flying
- 1, -- psychic
- nv, -- bug
- sup, -- rock
- 1, -- ghost
- 1, -- dragon
- 1, -- dark
- sup, -- steel
- 1 -- fairy
- }
- local Flying = {
- 1, -- none
- 1, -- normal
- 1, -- fire
- 1, -- water
- nv, -- electric
- sup, -- grass
- 1, -- ice
- sup, -- fighting
- 1, -- poison
- 1, -- ground
- 1, -- flying
- 1, -- psychic
- sup, -- bug
- nv, -- rock
- 1, -- ghost
- 1, -- dragon
- 1, -- dark
- nv, -- steel
- 1 -- fairy
- }
- local Psychic = {
- 1, -- none
- 1, -- normal
- 1, -- fire
- 1, -- water
- 1, -- electric
- 1, -- grass
- 1, -- ice
- sup, -- fighting
- sup, -- poison
- 1, -- ground
- 1, -- flying
- nv, -- psychic
- 1, -- bug
- 1, -- rock
- 1, -- ghost
- 1, -- dragon
- imm, -- dark
- nv, -- steel
- 1 -- fairy
- }
- local Bug = {
- 1, -- none
- 1, -- normal
- nv, -- fire
- 1, -- water
- 1, -- electric
- sup, -- grass
- 1, -- ice
- nv, -- fighting
- nv, -- poison
- 1, -- ground
- nv, -- flying
- sup, -- psychic
- 1, -- bug
- nv, -- rock
- nv, -- ghost
- 1, -- dragon
- sup, -- dark
- nv, -- steel
- nv -- fairy
- }
- local Rock = {
- 1, -- none
- 1, -- normal
- sup, -- fire
- 1, -- water
- 1, -- electric
- nv, -- grass
- sup, -- ice
- nv, -- fighting
- 1, -- poison
- 1, -- ground
- sup, -- flying
- 1, -- psychic
- sup, -- bug
- nv, -- rock
- 1, -- ghost
- 1, -- dragon
- 1, -- dark
- nv, -- steel
- 1 -- fairy
- }
- local Ghost = {
- 1, -- none
- imm, -- normal
- 1, -- fire
- 1, -- water
- 1, -- electric
- 1, -- grass
- 1, -- ice
- 1, -- fighting
- 1, -- poison
- 1, -- ground
- 1, -- flying
- sup, -- psychic
- 1, -- bug
- 1, -- rock
- sup, -- ghost
- 1, -- dragon
- nv, -- dark
- 1, -- steel
- 1 -- fairy
- }
- local Dragon = {
- 1, -- none
- 1, -- normal
- 1, -- fire
- 1, -- water
- 1, -- electric
- 1, -- grass
- 1, -- ice
- 1, -- fighting
- 1, -- poison
- 1, -- ground
- 1, -- flying
- 1, -- psychic
- 1, -- bug
- 1, -- rock
- 1, -- ghost
- sup, -- dragon
- 1, -- dark
- nv, -- steel
- imm -- fairy
- }
- local Dark = {
- 1, -- none
- 1, -- normal
- 1, -- fire
- 1, -- water
- 1, -- electric
- 1, -- grass
- 1, -- ice
- nv, -- fighting
- 1, -- poison
- 1, -- ground
- 1, -- flying
- sup, -- psychic
- 1, -- bug
- 1, -- rock
- sup, -- ghost
- 1, -- dragon
- nv, -- dark
- 1, -- steel
- nv -- fairy
- }
- local Steel = {
- 1, -- none
- 1, -- normal
- nv, -- fire
- nv, -- water
- nv, -- electric
- 1, -- grass
- sup, -- ice
- 1, -- fighting
- 1, -- poison
- 1, -- ground
- 1, -- flying
- 1, -- psychic
- 1, -- bug
- sup, -- rock
- 1, -- ghost
- 1, -- dragon
- 1, -- dark
- nv, -- steel
- sup -- fairy
- }
- local Fairy = {
- 1, -- none
- 1, -- normal
- nv, -- fire
- 1, -- water
- 1, -- electric
- 1, -- grass
- 1, -- ice
- sup, -- fighting
- nv, -- poison
- 1, -- ground
- 1, -- flying
- 1, -- psychic
- 1, -- bug
- 1, -- rock
- 1, -- ghost
- sup, -- dragon
- sup, -- dark
- nv, -- steel
- 1 -- fairy
- }
Add Comment
Please, Sign In to add comment