Compare commits

...

3 commits

Author SHA1 Message Date
ShadowOfHassen
77fba72588 Added ruins 2026-08-09 18:52:49 -04:00
ShadowOfHassen
4057d2f1d1 Add treasure history entries 2026-08-09 16:14:46 -04:00
ShadowOfHassen
a28dfac1c4 Add generic text attribute to credit json parser 2026-08-09 16:14:46 -04:00
53 changed files with 172 additions and 1 deletions

View file

@ -8,6 +8,7 @@ var g_OrderTabNames = [
"audio", "audio",
"maps", "maps",
"history", "history",
"encylopedia",
"balancing", "balancing",
"community", "community",
"translators", "translators",
@ -94,7 +95,8 @@ function parseHelper(list)
credit = element.nick; credit = element.nick;
else if (element.name) else if (element.name)
credit = element.name; credit = element.name;
else if (element.text)
credit = element.text;
if (credit) if (credit)
result += setStringTags(credit + "\n", { "font": "sans-14" }); result += setStringTags(credit + "\n", { "font": "sans-14" });
} }

View file

@ -0,0 +1,15 @@
{
"Title": "Encylopedia & Writings",
"Content": [
{
"Title": "Ruins",
"List": [
{ "text":" Nathanael K. Stottlemyer - ShadowOfHassen "}
],
"Title": "Treasures",
"List": [
{ "text":" Nathanael K. Stottlemyer - ShadowOfHassen. Refrenced \"Usborn Illustrated Guide to Greek Myths & Legends\" by Cheryl Evans & Dr. Anne, published November 2007 " }
]
}
]
}

View file

@ -6,6 +6,9 @@
</Footprint> </Footprint>
<Identity> <Identity>
<SpecificName>Doric Column</SpecificName> <SpecificName>Doric Column</SpecificName>
<History>
A ruined Doric column that fell off of some building. There is little else to do but reuse the materials.
</History>
</Identity> </Identity>
<ResourceSupply> <ResourceSupply>
<Max>500</Max> <Max>500</Max>

View file

@ -8,6 +8,9 @@
<Civ>gaia</Civ> <Civ>gaia</Civ>
<SpecificName>Apollo</SpecificName> <SpecificName>Apollo</SpecificName>
<Icon>gaia/geology_metal.png</Icon> <Icon>gaia/geology_metal.png</Icon>
<History>
A metal satue of the greek god Apollo. It is a nice statue, but could be also turned into some metal for one of your own projects.
</History>
</Identity> </Identity>
<Obstruction> <Obstruction>
<Static width="7.0" depth="7.0"/> <Static width="7.0" depth="7.0"/>

View file

@ -8,6 +8,9 @@
<Civ>gaia</Civ> <Civ>gaia</Civ>
<SpecificName>Caryatid Statue</SpecificName> <SpecificName>Caryatid Statue</SpecificName>
<Icon>gaia/geology_metal.png</Icon> <Icon>gaia/geology_metal.png</Icon>
<History>
This is a Caryatid, a carved satuue that is used as a collumn to support a building. it is now freestanding and its metal could be used for something nice, maybe some swords?
</History>
</Identity> </Identity>
<Obstruction> <Obstruction>
<Static depth="4.0" width="4.0"/> <Static depth="4.0" width="4.0"/>

View file

@ -7,6 +7,9 @@
<Identity> <Identity>
<SpecificName>Discobolus</SpecificName> <SpecificName>Discobolus</SpecificName>
<Icon>gaia/geology_metal.png</Icon> <Icon>gaia/geology_metal.png</Icon>
<History>
This is a metal reproduction of the Discobolus, a famous statue by Myron made. It depects a greek athlete throwing a discus.
</History>
</Identity> </Identity>
<Obstruction> <Obstruction>
<Static width="7.0" depth="7.0"/> <Static width="7.0" depth="7.0"/>

View file

@ -8,6 +8,9 @@
<Civ>gaia</Civ> <Civ>gaia</Civ>
<SpecificName>Isis Cult Image</SpecificName> <SpecificName>Isis Cult Image</SpecificName>
<Icon>gaia/geology_metal.png</Icon> <Icon>gaia/geology_metal.png</Icon>
<History>
A great metal statue of Isis, the Egyptian mother goddess. Its nice if you like that sort of thing, but the material probably could be put to better use.
</History>
</Identity> </Identity>
<Obstruction> <Obstruction>
<Static width="7.5" depth="7.5"/> <Static width="7.5" depth="7.5"/>

