map11
This commit is contained in:
parent
a2e0ee37ee
commit
3e23b8dbcc
3 changed files with 5 additions and 2 deletions
BIN
public_html/assets/map/map11.jpg
Normal file
BIN
public_html/assets/map/map11.jpg
Normal file
Binary file not shown.
After Width: | Height: | Size: 210 KiB |
|
@ -83,7 +83,8 @@ let maps = [new Game_Map(portals.slice(0,8),0,map0Squares,[]),
|
||||||
new Game_Map(portals.slice(15,16),7,map7Squares,map7Circles),
|
new Game_Map(portals.slice(15,16),7,map7Squares,map7Circles),
|
||||||
new Game_Map(portals.slice(16,19),8,map8Squares,map8Circles),
|
new Game_Map(portals.slice(16,19),8,map8Squares,map8Circles),
|
||||||
new Game_Map(portals.slice(19,20),9,map9Squares,[]),
|
new Game_Map(portals.slice(19,20),9,map9Squares,[]),
|
||||||
new Game_Map(portals.slice(20,21),10,map10Squares,map10Circles)];
|
new Game_Map(portals.slice(20,21),10,map10Squares,map10Circles),
|
||||||
|
new Game_Map([],11,[],[])];
|
||||||
|
|
||||||
players.push(new Player(-1,-50,-50,-1,"VOITURES",0));
|
players.push(new Player(-1,-50,-50,-1,"VOITURES",0));
|
||||||
|
|
||||||
|
|
|
@ -18,6 +18,7 @@ const map7 = new Image();
|
||||||
const map8 = new Image();
|
const map8 = new Image();
|
||||||
const map9 = new Image();
|
const map9 = new Image();
|
||||||
const map10 = new Image();
|
const map10 = new Image();
|
||||||
|
const map11 = new Image();
|
||||||
const orange_portal = new Image();
|
const orange_portal = new Image();
|
||||||
const blue_portal = new Image();
|
const blue_portal = new Image();
|
||||||
const portal = new Image();
|
const portal = new Image();
|
||||||
|
@ -38,11 +39,12 @@ map7.src = "./assets/map/map7.jpg";
|
||||||
map8.src = "./assets/map/map8.jpg";
|
map8.src = "./assets/map/map8.jpg";
|
||||||
map9.src = "./assets/map/map9.jpg";
|
map9.src = "./assets/map/map9.jpg";
|
||||||
map10.src = "./assets/map/map10.jpg";
|
map10.src = "./assets/map/map10.jpg";
|
||||||
|
map10.src = "./assets/map/map11.jpg";
|
||||||
orange_portal.src = "./assets/orange_portal.webp";
|
orange_portal.src = "./assets/orange_portal.webp";
|
||||||
blue_portal.src = "./assets/blue_portal.webp";
|
blue_portal.src = "./assets/blue_portal.webp";
|
||||||
portal.src = "./assets/portal.png";
|
portal.src = "./assets/portal.png";
|
||||||
|
|
||||||
const mapImages = [map0,map1,map2,map3, map4, map5, map6, map7, map8, map9, map10];
|
const mapImages = [map0,map1,map2,map3, map4, map5, map6, map7, map8, map9, map10, map11];
|
||||||
|
|
||||||
class Render {
|
class Render {
|
||||||
constructor(idCanvas) {
|
constructor(idCanvas) {
|
||||||
|
|
Loading…
Reference in a new issue