ok
This commit is contained in:
Durvenson 2020-08-18 00:37:59 -04:00
parent 09e045f7a2
commit b8b8784bfd
6 changed files with 93 additions and 8231 deletions

View file

@ -40,6 +40,7 @@
<p>Stranomegaium added as the first country.</p>
<p>Pagvarz added (originally as Praviagz) and went under many name changes.</p>
<p>Cities and towns have been added to various countries.</p>
<p>8/13/2020: Server restarted completely; old countries were removed, and the map was reset.</p>
</div>
<h1 id="mainheader">
Stranalephium Cartography Service

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 674 KiB

After

Width:  |  Height:  |  Size: 674 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 20 KiB

View file

@ -0,0 +1,42 @@
html {
background: repeating-linear-gradient(45deg,rgb(30,30,64),rgb(30,30,64) 10px,rgb(60,60,30) 10px,rgb(60,60,30) 20px);
font-family: sans-serif;
color: #DDDDDD;
}
button {
font-family: sans-serif;
font-size: 20px;
background-color: rgb(60,60,128);
border: solid 5px rgb(128,128,60);
border-radius: 5px;
color: #DDDDDD;
}
.center {
position: relative;
left: 50%;
transform: translate(-50%, 0);
text-align: center;
}
.right {
position: absolute;
right: 0;
border: solid 5px #448888FF;
border-radius: 5px;
}
.img2 {
background: repeating-linear-gradient(45deg,#404d9c,#404d9c 10px,#263278 10px,#363278 20px);
border: solid 5px #448888FF;
border-radius: 5px;
}
.leftinfo {
position: fixed;
width: 200px;
height: 100%;
left: 0;
background-color: #663333;
z-index: 10;
overflow-y: auto;
}
h2, h1 {
text-align: center;
}

View file

@ -0,0 +1,33 @@
<head>
<title>
Revsca
</title>
<link rel="stylesheet" type="text/css" href="index.css">
</link>
</head>
<body>
<audio id="audio">
<source src="https://vgmdownloads.com/soundtracks/teenage-mutant-ninja-turtles-iv-turtles-in-time/hxqwnkeotz/04%20Big%20Apple%2C%203%20A.M..mp3" type="audio/mp3">
</audio>
<img src="NEWFLAG2.png" width="400px" height="300px" class="center img2"><br>
<button onclick="audio.play()" class="center">
Enable Audio
</button><br>
<button onclick='window.location.href = "https://scratch.mit.edu/studios/27352304/"' onmouseenter='select("studio")' class="center">
Scratch Studio
</button>
<h1 id="what">
So you are considering joining Strangigaium, huh?
</h1>
<div class="center">
Well, we offer an experience where you can either join or make cities. <br>
We also have a decent amount of biome diversity; we include various forests, deserts, savanas, mountains, etc.<br>
If you develop your cities enough, and you also have good amounts of resources, then you might get promoted to county leader (with approval from whatever province leader you have). <br>
Your duty will now be to make sure cities are developing, make sure people are getting resources and encouraging it via trade, etc.<br>
As time passes, if you develop your county enough, be well-off resource/trade-wise, and show that you are a good enough leader, then you can get upgraded to province leader. Your duty will now be to make sure county leaders are doing their job, to develop culture and theming in cities, etc.<br>
In addition to your previous leadership, you may also request to lead another country/province, although it is suggested you stick with one in order to not have to direct your management all over the place. Also, it will be unlikely you will even get your role in the first place due to a serious need of active citizens.<br>
Our capital, Neo-Davua is at 2222, -626, which is only around 8 minutes from spawn (if you take the Azuronia railroad in the Akkadia station, then go to Neo-Davua from there.) There are closer places however (1344, -148 is in Strangigaium and is only 5 minutes away, but only has a small town called "Vejowches".)<br>
TL;DR Strangigaium is a decently close to spawn nation that offers a system where you can make/join cities in various biomes and if you work hard enough, you can get leveled up to county or province leader. Like such an experience? Then join our nation today! Just ask to join in the Strangigaium Studio, and you will probably get accepted.
</div>
<script src="index.js"></script>
</body>

View file

@ -0,0 +1,10 @@
var isPlaying = false;
var audio = document.getElementById("audio");
var img = document.getElementById("img");
audio.loop = true;
function noExist() {
window.alert("lol this doesn't exist yet")
}
function select(thing) {
img.src = thing + ".png";
}