Commit Graph

320 Commits

Author SHA1 Message Date
Marty-D
9948a0123f Add new event Pokemon 2017-05-05 11:23:58 -04:00
Marty-D
508081ee32 Add new event Pokemon 2017-05-02 11:26:33 -04:00
Marty-D
feba315e31 Add event Bewear 2017-04-15 15:22:16 -04:00
Marty-D
5a8bbe2750 Learnsets: Remove accidental tutor move 2017-03-29 19:33:06 -04:00
Marty-D
0d3f254e85 Split Magearna formes 2017-03-29 12:06:44 -04:00
Marty-D
856b41e5d0 Add cap Pikachu formes 2017-03-29 12:04:03 -04:00
Marty-D
12002e6523 Implement CAP prevos 2017-03-27 17:54:14 -04:00
Marty-D
8335212801 Add new event Pokemon 2017-03-18 17:05:47 -04:00
Marty-D
3b8c74a01f Add event Tapu Koko 2017-03-16 21:10:41 -04:00
Marty-D
5d5879c1c2 Add event Charizard 2017-03-15 11:19:26 -04:00
Marty-D
ce04aafbbe Add event Pikachu 2017-03-11 09:54:27 -05:00
Guangcong Luo
54df5c857d Validator: Support Gen 1 Virtual Console moves
This adds validator support for Gen 1 Virtual Console moves.

Fixes #3208

If anyone wants the quick-and-dirty eval script I used to update
Learnsets:

