western-world 3.0.693 → 3.0.694
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/demo-templates/index.html +14 -4
- package/dist/index.js +1 -1
- package/package.json +1 -1
- package/src/svg/backgrounds/cactus-1.svg +52 -0
- package/src/svg/backgrounds/cactus-2.svg +27 -0
- package/src/svg/backgrounds/colony/colony-fish.svg +169 -0
- package/src/svg/backgrounds/colony/colony-waves.svg +123 -0
- package/src/svg/backgrounds/forest/forest.svg +1 -3
- package/src/{scss/backgrounds/progress.scss → svg/backgrounds/industrial-progress/industrial-progress.scss} +10 -10
- package/src/svg/backgrounds/industrial-progress/industrial-progress.svg +61 -0
- package/src/svg/backgrounds/skul.svg +47 -0
- package/src/svg/backgrounds/tree-1.svg +56 -0
- package/src/svg/backgrounds/tree-2.svg +67 -0
- package/src/svg/backgrounds/western-main-title.svg +95 -0
- package/src/svg/index.js +29 -11
- package/src/svg/backgrounds/background.svg +0 -1169
- package/src/svg/backgrounds/progress.svg +0 -31
- /package/src/svg/backgrounds/{desert.svg → desert/desert.svg} +0 -0
- /package/src/svg/{backgrounds → others}/slippery-path-snake.svg +0 -0
|
@@ -38,16 +38,26 @@
|
|
|
38
38
|
|
|
39
39
|
westernWorldEl.others = [
|
|
40
40
|
{ fileName: 'colony-background', x: 30, y: 135, size: 1045, onTopOfCells: false },
|
|
41
|
+
{ fileName: 'colony-arrow-clon-dike', x: 485, y: 750, size: 120, onTopOfCells: true },
|
|
42
|
+
{ fileName: 'colony-fish', x: 580, y: 200, size: 50, onTopOfCells: true },
|
|
43
|
+
{ fileName: 'colony-waves', x: 700, y: 200, size: 150, onTopOfCells: true },
|
|
41
44
|
{ fileName: 'start', x: 1420, y: 880, size: 450, onTopOfCells: false },
|
|
42
45
|
{ fileName: 'desert', x: 160, y: 1050, size: 700, onTopOfCells: false },
|
|
43
46
|
{ fileName: 'forest', x: 1045, y: 115, size: 490, onTopOfCells: false },
|
|
47
|
+
{ fileName: 'industrial-progress', x: 170, y: -520, size: 1000, onTopOfCells: false },
|
|
48
|
+
{ fileName: 'tree-1', x: 890, y: 280, size: 45, onTopOfCells: false },
|
|
49
|
+
{ fileName: 'tree-2', x: 860, y: 290, size: 60, onTopOfCells: false },
|
|
50
|
+
{ fileName: 'tree-1', x: 870, y: 210, size: 35, onTopOfCells: false },
|
|
51
|
+
{ fileName: 'tree-2', x: 840, y: 190, size: 35, onTopOfCells: false },
|
|
52
|
+
{ fileName: 'cactus-1', x: 60, y: 1150, size: 100, onTopOfCells: false },
|
|
53
|
+
{ fileName: 'cactus-2', x: 660, y: 1090, size: 70, onTopOfCells: false },
|
|
54
|
+
{ fileName: 'skul', x: 80, y: 1250, size: 80, onTopOfCells: false },
|
|
55
|
+
{ fileName: 'western-main-title', x: 960, y: 50, size: 1300, onTopOfCells: false },
|
|
44
56
|
|
|
45
57
|
{ fileName: 'colony-background-top-elements-leaves', x: 317, y: 360, size: 370, onTopOfCells: true },
|
|
46
58
|
{ fileName: 'colony-arrow-travel-agency-port-yankees', x: 440, y: 145, size: 160, onTopOfCells: true },
|
|
47
59
|
{ fileName: 'colony-arrow-mutiny-on-the-ship-desert-island', x: 665, y: 508, size: 190, onTopOfCells: true },
|
|
48
|
-
{ fileName: 'colony-arrow-pirates', x:
|
|
49
|
-
{ fileName: 'colony-arrow-clon-dike', x: 485, y: 750, size: 120, onTopOfCells: true },
|
|
50
|
-
|
|
60
|
+
{ fileName: 'colony-arrow-pirates', x: 780, y: 320, size: 170, onTopOfCells: true },
|
|
51
61
|
];
|
|
52
62
|
westernWorldEl.allCells = CELLS;
|
|
53
63
|
westernWorldEl.PADDING_LEFT = 500;
|
|
@@ -56,7 +66,7 @@
|
|
|
56
66
|
westernWorldEl.PADDING_BOTTOM = 500;
|
|
57
67
|
westernWorldEl.showWesternBackground = true;
|
|
58
68
|
westernWorldEl.SIZE_X_QUALITY = 3;
|
|
59
|
-
westernWorldEl.language = '
|
|
69
|
+
westernWorldEl.language = 'en';
|
|
60
70
|
westernWorldEl.playersIconMap = window['western-utils'].getPlayersIconsMap({ game: GAME_MOCK });
|
|
61
71
|
|
|
62
72
|
westernWorldEl.game = GAME_MOCK;
|