more combos

This commit is contained in:
Mashy
2019-02-16 11:36:34 +10:00
parent 08cc37e2b7
commit b9b5132d67
3 changed files with 37 additions and 30 deletions
+2 -2
View File
@@ -38,7 +38,7 @@ class StatSheet extends Phaser.Scene {
this.forget = false;
this.add.text(WIDTH / 10, 0, cryp.name, TEXT.HEADER);
this.addStats(cryp);
// this.addStats(cryp);
this.addKnownSkills(cryp);
this.addLearnableSkills(cryp);
addButton(this, menuX, menuY, () => this.registry.set('crypSpec', cryp), 'Spec');
@@ -49,7 +49,7 @@ class StatSheet extends Phaser.Scene {
const cryp = data.find(c => c.id === this.cryp.id);
this.cryp = cryp;
this.addKnownSkills(cryp);
this.addStats(cryp);
// this.addStats(cryp);
}
}