File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ {
2+ "name" : " Alps" ,
3+ "nations" : [
4+ {
5+ "coordinates" : [740 , 620 ],
6+ "name" : " Savoy" ,
7+ "flag" : " fr"
8+ },
9+ {
10+ "coordinates" : [980 , 580 ],
11+ "name" : " Switzerland" ,
12+ "flag" : " ch"
13+ },
14+ {
15+ "coordinates" : [1220 , 560 ],
16+ "name" : " Tyrol" ,
17+ "flag" : " at"
18+ },
19+ {
20+ "coordinates" : [980 , 820 ],
21+ "name" : " Lombardy" ,
22+ "flag" : " it"
23+ },
24+ {
25+ "coordinates" : [1180 , 820 ],
26+ "name" : " Veneto" ,
27+ "flag" : " venice"
28+ },
29+ {
30+ "coordinates" : [1320 , 690 ],
31+ "name" : " Bavaria" ,
32+ "flag" : " de"
33+ },
34+ {
35+ "coordinates" : [1450 , 820 ],
36+ "name" : " Slovenia" ,
37+ "flag" : " si"
38+ },
39+ {
40+ "coordinates" : [1100 , 650 ],
41+ "name" : " Liechtenstein" ,
42+ "flag" : " li"
43+ }
44+ ]
45+ }
Original file line number Diff line number Diff line change @@ -25,6 +25,7 @@ var maps = []struct {
2525 {Name : "asia" },
2626 {Name : "australia" },
2727 {Name : "achiran" },
28+ {Name : "alps" },
2829 {Name : "baikal" },
2930 {Name : "baikalnukewars" },
3031 {Name : "betweentwoseas" },
@@ -63,7 +64,7 @@ var maps = []struct {
6364 {Name : "world" },
6465 {Name : "lemnos" },
6566 {Name : "twolakes" },
66- {Name : "thebox" },
67+ {Name : "thebox" },
6768 {Name : "didier" },
6869 {Name : "didierfrance" },
6970 {Name : "amazonriver" },
Original file line number Diff line number Diff line change 329329 "didierfrance" : " Didier (France)" ,
330330 "amazonriver" : " Amazon River" ,
331331 "tradersdream" : " Traders Dream" ,
332- "hawaii" : " Hawaii"
332+ "hawaii" : " Hawaii" ,
333+ "alps" : " Alps"
333334 },
334335 "map_categories" : {
335336 "featured" : " Featured" ,
Original file line number Diff line number Diff line change 1+ {
2+ "map" : {
3+ "height" : 1836 ,
4+ "num_land_tiles" : 3672000 ,
5+ "width" : 2000
6+ },
7+ "map16x" : {
8+ "height" : 459 ,
9+ "num_land_tiles" : 229500 ,
10+ "width" : 500
11+ },
12+ "map4x" : {
13+ "height" : 918 ,
14+ "num_land_tiles" : 918000 ,
15+ "width" : 1000
16+ },
17+ "name" : " Alps" ,
18+ "nations" : [
19+ {
20+ "coordinates" : [740 , 620 ],
21+ "flag" : " fr" ,
22+ "name" : " Savoy"
23+ },
24+ {
25+ "coordinates" : [980 , 580 ],
26+ "flag" : " ch" ,
27+ "name" : " Switzerland"
28+ },
29+ {
30+ "coordinates" : [1220 , 560 ],
31+ "flag" : " at" ,
32+ "name" : " Tyrol"
33+ },
34+ {
35+ "coordinates" : [980 , 820 ],
36+ "flag" : " it" ,
37+ "name" : " Lombardy"
38+ },
39+ {
40+ "coordinates" : [1180 , 820 ],
41+ "flag" : " venice" ,
42+ "name" : " Veneto"
43+ },
44+ {
45+ "coordinates" : [1320 , 690 ],
46+ "flag" : " de" ,
47+ "name" : " Bavaria"
48+ },
49+ {
50+ "coordinates" : [1450 , 820 ],
51+ "flag" : " si" ,
52+ "name" : " Slovenia"
53+ },
54+ {
55+ "coordinates" : [1100 , 650 ],
56+ "flag" : " li" ,
57+ "name" : " Liechtenstein"
58+ }
59+ ]
60+ }
Load Diff Large diffs are not rendered by default.
Load Diff Large diffs are not rendered by default.
Load Diff Large diffs are not rendered by default.
Original file line number Diff line number Diff line change @@ -61,7 +61,7 @@ export class WinModal extends LitElement implements Layer {
6161 return html `
6262 < div
6363 class ="${ this . isVisible
64- ? "fixed top-1/2 left-1/2 -translate-x-1/2 -translate-y-1/2 bg-gray-800/70 p-6 shrink-0 rounded-lg z-9999 shadow-2xl backdrop-blur-xs text-white w-87.5 max-w-[90%] md:w-175 animate-fadeIn "
64+ ? "fixed top-1/2 left-1/2 -translate-x-1/2 -translate-y-1/2 bg-gray-800/70 p-6 shrink-0 rounded-lg z-9999 shadow-2xl backdrop-blur-xs text-white w-87.5 max-w-[90%] md:w-175"
6565 : "hidden" } "
6666 >
6767 < h2 class ="m-0 mb-4 text-[26px] text-center text-white ">
@@ -99,23 +99,6 @@ export class WinModal extends LitElement implements Layer {
9999 </ button >
100100 </ div >
101101 </ div >
102-
103- < style >
104- @keyframes fadeIn {
105- from {
106- opacity : 0 ;
107- transform : translate (-50% , -48% );
108- }
109- to {
110- opacity : 1 ;
111- transform : translate (-50% , -50% );
112- }
113- }
114-
115- .animate-fadeIn {
116- animation : fadeIn 0.3s ease-out;
117- }
118- </ style >
119102 ` ;
120103 }
121104
You can’t perform that action at this time.
0 commit comments