```
Object.entries(Tools.mod('gen1').data.Learnsets).forEach(([speciesid, lset]) => {
	Object.entries(lset.learnset).forEach(([moveid, sources]) => {
		if (sources.some(s => s.startsWith('1L') || s.startsWith('1M'))) {
			let newLset = Tools.data.Learnsets[speciesid].learnset;
			if (!newLset[moveid]) newLset[moveid] = [];
			let i = 0;
			while (i < newLset[moveid].length && newLset[moveid][i].startsWith('7')) i++;
			newLset[moveid].splice(i, 0, '7V');
		}
	})
})
```
2017-02-23 05:23:14 -06:00
Guangcong Luo
6e4f1cfb35 Remove Pokestar learnsets
The Pokestar learnsets cause client build errors because they refer to
nonexistent Pokedex entries, so they need to be removed.
2017-02-20 03:21:40 -06:00
MacChaeger
05a140b671 Add Pokestar Studios SFX props and actors (#3205) 2017-02-19 16:17:06 -06:00
Marty-D
019f844e0e Add event Machamp 2017-02-14 21:27:00 -05:00
Marty-D
88de7926a9 Add event Magikarp 2017-01-27 11:37:03 -05:00
The Immortal
45f16507c3 Revert "Learnsets: Pretend egg moves from Island Scan are tutor moves"
This reverts commit 557353ab61.
2017-01-25 07:50:17 +04:00
Marty-D
ff24df8637 Update event Pokemon 2016-12-30 14:36:13 -05:00
Marty-D
6a726fb859 Add new event Pokemon 2016-12-15 15:15:17 -05:00
Marty-D
557353ab61 Learnsets: Pretend egg moves from Island Scan are tutor moves
To be reverted once Bank is updated.
2016-12-12 21:34:57 -05:00
Marty-D
871cb25529 Learnsets: Correct SM tutor moves
Pledges and "Elemental Beams" were reversed
2016-12-11 20:38:45 -05:00
Guangcong Luo
4586f0c91a Re-fix egg moves
Egg moves were accidentally broken in previous fix commit. This one
properly does them.
2016-12-07 03:46:43 -06:00
Guangcong Luo
a11f836fc0 Fix egg move learnsets
Project Pokemon gave a learnset file with egg moves for all evolutions.
The issue with Pikachu having egg moves listed that only Pichu gets was
fixed, but not the issue that Raichu has egg moves at all. That has
been fixed in this commit.
2016-12-06 19:16:46 -06:00
The Immortal
97f87190d1 Add Aura Break Zygarde event data
Fixes #2962
2016-11-30 01:02:07 +04:00
Spandan
1f452c34ee Add Volt Tackle as Tutor move (#2961) 2016-11-29 13:07:59 -06:00
Marty-D
f2c3f18835 Add event Munchlax 2016-11-27 18:35:15 -05:00
The Immortal
6668779f55 Add Ash-Greninja event data 2016-11-27 22:40:24 +04:00
The Immortal
1993d54e8b Ash-Greninja is a separate Pokemon
It is a separate Pokemon in-game. It can’t learn egg moves, can’t be
bred, and can only have Battle Bond.
2016-11-27 21:49:26 +04:00
The Immortal
ef946414e8 Remove Pumpkaboo-Super learnset
This is unneeded because they are just level up moves. Having this
means adding exceptions in multiple places.
2016-11-26 14:08:51 +04:00
Guangcong Luo
b8f814cc90 Cut down Rotom learnsets
Rotom formes inherit their learnsets from Rotom, so they don't need to
be duplicated.
2016-11-25 22:20:01 -06:00
The Immortal
2f4059b8ec Add event Type: Null to learnsets 2016-11-20 22:18:00 +04:00
The Immortal
c0a47359f6 Add Zygarde and Magearna event learnsets 2016-11-20 18:21:44 +04:00
Marty-D
6186026acf Add Zygarde tutor moves 2016-11-19 09:41:34 -05:00
The Immortal
42558bc6c8 Sort learnsets alphabetically 2016-11-18 17:40:11 +04:00
Marty-D
7258ad0ced Add new event Pokemon 2016-11-17 18:18:45 -05:00
Marty-D
339aa9d071 Fix Gen 7 egg moves 2016-11-17 17:37:43 -05:00
Guangcong Luo
42a52bf773 Rearrange learnsets to proper order 2016-11-17 15:45:48 -06:00
Guangcong Luo
ad0973f883 Gen 7 learnsets! 2016-11-17 15:26:23 -06:00
Guangcong Luo
8931257098 Stub gen 7 learnsets
This is now the complete stub for gen 7 learnsets, removing Oricorio
and adding the Alolan formes.
2016-11-17 15:00:48 -06:00
Guangcong Luo
f01c1f8d01 Stub gen 7 learnsets
This will make it easier to reset any damage done by the import script
I'll plan to run momentarily.
2016-11-17 12:32:11 -06:00
Marty-D
4b2491eda8 Add new event Pokemon 2016-11-05 18:34:27 -04:00
Marty-D
225ce590d0 Add new event Pokemon 2016-10-20 16:15:36 -04:00
Marty-D
9c714a256a Add new event Pokemon 2016-10-02 14:28:32 -04:00
Marty-D
024ab955d3 Add CAP 22: Kerfluffle 2016-09-27 19:53:37 -04:00
Marty-D
1f22312e70 Add new event Pokemon 2016-09-07 19:29:56 -04:00
Marty-D
cf5f042ecd Add new event Pokemon 2016-08-23 15:52:30 -04:00
Marty-D
c8e085debd Fix special Mew tutor moves from Pokémon XD
They are more comparable to event moves since the Mew tutor deletes the
current moveset before a new set of 4 moves is learned (from a pool of
100 moves), only one of which can be Fake Out, Feint Attack, Hypnosis,
Night Shade, Role Play, or Zap Cannon. The other 94 moves are all
learnable through the standard XD move tutor or from other Gen 3 games.
2016-08-09 18:43:15 -04:00
Marty-D
c8c8a9bac1 Add event Garchomp 2016-08-02 16:37:35 -04:00
Marty-D
db9f18dced Add new events 2016-07-11 20:43:20 -04:00
Marty-D
420a3cf2a0 Add new events 2016-07-02 09:33:53 -04:00