View file

@ -7,6 +7,9 @@
<Identity> <Identity>
<SpecificName>Poseidon</SpecificName> <SpecificName>Poseidon</SpecificName>
<Icon>gaia/geology_metal.png</Icon> <Icon>gaia/geology_metal.png</Icon>
<History>
A metal statue of Poseidon, the greek god of the sea. It is a nice statue, but could be also turned into some metal for one of your own projects.
</History>
</Identity> </Identity>
<Obstruction> <Obstruction>
<Static width="7.0" depth="7.0"/> <Static width="7.0" depth="7.0"/>

View file

@ -8,6 +8,9 @@
<Civ>gaia</Civ> <Civ>gaia</Civ>
<SpecificName>Capitoline Wolf</SpecificName> <SpecificName>Capitoline Wolf</SpecificName>
<Icon>gaia/geology_metal.png</Icon> <Icon>gaia/geology_metal.png</Icon>
<History>
A metal statue depecting wolf that, according to legend, nursed Romulus and Remus, the brothers who built Rome.
</History>
</Identity> </Identity>
<Obstruction> <Obstruction>
<Static width="14.0" depth="8.0"/> <Static width="14.0" depth="8.0"/>

View file

@ -7,6 +7,9 @@
<Identity> <Identity>
<SpecificName>Great Pyramid</SpecificName> <SpecificName>Great Pyramid</SpecificName>
<Icon>gaia/geology_stone_1.png</Icon> <Icon>gaia/geology_stone_1.png</Icon>
<History>
This construction is a masterpiece of technology and architecture. Only countless years of intense labor and vast amounts of wealth could be spent to produce such a building. If left untouched, this pyramid will become a symbol; a monument to an ancient civilization,displaying their greatest achievements. But it is an awful lot of stone to just lie there undisturbed. Surely, youd be able to use it to build something better?
</History>
</Identity> </Identity>
<Obstruction> <Obstruction>
<Static width="59.0" depth="59.0"/> <Static width="59.0" depth="59.0"/>

View file

@ -7,6 +7,9 @@
<Identity> <Identity>
<SpecificName>Minor Pyramid</SpecificName> <SpecificName>Minor Pyramid</SpecificName>
<Icon>gaia/geology_stone_1.png</Icon> <Icon>gaia/geology_stone_1.png</Icon>
<History>
Here stands a monument and tomb for some great person. It also is precisely where you wanted to build and so will have to be moved.
</History>
</Identity> </Identity>
<Obstruction> <Obstruction>
<Static width="34.0" depth="34.0"/> <Static width="34.0" depth="34.0"/>

View file

@ -6,6 +6,9 @@
</Footprint> </Footprint>
<Identity> <Identity>
<SpecificName>Roman Rostrum</SpecificName> <SpecificName>Roman Rostrum</SpecificName>
<History>
A rostrum is a large stone platform used for people giving speeches. A rostrum such as this one would be uused in the period of the Roman republic for senators to give speeches.
</History>
</Identity> </Identity>
<Obstruction> <Obstruction>
<Static width="34.0" depth="16.0"/> <Static width="34.0" depth="16.0"/>

View file

@ -6,6 +6,9 @@
</Footprint> </Footprint>
<Identity> <Identity>
<SpecificName>Celtic Standing Stone</SpecificName> <SpecificName>Celtic Standing Stone</SpecificName>
<History>
A Celtic stone inscribed with mysterious markings. What could it be, a property marker? A monument? A secret message? Or is it just a lump of stone that you can use?
</History>
</Identity> </Identity>
<Obstruction> <Obstruction>
<Static width="2.0" depth="2.0"/> <Static width="2.0" depth="2.0"/>

View file

@ -6,6 +6,9 @@
</Footprint> </Footprint>
<Identity> <Identity>
<SpecificName>Roman Column</SpecificName> <SpecificName>Roman Column</SpecificName>
<History>
A stone column as those found in roman buildings.
</History>
</Identity> </Identity>
<ResourceSupply> <ResourceSupply>
<Max>400</Max> <Max>400</Max>

View file

