IHATEMICROWAVEOVEN

type advantages 1

Nov 21st, 2021 (edited)
121
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 7.13 KB | None | 0 0
  1. -- Type advatages (note these are offensive (e.g. fire is super on grass, grass is nvery on fire)
  2. --[[ The types go in this order dont change the order or it will screw up what beats what
  3. 0 = None (Only for Type2);
  4. 1 = Normal;
  5. 2 = Fire;
  6. 3 = Water;
  7. 4 = Electric;
  8. 5 = Grass;
  9. 6 = Ice;
  10. 7 = Fighting;
  11. 8 = Poison;
  12. 9 = Ground;
  13. 10 = Flying;
  14. 11 = Psychic;
  15. 12 = Bug;
  16. 13 = Rock;
  17. 14 = Ghost;
  18. 15 = Dragon;
  19. 16 = Dark;
  20. 17 = Steel;
  21. 18 = Fairy;
  22. --]]
  23. local nv = 1/10
  24. local sup = 2
  25. local imm = 1/10
  26.  
  27. local None = {
  28. 1, -- none
  29. 1, -- normal
  30. 1, -- fire
  31. 1, -- water
  32. 1, -- electric
  33. 1, -- grass
  34. 1, -- ice
  35. 1, -- fighting
  36. 1, -- poison
  37. 1, -- ground
  38. 1, -- flying
  39. 1, -- psychic
  40. 1, -- bug
  41. 1, -- rock
  42. 1, -- ghost
  43. 1, -- dragon
  44. 1, -- dark
  45. 1, -- steel
  46. 1 -- fairy
  47. }
  48. local Normal = {
  49. 1, -- none
  50. 1, -- normal
  51. 1, -- fire
  52. 1, -- water
  53. 1, -- electric
  54. 1, -- grass
  55. 1, -- ice
  56. 1, -- fighting
  57. 1, -- poison
  58. 1, -- ground
  59. 1, -- flying
  60. 1, -- psychic
  61. 1, -- bug
  62. nv, -- rock
  63. imm, -- ghost
  64. 1, -- dragon
  65. 1, -- dark
  66. nv, -- steel
  67. 1 -- fairy
  68. }
  69. local Fire = {
  70. 1, -- none
  71. 1, -- normal
  72. nv, -- fire
  73. nv, -- water
  74. 1, -- electric
  75. sup, -- grass
  76. sup, -- ice
  77. 1, -- fighting
  78. 1, -- poison
  79. 1, -- ground
  80. 1, -- flying
  81. 1, -- psychic
  82. sup, -- bug
  83. nv, -- rock
  84. 1, -- ghost
  85. nv, -- dragon
  86. 1, -- dark
  87. sup, -- steel
  88. 1 -- fairy
  89. }
  90. local Water = {
  91. 1, -- none
  92. 1, -- normal
  93. sup, -- fire
  94. nv, -- water
  95. 1, -- electric
  96. nv, -- grass
  97. 1, -- ice
  98. 1, -- fighting
  99. 1, -- poison
  100. sup, -- ground
  101. 1, -- flying
  102. 1, -- psychic
  103. 1, -- bug
  104. sup, -- rock
  105. 1, -- ghost
  106. nv, -- dragon
  107. 1, -- dark
  108. 1, -- steel
  109. 1 -- fairy
  110. }
  111. local Electric = {
  112. 1, -- none
  113. 1, -- normal
  114. 1, -- fire
  115. sup, -- water
  116. nv, -- electric
  117. nv, -- grass
  118. 1, -- ice
  119. 1, -- fighting
  120. 1, -- poison
  121. imm, -- ground
  122. sup, -- flying
  123. 1, -- psychic
  124. 1, -- bug
  125. 1, -- rock
  126. 1, -- ghost
  127. nv, -- dragon
  128. 1, -- dark
  129. 1, -- steel
  130. 1 -- fairy
  131. }
  132. local Grass = {
  133. 1, -- none
  134. 1, -- normal
  135. nv, -- fire
  136. sup, -- water
  137. 1, -- electric
  138. nv, -- grass
  139. 1, -- ice
  140. 1, -- fighting
  141. 1, -- poison
  142. sup, -- ground
  143. nv, -- flying
  144. 1, -- psychic
  145. nv, -- bug
  146. sup, -- rock
  147. 1, -- ghost
  148. nv, -- dragon
  149. 1, -- dark
  150. nv, -- steel
  151. 1 -- fairy
  152. }
  153. local Ice = {
  154. 1, -- none
  155. 1, -- normal
  156. nv, -- fire
  157. nv, -- water
  158. 1, -- electric
  159. sup, -- grass
  160. nv, -- ice
  161. 1, -- fighting
  162. 1, -- poison
  163. sup, -- ground
  164. sup, -- flying
  165. 1, -- psychic
  166. 1, -- bug
  167. 1, -- rock
  168. 1, -- ghost
  169. sup, -- dragon
  170. 1, -- dark
  171. nv, -- steel
  172. 1 -- fairy
  173. }
  174. local Fighting = {
  175. 1, -- none
  176. sup, -- normal
  177. 1, -- fire
  178. 1, -- water
  179. 1, -- electric
  180. 1, -- grass
  181. sup, -- ice
  182. 1, -- fighting
  183. nv, -- poison
  184. 1, -- ground
  185. nv, -- flying
  186. nv, -- psychic
  187. nv, -- bug
  188. sup, -- rock
  189. imm, -- ghost
  190. 1, -- dragon
  191. sup, -- dark
  192. sup, -- steel
  193. nv -- fairy
  194. }
  195. local Poison = {
  196. 1, -- none
  197. 1, -- normal
  198. 1, -- fire
  199. 1, -- water
  200. 1, -- electric
  201. sup, -- grass
  202. 1, -- ice
  203. 1, -- fighting
  204. nv, -- poison
  205. nv, -- ground
  206. 1, -- flying
  207. 1, -- psychic
  208. 1, -- bug
  209. nv, -- rock
  210. nv, -- ghost
  211. 1, -- dragon
  212. 1, -- dark
  213. imm, -- steel
  214. sup -- fairy
  215. }
  216. local Ground = {
  217. 1, -- none
  218. 1, -- normal
  219. sup, -- fire
  220. 1, -- water
  221. sup, -- electric
  222. nv, -- grass
  223. 1, -- ice
  224. 1, -- fighting
  225. sup, -- poison
  226. 1, -- ground
  227. imm, -- flying
  228. 1, -- psychic
  229. nv, -- bug
  230. sup, -- rock
  231. 1, -- ghost
  232. 1, -- dragon
  233. 1, -- dark
  234. sup, -- steel
  235. 1 -- fairy
  236. }
  237. local Flying = {
  238. 1, -- none
  239. 1, -- normal
  240. 1, -- fire
  241. 1, -- water
  242. nv, -- electric
  243. sup, -- grass
  244. 1, -- ice
  245. sup, -- fighting
  246. 1, -- poison
  247. 1, -- ground
  248. 1, -- flying
  249. 1, -- psychic
  250. sup, -- bug
  251. nv, -- rock
  252. 1, -- ghost
  253. 1, -- dragon
  254. 1, -- dark
  255. nv, -- steel
  256. 1 -- fairy
  257. }
  258. local Psychic = {
  259. 1, -- none
  260. 1, -- normal
  261. 1, -- fire
  262. 1, -- water
  263. 1, -- electric
  264. 1, -- grass
  265. 1, -- ice
  266. sup, -- fighting
  267. sup, -- poison
  268. 1, -- ground
  269. 1, -- flying
  270. nv, -- psychic
  271. 1, -- bug
  272. 1, -- rock
  273. 1, -- ghost
  274. 1, -- dragon
  275. imm, -- dark
  276. nv, -- steel
  277. 1 -- fairy
  278. }
  279. local Bug = {
  280. 1, -- none
  281. 1, -- normal
  282. nv, -- fire
  283. 1, -- water
  284. 1, -- electric
  285. sup, -- grass
  286. 1, -- ice
  287. nv, -- fighting
  288. nv, -- poison
  289. 1, -- ground
  290. nv, -- flying
  291. sup, -- psychic
  292. 1, -- bug
  293. nv, -- rock
  294. nv, -- ghost
  295. 1, -- dragon
  296. sup, -- dark
  297. nv, -- steel
  298. nv -- fairy
  299. }
  300. local Rock = {
  301. 1, -- none
  302. 1, -- normal
  303. sup, -- fire
  304. 1, -- water
  305. 1, -- electric
  306. nv, -- grass
  307. sup, -- ice
  308. nv, -- fighting
  309. 1, -- poison
  310. 1, -- ground
  311. sup, -- flying
  312. 1, -- psychic
  313. sup, -- bug
  314. nv, -- rock
  315. 1, -- ghost
  316. 1, -- dragon
  317. 1, -- dark
  318. nv, -- steel
  319. 1 -- fairy
  320. }
  321. local Ghost = {
  322. 1, -- none
  323. imm, -- normal
  324. 1, -- fire
  325. 1, -- water
  326. 1, -- electric
  327. 1, -- grass
  328. 1, -- ice
  329. 1, -- fighting
  330. 1, -- poison
  331. 1, -- ground
  332. 1, -- flying
  333. sup, -- psychic
  334. 1, -- bug
  335. 1, -- rock
  336. sup, -- ghost
  337. 1, -- dragon
  338. nv, -- dark
  339. 1, -- steel
  340. 1 -- fairy
  341. }
  342. local Dragon = {
  343. 1, -- none
  344. 1, -- normal
  345. 1, -- fire
  346. 1, -- water
  347. 1, -- electric
  348. 1, -- grass
  349. 1, -- ice
  350. 1, -- fighting
  351. 1, -- poison
  352. 1, -- ground
  353. 1, -- flying
  354. 1, -- psychic
  355. 1, -- bug
  356. 1, -- rock
  357. 1, -- ghost
  358. sup, -- dragon
  359. 1, -- dark
  360. nv, -- steel
  361. imm -- fairy
  362. }
  363. local Dark = {
  364. 1, -- none
  365. 1, -- normal
  366. 1, -- fire
  367. 1, -- water
  368. 1, -- electric
  369. 1, -- grass
  370. 1, -- ice
  371. nv, -- fighting
  372. 1, -- poison
  373. 1, -- ground
  374. 1, -- flying
  375. sup, -- psychic
  376. 1, -- bug
  377. 1, -- rock
  378. sup, -- ghost
  379. 1, -- dragon
  380. nv, -- dark
  381. 1, -- steel
  382. nv -- fairy
  383. }
  384. local Steel = {
  385. 1, -- none
  386. 1, -- normal
  387. nv, -- fire
  388. nv, -- water
  389. nv, -- electric
  390. 1, -- grass
  391. sup, -- ice
  392. 1, -- fighting
  393. 1, -- poison
  394. 1, -- ground
  395. 1, -- flying
  396. 1, -- psychic
  397. 1, -- bug
  398. sup, -- rock
  399. 1, -- ghost
  400. 1, -- dragon
  401. 1, -- dark
  402. nv, -- steel
  403. sup -- fairy
  404. }
  405. local Fairy = {
  406. 1, -- none
  407. 1, -- normal
  408. nv, -- fire
  409. 1, -- water
  410. 1, -- electric
  411. 1, -- grass
  412. 1, -- ice
  413. sup, -- fighting
  414. nv, -- poison
  415. 1, -- ground
  416. 1, -- flying
  417. 1, -- psychic
  418. 1, -- bug
  419. 1, -- rock
  420. 1, -- ghost
  421. sup, -- dragon
  422. sup, -- dark
  423. nv, -- steel
  424. 1 -- fairy
  425. }
Add Comment
Please, Sign In to add comment