File size: 3,117 Bytes
5c2ed06
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
export const Pokedex: import('../../../sim/dex-species').ModdedSpeciesDataTable = {
	gastly: {
		inherit: true,
		baseStats: { hp: 30, atk: 35, def: 30, spa: 70, spd: 35, spe: 60 },
		abilities: { 0: "Frisk", 1: "Protean", H: "Neutralizing Gas" },
	},
	swablu: {
		inherit: true,
		types: ["Fairy", "Flying"],
		baseStats: { hp: 45, atk: 45, def: 60, spa: 45, spd: 75, spe: 50 },
		abilities: { 0: "Natural Cure", 1: "Scrappy", H: "Pixilate" },
	},
	slugma: {
		inherit: true,
		baseStats: { hp: 30, atk: 40, def: 40, spa: 80, spd: 30, spe: 40 },
		abilities: { 0: "Flame Body", 1: "Weak Armor", H: "Magmatic Entrance" },
	},
	sprigatito: {
		inherit: true,
		baseStats: { hp: 40, atk: 65, def: 54, spa: 31, spd: 45, spe: 75 },
		abilities: { 0: "Overgrow", H: "Entertainer" },
	},
	dreepy: {
		inherit: true,
		baseStats: { hp: 41, atk: 60, def: 40, spa: 42, spd: 40, spe: 82 },
	},
	tepig: {
		inherit: true,
		types: ["Fire", "Ground"],
		baseStats: { hp: 65, atk: 63, def: 50, spa: 35, spd: 50, spe: 45 },
		abilities: { 0: "Blaze", H: "Sap Sipper" },
	},
	meowthgalar: {
		inherit: true,
		baseStats: { hp: 60, atk: 65, def: 65, spa: 40, spd: 40, spe: 40 },
		abilities: { 0: "Tough Claws", H: "Spiked Fur" },
	},
	toxel: {
		inherit: true,
		baseStats: { hp: 60, atk: 48, def: 55, spa: 64, spd: 55, spe: 40 },
		abilities: { 0: "Rattled", 1: "Static", H: "Pickpocket" },
	},
	fletchling: {
		inherit: true,
		types: ["Fire", "Flying"],
		baseStats: { hp: 45, atk: 50, def: 55, spa: 40, spd: 38, spe: 52 },
	},
	spoink: {
		inherit: true,
		types: ["Psychic", "Rock"],
		baseStats: { hp: 60, atk: 25, def: 35, spa: 70, spd: 75, spe: 70 },
		abilities: { 0: "Magic Resistance", 1: "Own Tempo", H: "Gluttony" },
	},
	cutiefly: {
		inherit: true,
		baseStats: { hp: 50, atk: 35, def: 50, spa: 50, spd: 50, spe: 25 },
		abilities: { 0: "Oblivious", 1: "Shield Dust", H: "Hover" },
	},
	shieldon: {
		inherit: true,
		abilities: { 0: "Sturdy", 1: "Battle Armor", H: "Stall" },
	},
	wooperpaldea: {
		inherit: true,
		baseStats: { hp: 55, atk: 65, def: 65, spa: 25, spd: 45, spe: 35 },
	},
	wooper: {
		inherit: true,
		baseStats: { hp: 55, atk: 65, def: 65, spa: 25, spd: 45, spe: 35 },
		abilities: { 0: "Damp", 1: "Go with the Flow" },
	},
	corphish: {
		inherit: true,
		types: ["Water", "Dark"],
		baseStats: { hp: 50, atk: 80, def: 65, spa: 50, spd: 35, spe: 46 },
		abilities: { 0: "Adaptability", 1: "Hyper Cutter", H: "Shell Armor" },
	},
	jangmoo: {
		inherit: true,
		types: ["Dragon", "Fairy"],
		baseStats: { hp: 65, atk: 65, def: 65, spa: 55, spd: 55, spe: 55 },
		abilities: { 0: "Bulletproof", 1: "Overcoat", H: "Marvel Scale" },
	},
	mareep: {
		inherit: true,
		types: ["Electric", "Grass"],
		baseStats: { hp: 55, atk: 40, def: 40, spa: 65, spd: 60, spe: 35 },
		abilities: { 0: "Static", H: "Fluffy Charger" },
	},
	cetoddle: {
		inherit: true,
		abilities: { 0: "Thick Fat", 1: "Sheer Force", H: "Sliding Whale" },
	},
	eevee: {
		inherit: true,
		baseStats: { hp: 60, atk: 55, def: 50, spa: 45, spd: 65, spe: 55 },
		abilities: { 0: "Run Away", 1: "Supreme Survivor", H: "Anticipation" },
	},
};