@ -6,6 +6,9 @@
</Footprint> </Footprint>
<Identity> <Identity>
<SpecificName>Lamassu Statue</SpecificName> <SpecificName>Lamassu Statue</SpecificName>
<History>
A stone statue of the Mesopotamian diety, Lamassu. While it looks nice, you could probably use the stone for something better.
</History>
</Identity> </Identity>
<Obstruction> <Obstruction>
<Static width="3.5" depth="3.5"/> <Static width="3.5" depth="3.5"/>

View file

@ -7,6 +7,9 @@
<Identity> <Identity>
<SpecificName>Egyptian Statue</SpecificName> <SpecificName>Egyptian Statue</SpecificName>
<Icon>gaia/geology_stone_1.png</Icon> <Icon>gaia/geology_stone_1.png</Icon>
<History>
Various stone statues of Egyptian of royalty and religion. Its materials could easily be reused in other constructions.
</History>
</Identity> </Identity>
<Obstruction> <Obstruction>
<Static width="3.5" depth="3.5"/> <Static width="3.5" depth="3.5"/>

View file

@ -7,6 +7,9 @@
<Identity> <Identity>
<SpecificName>Kushite Statue</SpecificName> <SpecificName>Kushite Statue</SpecificName>
<Icon>gaia/geology_stone_1.png</Icon> <Icon>gaia/geology_stone_1.png</Icon>
<History>
Various stone statues of Kushite of royalty and religion. Its materials could easily be reused in other constructions.
</History>
</Identity> </Identity>
<Obstruction> <Obstruction>
<Static width="3.5" depth="3.5"/> <Static width="3.5" depth="3.5"/>

View file

@ -9,6 +9,9 @@
<GenericName>Stone Resource</GenericName> <GenericName>Stone Resource</GenericName>
<SpecificName>Kushite Bird Statue</SpecificName> <SpecificName>Kushite Bird Statue</SpecificName>
<Icon>gaia/geology_stone_1.png</Icon> <Icon>gaia/geology_stone_1.png</Icon>
<History>
This is an ancient Kushite statue of a bird. Its materials could easily be reused in other constructions.
</History>
</Identity> </Identity>
<Obstruction> <Obstruction>
<Static width="1.5" depth="3.5"/> <Static width="1.5" depth="3.5"/>

View file

@ -9,6 +9,9 @@
<GenericName>Stone Resource</GenericName> <GenericName>Stone Resource</GenericName>
<SpecificName>Apademak Lion Statue</SpecificName> <SpecificName>Apademak Lion Statue</SpecificName>
<Icon>gaia/geology_stone_1.png</Icon> <Icon>gaia/geology_stone_1.png</Icon>
<History>
In ancient Kush, lion statues were found in palaces and temples. They are the ultimate symbol of royal authority and also were associated with the god Apedemak. Its materials could easily be reused in other constructions.
</History>
</Identity> </Identity>
<Obstruction> <Obstruction>
<Static width="1.5" depth="3.5"/> <Static width="1.5" depth="3.5"/>

View file

@ -9,6 +9,9 @@
<GenericName>Stone Resource</GenericName> <GenericName>Stone Resource</GenericName>
<SpecificName>Ammon-Ra Ram Statue</SpecificName> <SpecificName>Ammon-Ra Ram Statue</SpecificName>
<Icon>gaia/geology_stone_1.png</Icon> <Icon>gaia/geology_stone_1.png</Icon>
<History>
In ancient Kush, Rams were the icon of their supreme god, Amun. The statue's materials could easily be reused in other constructions.
</History>
</Identity> </Identity>
<Obstruction> <Obstruction>
<Static width="1.5" depth="3.5"/> <Static width="1.5" depth="3.5"/>

View file

@ -6,6 +6,9 @@
</Footprint> </Footprint>
<Identity> <Identity>
<SpecificName>Roman Statue</SpecificName> <SpecificName>Roman Statue</SpecificName>
<History>
Various stone statues of Roman of royalty and religion. Its materials could easily be reused in other constructions.
</History>
</Identity> </Identity>
<Obstruction> <Obstruction>
<Static width="3.5" depth="3.5"/> <Static width="3.5" depth="3.5"/>

View file

