mirror of
https://gitlab.com/Deukhoofd/BattleSim.git
synced 2025-09-01 16:37:20 +00:00
Reworked all moves from Insurgence data files, resolving #53, and other move issues
This commit is contained in:
parent
67c81dd7e5
commit
60db98d9f8
@ -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
|
||||
|
||||
|
BIN
public/Sprites/Icons/icon330-armor.png
Normal file
BIN
public/Sprites/Icons/icon330-armor.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 17 KiB |
BIN
public/Sprites/Icons/icon330s-armor.png
Normal file
BIN
public/Sprites/Icons/icon330s-armor.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 17 KiB |
@ -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
@ -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
Loading…
x
Reference in New Issue
Block a user