Commit Graph

387 Commits

Author SHA1 Message Date
Marty-D
cda2993da4 Add event Alolan Vulpix 2017-07-04 16:43:20 -04:00
sparktrain
0901b435e6 Learnsets: Add missing CAP moves (#3728) 2017-07-04 23:46:36 +04:00
Marty-D
c8da812411 Learnsets: Update CAP 2017-07-03 22:47:14 -04:00
Ivo Julca
a83c149536 CAP: Fix typo in Kitsunoh learnset update 2017-07-03 10:38:56 -05:00
Marty-D
b51e138768 Add event Marshadow
Closes #3718
2017-07-03 09:33:48 -04:00
Marty-D
e4fd71c257 Update CAP with Gen 7 changes 2017-07-02 20:29:50 -04:00
Marty-D
4f01e36845 Add event Arcanine 2017-07-01 10:13:27 -04:00
Marty-D
b6b9f4db81 Add event Victini 2017-06-30 08:35:35 -04:00
Marty-D
d929c97fab Learnsets: Fix Gen III tutor moves 2017-06-29 18:37:13 -04:00
Marty-D
a7abf9e88c Add event Turtonator 2017-06-27 16:51:39 -04:00
Ivo Julca
fe34732592 CAP: Fix typo in Argalis' learnset 2017-06-25 03:12:32 -05:00
Slayer95
47641dc736 Gen 5: Update Bronzor family level-up moves to BW2 (#3690) 2017-06-25 09:41:34 +04:00
Marty-D
54067ecc06 Learnsets: Fix Gen IV tutor moves 2017-06-22 23:22:31 -04:00
urkerab
e7395c2228 Munchlax learns Superpower as a Tutor move in Gen 4 (#3677) 2017-06-23 06:16:18 +04:00
Marty-D
6985f9af6d Fix Duskull's learnset 2017-06-17 15:51:01 -04:00
Marty-D
391ef77e66 Add event Steenee 2017-06-17 09:38:34 -04:00
Marty-D
77e9053dfe Add new event Pokemon 2017-05-14 10:28:16 -04:00
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
Marty-D
eb91d21278 Add event Gardevoir 2016-06-18 10:21:02 -04:00
Marty-D
52f8da59f6 Add event Miltank 2016-06-07 10:19:07 -04:00
Marty-D
e7ada959de Add latest event Pokemon
- Plus remove unnecessary gender from genie events
2016-05-31 23:16:47 -04:00
The Immortal
860a7ec331 Fix Gyarados event 2016-05-29 03:37:50 +04:00
Marty-D
f3e9949c50 Add event Machamp 2016-05-21 12:57:49 -04:00
Marty-D
cbc7df556e Update Gen 5 events 2016-05-16 12:40:32 -04:00
Marty-D
13c3f14f1f Add/update miscellaneous Gen 4 events 2016-05-15 21:39:49 -04:00
Marty-D
0e01110416 Update Pokémon XD events 2016-05-15 20:18:35 -04:00
Marty-D
a1d692d508 Update JEREMY event Pokemon 2016-05-15 17:37:47 -04:00
QuiteQuiet
b1569da634 Add event Vivillon formes (#2262) 2016-05-12 11:50:59 -07:00
The Immortal
289f267f7a Fix Kyurem formes 2016-05-10 15:44:54 +04:00
The Immortal
bf6af81be8 Add missing gen 4 events 2016-05-10 05:15:54 +04:00
The Immortal
5db51a7091 Add in-game event data
And flag those as event only. This provides a more accurate database,
and some other flags are no longer needed.
2016-05-10 04:48:14 +04:00
The Immortal
086cdf3eca Update gen 3 events
Some more possibly shiny stuff, plus missing Zigzagoon move.
2016-05-09 15:52:40 +04:00
The Immortal
7e33b0a855 Update Pokemon data
- Remove unneeded data
- Remove duplicate events
- Add possibly shiny gen 3 events
2016-05-08 21:27:28 +04:00
The Immortal
e8c8632805 Update Darkrai events
- Remove duplicate possibly shiny event
- Add new event
2016-05-08 02:52:37 +04:00
The Immortal
0a5dfd649e Set possible shiny events
This prevents having duplicate events for cases where it’s possible to
obtain both shiny and non-shiny.
2016-05-08 02:29:02 +04:00
The Immortal
778355fc94 Update gen 5 egg events 2016-05-08 01:01:28 +04:00
The Immortal
ad99ac6cb8 Add new events 2016-04-30 01:27:06 +04:00
The Immortal
943c0c1048 Release Volcanion 2016-04-15 20:04:39 +04:00
The Immortal
9449131156 Add event Jirachi 2016-04-01 16:32:09 +04:00
The Immortal
03565b3f65 Add event Ho-Oh 2016-03-20 18:34:17 +04:00
Marty-D
324c3768bd Add Mareep event 2016-03-18 12:23:34 -04:00
Marty-D
3237960fad Add Bestow Pikachu and update Gen 6 events 2016-03-17 23:28:57 -04:00
The Immortal
d49ca20a90 Add event Dragonite 2016-03-16 00:53:41 +04:00
Marty-D
1179e512e9 Add Hidden Ability Regi events 2016-03-03 15:47:18 -05:00
The Immortal
cb7f801a19 Add new events 2016-03-01 22:09:30 +04:00
The Immortal
bee0e4b287 Add Pikachu event 2016-02-22 15:35:17 +04:00
The Immortal
f8e27d3b3a Optimize learnsets
Now sorted from latest gen to oldest gen. Ordered by machine, tutor,
level up, egg, event, and dream world.
2016-02-12 19:30:31 +04:00
The Immortal
98cb0caf5c Add new event Pokemon 2016-02-06 07:00:05 +04:00
Marty-D
f248d191d5 Add shiny Jirachi, Darkrai, and Shaymin events
- Darkrai and Shaymin could be caught in the wild in Gen 4.
- WISHMKR Jirachi has a very small chance to be shiny (but only 9
possible Natures).
2016-01-21 18:56:33 -05:00
The Immortal
0318c85bfd Add new Pokemon events 2016-01-20 21:10:58 +04:00
Marty-D
b7d3ce40e7 Add CAP 21: Crucibelle 2016-01-11 18:55:05 -05:00