pokemon-showdown/data
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
..
abilities.js Fix Trace 2017-02-18 23:04:28 -05:00
aliases.js Add Pokestar Studios SFX props and actors (#3205) 2017-02-19 16:17:06 -06:00
factory-sets.json Battle Factory: Huge Ubers update 2016-09-09 07:00:39 -05:00
formats-data.js Fix Typo (#3273) 2017-02-21 23:21:25 +04:00
items.js Release Mewnium Z 2017-01-25 07:30:06 +04:00
learnsets.js Validator: Support Gen 1 Virtual Console moves 2017-02-23 05:23:14 -06:00
moves.js Update move descriptions 2017-02-17 19:48:31 -05:00
pokedex.js Fix Smeargle forme name 2017-02-19 20:56:35 -06:00
rulesets.js Update Ability Clause to also check for Variants (#3269) 2017-02-22 23:48:55 +04:00
scripts.js Random Battle: Reject Sheer Force Conkeldurr (#3277) 2017-02-23 02:04:28 -06:00
statuses.js Correct crit ratio boosting Z-Effect 2016-12-18 11:06:55 -05:00
typechart.js Implement immunity of Dark-types to Prankster 2016-11-18 00:35:52 -05:00