@ -9,6 +9,9 @@
<GenericName>Stone Resource</GenericName> <GenericName>Stone Resource</GenericName>
<SpecificName>Ruined Farmstead</SpecificName> <SpecificName>Ruined Farmstead</SpecificName>
<Icon>gaia/geology_stone_1.png</Icon> <Icon>gaia/geology_stone_1.png</Icon>
<History>
A house once stood here. Now, however, there are only the remains of its foundation. What had destroyed it? Invaders perhaps? or maybe juse the force of nature gradually taking its toll? Whatever the cause of its destruction, the remaining stone can be reclaimed.
</History>
</Identity> </Identity>
<Obstruction> <Obstruction>
<Static width="14" depth="17"/> <Static width="14" depth="17"/>

View file

@ -8,6 +8,9 @@
<Civ>gaia</Civ> <Civ>gaia</Civ>
<GenericName>Stone Resource</GenericName> <GenericName>Stone Resource</GenericName>
<SpecificName>Ruined House</SpecificName> <SpecificName>Ruined House</SpecificName>
<History>
A house once stood here. Now, however, there are only the remains of its foundation. What had destroyed it? Invaders perhaps? or maybe juse the force of nature gradually taking its toll? Whatever the cause of its destruction, the remaining stone can be reclaimed.
</History>
<Icon>gaia/geology_stone_1.png</Icon> <Icon>gaia/geology_stone_1.png</Icon>
</Identity> </Identity>
<Obstruction> <Obstruction>

View file

@ -8,6 +8,9 @@
<Civ>gaia</Civ> <Civ>gaia</Civ>
<GenericName>Stone Resource</GenericName> <GenericName>Stone Resource</GenericName>
<SpecificName>Ruined Structure</SpecificName> <SpecificName>Ruined Structure</SpecificName>
<History>
These ruins have been so destroyed that it is impossible to find what they once were. What the stone will be is a more pressing question.
</History>
<Icon>gaia/geology_stone_1.png</Icon> <Icon>gaia/geology_stone_1.png</Icon>
</Identity> </Identity>
<Obstruction> <Obstruction>

View file

@ -9,6 +9,9 @@
<GenericName>Stone Resource</GenericName> <GenericName>Stone Resource</GenericName>
<SpecificName>Ruined Tower</SpecificName> <SpecificName>Ruined Tower</SpecificName>
<Icon>gaia/geology_stone_1.png</Icon> <Icon>gaia/geology_stone_1.png</Icon>
<History>
The start of a tower. Unfortunately, whoever started was not able to finish the work, so youll have to put what remains to good use.
</History>
</Identity> </Identity>
<Obstruction> <Obstruction>
<Static width="9" depth="6"/> <Static width="9" depth="6"/>

View file

@ -6,6 +6,9 @@
</Footprint> </Footprint>
<Identity> <Identity>
<SpecificName>Unfinished Greek Temple</SpecificName> <SpecificName>Unfinished Greek Temple</SpecificName>
<History>
The Greeks were excellent masons, and when completed, their structures will last for ages. Unfortunately, this temple was abandoned before it was finished, and now it is little more than a pile of stone waiting to be repurposed.
</History>
</Identity> </Identity>
<Obstruction> <Obstruction>
<Static width="17.5" depth="30.0"/> <Static width="17.5" depth="30.0"/>

View file

@ -6,6 +6,9 @@
</Footprint> </Footprint>
<Identity> <Identity>
<SpecificName>Persian Food Stores</SpecificName> <SpecificName>Persian Food Stores</SpecificName>
<History>
A large display of food, straight from the finest bazars.
</History>
<Icon>gaia/special_treasure_food.png</Icon> <Icon>gaia/special_treasure_food.png</Icon>
</Identity> </Identity>
<Obstruction> <Obstruction>

View file

@ -6,6 +6,9 @@
</Footprint> </Footprint>
<Identity> <Identity>
<SpecificName>Persian Food Treasure</SpecificName> <SpecificName>Persian Food Treasure</SpecificName>
<History>
A display of food, straight from the finest bazars.
</History>
<Icon>gaia/special_treasure_food.png</Icon> <Icon>gaia/special_treasure_food.png</Icon>
</Identity> </Identity>
<Obstruction> <Obstruction>

View file

@ -7,6 +7,9 @@
<Identity> <Identity>
<SpecificName>Food Treasure</SpecificName> <SpecificName>Food Treasure</SpecificName>
<Icon>gaia/special_treasure_food.png</Icon> <Icon>gaia/special_treasure_food.png</Icon>
<History>
This is a barrel of food. Wooden barrels were and still are an excellent way for storing both wet and dry foodstuffs.
</History>
</Identity> </Identity>
<Selectable replace=""> <Selectable replace="">
<Overlay> <Overlay>

