Reworked all moves from Insurgence data files, resolving #53, and other move issues

This commit is contained in:
Deukhoofd 2016-03-07 22:54:52 +01:00
parent 67c81dd7e5
commit 60db98d9f8
7 changed files with 90915 additions and 68194 deletions

View File

@ -135,6 +135,8 @@ class @Pokemon extends Backbone.Model
# Map each move name to a move object
return _(learnset).map (moveName) ->
move = _(MoveData[moveName]).clone()
if typeof move is "undefined"
console.log(moveName)
move['name'] = moveName
move

Binary file not shown.

After

Width:  |  Height:  |  Size: 17 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 17 KiB

View File

@ -1693,6 +1693,9 @@
return _(learnset).map(function(moveName) {
var move;
move = _(MoveData[moveName]).clone();
if (typeof move === "undefined") {
console.log(moveName);
}
move['name'] = moveName;
return move;
});

File diff suppressed because one or more lines are too long

View File

@ -1693,6 +1693,9 @@
return _(learnset).map(function(moveName) {
var move;
move = _(MoveData[moveName]).clone();
if (typeof move === "undefined") {
console.log(moveName);
}
move['name'] = moveName;
return move;
});

File diff suppressed because it is too large Load Diff