|
@@ -1,7 +1,7 @@
|
|
|
import Phaser from "phaser";
|
|
|
-import logoImg from "../assets/twelveHeroes_cover.png";
|
|
|
+// import logoImg from "../assets/twelveHeroes_cover.png";
|
|
|
|
|
|
-function addCard(x, y, game,heroName,heroCost,heroPower,heroDesc) {
|
|
|
+function addCard(x, y, game, heroName, heroCost, heroPower, heroDesc) {
|
|
|
let textStyle = {
|
|
|
font: "normal 12px Arial",
|
|
|
fill: '#000000',
|
|
@@ -15,14 +15,11 @@ function addCard(x, y, game,heroName,heroCost,heroPower,heroDesc) {
|
|
|
let alpha = 1;
|
|
|
|
|
|
graphics.lineStyle(thickness, color, alpha);
|
|
|
- graphics.strokeRect(0, 0, 100, 160);
|
|
|
- let text = `${heroName}
|
|
|
- cost : ${heroCost}
|
|
|
- power : ${heroPower}
|
|
|
- ${heroDesc}`;
|
|
|
+ graphics.strokeRect(0, 0, 80, 120);
|
|
|
+ let text = `${heroName}\ncost : ${heroCost}\npower : ${heroPower}`;
|
|
|
let label = game.add.text(3, 3, text, textStyle);
|
|
|
label.setOrigin(0, 0);
|
|
|
- let container = game.add.container(x,y, [graphics, label]).setSize(5, 5);
|
|
|
+ let container = game.add.container(x, y, [graphics, label]).setSize(5, 5);
|
|
|
// container.setOrigin(0, 0);
|
|
|
}
|
|
|
|
|
@@ -33,16 +30,26 @@ export default class PhaserGameScene {
|
|
|
this.gameScene = new Phaser.Scene('Game');
|
|
|
|
|
|
this.gameScene.preload = function () {
|
|
|
- this.load.image("logo", logoImg);
|
|
|
+ // this.load.image("logo", logoImg);
|
|
|
|
|
|
};
|
|
|
|
|
|
this.gameScene.create = function () {
|
|
|
let i = 0;
|
|
|
+ let j = 0;
|
|
|
heroesSet.forEach(hero => {
|
|
|
+ let x = 10 + (i * 80) + 5;
|
|
|
+ let y = 10 + (j * 120) + 5;
|
|
|
+ addCard(x, y, this, hero.name, hero.cost, hero.power, hero.ability.description);
|
|
|
+ console.log(x,' ',y);
|
|
|
+ if (x >= 1040) {
|
|
|
+ i = 0;
|
|
|
+ j++;
|
|
|
+ } else {
|
|
|
+
|
|
|
+ i++;
|
|
|
+ }
|
|
|
|
|
|
- addCard(10+(i*100),10,this,hero.name,hero.cost,hero.power,hero.ability.description);
|
|
|
- i++;
|
|
|
});
|
|
|
};
|
|
|
|
|
@@ -50,7 +57,7 @@ export default class PhaserGameScene {
|
|
|
let config = {
|
|
|
type: Phaser.AUTO, //Phaser will decide how to render our game (WebGL or Canvas)
|
|
|
width: 1200, // game width
|
|
|
- height: 550, // game height
|
|
|
+ height: 500, // game height
|
|
|
scene: this.gameScene, // our newly created scene
|
|
|
backgroundColor: 'rgba(173,216,230 ,1 )'
|
|
|
};
|