View file

@ -7,6 +7,9 @@
<Identity> <Identity>
<SpecificName>Half-buried Barrels</SpecificName> <SpecificName>Half-buried Barrels</SpecificName>
<Icon>gaia/special_treasure_food.png</Icon> <Icon>gaia/special_treasure_food.png</Icon>
<History>
A long forgotten cache of food. They were buried for safekeeping. However, over time, the soil has eroded, exposing them. Seeing that the original owners are long gone, it is probably best that you put the resources to good use before your opponents do.
</History>
</Identity> </Identity>
<Obstruction> <Obstruction>
<Static width="7.0" depth="7.0"/> <Static width="7.0" depth="7.0"/>

View file

@ -7,6 +7,9 @@
<Identity> <Identity>
<SpecificName>Food Treasure</SpecificName> <SpecificName>Food Treasure</SpecificName>
<Icon>gaia/special_treasure_food.png</Icon> <Icon>gaia/special_treasure_food.png</Icon>
<History>
A bin of food.
</History>
</Identity> </Identity>
<Obstruction> <Obstruction>
<Static width="2.0" depth="3.0"/> <Static width="2.0" depth="3.0"/>

View file

@ -7,6 +7,9 @@
<Identity> <Identity>
<SpecificName>Food Treasure</SpecificName> <SpecificName>Food Treasure</SpecificName>
<Icon>gaia/special_treasure_food.png</Icon> <Icon>gaia/special_treasure_food.png</Icon>
<History>
A crate of food, packed as if it was going to be taken on a boat for a long journey.
</History>
</Identity> </Identity>
<Obstruction> <Obstruction>
<Static width="1.75" depth="1.75"/> <Static width="1.75" depth="1.75"/>

View file

@ -7,6 +7,9 @@
<Identity> <Identity>
<SpecificName>Food Treasure</SpecificName> <SpecificName>Food Treasure</SpecificName>
<Icon>gaia/special_treasure_food.png</Icon> <Icon>gaia/special_treasure_food.png</Icon>
<History>
Food safely stored inside clay jars.
</History>
</Identity> </Identity>
<Obstruction> <Obstruction>
<Static width="6.5" depth="6.5"/> <Static width="6.5" depth="6.5"/>

View file

@ -6,6 +6,9 @@
</Footprint> </Footprint>
<Identity> <Identity>
<SpecificName>Golden Fleece</SpecificName> <SpecificName>Golden Fleece</SpecificName>
<History>
There are legends about sheep with golden wool. One was sent by Zeus to fly Phrixus to safety when his father was going to kill him. Another was found in the flock of Atreus. Both were extremely valuable, and undoubtedly this one is too.
</History>
</Identity> </Identity>
<Treasure> <Treasure>
<Resources> <Resources>

View file

@ -6,6 +6,10 @@
</Footprint> </Footprint>
<Identity> <Identity>
<SpecificName>Secret Box</SpecificName> <SpecificName>Secret Box</SpecificName>
<History>
It's a barrel filled with metal.
There. I ruined the secret.
</History>
</Identity> </Identity>
<Sound> <Sound>
<SoundGroups> <SoundGroups>

View file

@ -6,6 +6,9 @@
</Footprint> </Footprint>
<Identity> <Identity>
<SpecificName>Persian Wares</SpecificName> <SpecificName>Persian Wares</SpecificName>
<History>
Bolts of cloth, rugs and other high-quality textiles. Such crafts can be sold in bazars, and across the ancient world.
</History>
</Identity> </Identity>
<Obstruction> <Obstruction>
<Static width="7.0" depth="7.0"/> <Static width="7.0" depth="7.0"/>

View file

@ -6,6 +6,9 @@
</Footprint> </Footprint>
<Identity> <Identity>
<SpecificName>Persian Rugs</SpecificName> <SpecificName>Persian Rugs</SpecificName>
<History>
Bolts of cloth, rugs and other high-quality textiles. Such crafts can be sold in bazars, and across the ancient world.
</History>
</Identity> </Identity>
<Obstruction> <Obstruction>
<Static width="5.0" depth="3.0"/> <Static width="5.0" depth="3.0"/>

View file

@ -6,6 +6,9 @@
</Footprint> </Footprint>
<Identity> <Identity>
<SpecificName>Iron Weapons</SpecificName> <SpecificName>Iron Weapons</SpecificName>
<History>
A stash of weapons. Even if your soldiers have plenty of arms, the metal is good and could be used for other purposes.
</History>
</Identity> </Identity>
<Obstruction> <Obstruction>
<Static width="2.75" depth="2.75"/> <Static width="2.75" depth="2.75"/>

View file

@ -6,6 +6,9 @@
</Footprint> </Footprint>
<Identity> <Identity>
<SpecificName>Pegasus</SpecificName> <SpecificName>Pegasus</SpecificName>
<History>
Legends say that Pegasus sprung from the decapitated body of Medusa and was the mount for the Hero Bellerophon when the hero fought the Chimera. Afterwards Bellerophon became haughty and tried to fly Pegasus to Mount Olympus. Zeus, the king of the Greek gods, sent a fly to drive Pegasus wild. Bellerophon was thrown off and lived the rest of his life blind, lame, and in poverty. Nothing more was said about Pegasus, at least until now. The famous horse would fetch a fine price if sold.
</History>
</Identity> </Identity>
<Treasure> <Treasure>
<Resources> <Resources>

View file

@ -6,6 +6,9 @@
</Footprint> </Footprint>
<Identity> <Identity>
<SpecificName>Shipwreck</SpecificName> <SpecificName>Shipwreck</SpecificName>
<History>
Sadly, sailing in the ancient world could be a dangerous thing. Large storms could appear unexpectedly and wreck even the largest boat. It appears all the ships cargo has washed away. However, the ships wood is sturdy and could be repurposed.
</History>
</Identity> </Identity>
<Obstruction> <Obstruction>
<Static width="20.0" depth="10.0"/> <Static width="20.0" depth="10.0"/>

View file

@ -6,6 +6,9 @@
</Footprint> </Footprint>
<Identity> <Identity>
<SpecificName>Shipwreck Cargo</SpecificName> <SpecificName>Shipwreck Cargo</SpecificName>
<History>
Sadly, sailing in the ancient world was a dangerous thing. Large storms could appear unexpectedly and wreck even the largest boat. This is the cargo of some unfortunate boat. The boat isn't in sight. However, the saltwater hasn't gotten into the barrels and their contents are still edible.
</History>
</Identity> </Identity>
<Obstruction> <Obstruction>
<Static width="7.0" depth="7.0"/> <Static width="7.0" depth="7.0"/>

View file

@ -6,6 +6,9 @@
</Footprint> </Footprint>
<Identity> <Identity>
<SpecificName>Shipwreck</SpecificName> <SpecificName>Shipwreck</SpecificName>
<History>
Sadly, sailing in the ancient world was a dangerous thing. Large storms could appear unexpectedly and wreck even the largest boat. It appears all the ships cargo has washed away. However, the ships wood is still sturdy and could be repurposed.
</History>
</Identity> </Identity>
<Obstruction> <Obstruction>
<Static width="21.0" depth="11.0"/> <Static width="21.0" depth="11.0"/>

View file

@ -6,6 +6,9 @@
</Footprint> </Footprint>
<Identity> <Identity>
<SpecificName>Shipwreck</SpecificName> <SpecificName>Shipwreck</SpecificName>
<History>
Sadly, sailing in the ancient world was a dangerous thing. Storms came unexpectedly, and even the experienced fishermen could be driven onto the rocks. None of this ships supplies are salvageable, but the ships wood is still sound and could be repurposed.
</History>
</Identity> </Identity>
<Obstruction> <Obstruction>
<Static width="8.0" depth="14.0"/> <Static width="8.0" depth="14.0"/>

View file

@ -6,6 +6,9 @@
</Footprint> </Footprint>
<Identity> <Identity>
<SpecificName>Shipwreck</SpecificName> <SpecificName>Shipwreck</SpecificName>
<History>
Sadly, sailing in the ancient world was a dangerous thing. Storms came unexpectedly, and even the experienced fishermen could be driven onto the rocks. None of this ships supplies are salvageable, but the ships wood is still sound and could be repurposed.
</History>
</Identity> </Identity>
<Obstruction> <Obstruction>
<Static width="9.0" depth="17.0"/> <Static width="9.0" depth="17.0"/>

View file

@ -7,6 +7,9 @@
<Identity> <Identity>
<SpecificName>The Argo</SpecificName> <SpecificName>The Argo</SpecificName>
<GenericName>Mythological Treasure</GenericName> <GenericName>Mythological Treasure</GenericName>
<History>
The Argo was the great ship of Jason and the Argonauts on their quest to find the golden fleece. Built by the command of Hera, the boat's figurehead was said to be an oracle. After the voyage, the boat was said to have collapsed on a disgraced Jason, killing him.
</History>
<Tooltip>The mythological ship of the hero Theseus and his Argonauts.</Tooltip> <Tooltip>The mythological ship of the hero Theseus and his Argonauts.</Tooltip>
<Icon>technologies/juggernaut.png</Icon> <Icon>technologies/juggernaut.png</Icon>
</Identity> </Identity>

View file

@ -6,6 +6,9 @@
</Footprint> </Footprint>
<Identity> <Identity>
<SpecificName>Celtic Standing Stone</SpecificName> <SpecificName>Celtic Standing Stone</SpecificName>
<History>
A stone inscribed with mysterious symbols. They were placed for unknown reasons by ancient Britons.
</History>
</Identity> </Identity>
<Obstruction> <Obstruction>
<Static width="2.0" depth="2.0"/> <Static width="2.0" depth="2.0"/>

View file

@ -6,6 +6,9 @@
</Footprint> </Footprint>
<Identity> <Identity>
<SpecificName>Stone Treasure</SpecificName> <SpecificName>Stone Treasure</SpecificName>
<History>
A pile of stone roughly cut into blocks.
</History>
</Identity> </Identity>
<Obstruction> <Obstruction>
<Static width="6.5" depth="6.5"/> <Static width="6.5" depth="6.5"/>

View file

@ -2,6 +2,9 @@
<Entity parent="template_gaia_treasure"> <Entity parent="template_gaia_treasure">
<Identity> <Identity>
<SpecificName>Cut Granite</SpecificName> <SpecificName>Cut Granite</SpecificName>
<History>
A pile of granite roughly cut into blocks.
</History>
</Identity> </Identity>
<Treasure> <Treasure>
<Resources> <Resources>

View file

@ -6,6 +6,9 @@
</Footprint> </Footprint>
<Identity> <Identity>
<SpecificName>Cut Stone</SpecificName> <SpecificName>Cut Stone</SpecificName>
<History>
A large pile of stone roughly cut into blocks.
</History>
</Identity> </Identity>
<Obstruction> <Obstruction>
<Static width="4.0" depth="4.0"/> <Static width="4.0" depth="4.0"/>

View file

@ -7,6 +7,9 @@
<Identity> <Identity>
<SpecificName>Cut Sandstone</SpecificName> <SpecificName>Cut Sandstone</SpecificName>
<Icon>gaia/geology_stone_2.png</Icon> <Icon>gaia/geology_stone_2.png</Icon>
<History>
A pile of red sandstone roughly cut into blocks.
</History>
</Identity> </Identity>
<Obstruction> <Obstruction>
<Static width="6.5" depth="6.5"/> <Static width="6.5" depth="6.5"/>

View file

@ -3,6 +3,9 @@
<Identity> <Identity>
<SpecificName>Cut Sandstone</SpecificName> <SpecificName>Cut Sandstone</SpecificName>
<Icon>gaia/geology_stone_1.png</Icon> <Icon>gaia/geology_stone_1.png</Icon>
<History>
A pile of sandstone roughly cut into blocks.
</History>
</Identity> </Identity>
<Treasure> <Treasure>
<Resources> <Resources>

View file

@ -6,6 +6,9 @@
</Footprint> </Footprint>
<Identity> <Identity>
<SpecificName>Wood Treasure</SpecificName> <SpecificName>Wood Treasure</SpecificName>
<History>
A pile of roughly hewn lumber.
</History>
</Identity> </Identity>
<Obstruction> <Obstruction>
<Static width="3.5" depth="6.5"/> <Static width="3.5" depth="6.5"/>

View file

@ -6,6 +6,9 @@
</Footprint> </Footprint>
<Identity> <Identity>
<SpecificName>Milled Lumber</SpecificName> <SpecificName>Milled Lumber</SpecificName>
<History>
A pile of roughly hewn lumber, ready to be used for building.
</History>
</Identity> </Identity>
<Obstruction> <Obstruction>
<Static width="3.5" depth="6.5"/> <Static width="3.5" depth="6.5"/>