diff --git a/game/world/location/huge_ancient_urn.png b/game/world/location/huge_ancient_urn.png new file mode 100644 index 0000000..1464850 Binary files /dev/null and b/game/world/location/huge_ancient_urn.png differ diff --git a/game/world/location/old_dwarven_grave.png b/game/world/location/old_dwarven_grave.png new file mode 100644 index 0000000..5fc35d4 Binary files /dev/null and b/game/world/location/old_dwarven_grave.png differ diff --git a/source/world.ads b/source/world.ads index 94a50df..59c20f2 100644 --- a/source/world.ads +++ b/source/world.ads @@ -20,7 +20,7 @@ package world is ); type location_index is ( - well_of_agility, well_of_knowledge, well_of_strength + well_of_agility, well_of_knowledge, well_of_strength, old_dwarven_grave, huge_ancient_urn ); ------------------------------------------------------------------------------------------ @@ -105,9 +105,11 @@ package world is ); location_trait : constant array (location_index) of location_stats := ( - well_of_agility => ("Well of Agility ", true, 4, 3, (effect.speed, 2, false, 0)), - well_of_knowledge => ("Well of Knowledge ", true, 4, 3, (effect.wisdom, 2, false, 0)), - well_of_strength => ("Well of Strength ", true, 4, 3, (effect.offense, 2, false, 0)) + well_of_agility => ("Well of Agility ", true, 4, 3, (effect.speed, 2, false, 0)), + well_of_knowledge => ("Well of Knowledge ", true, 4, 3, (effect.wisdom, 2, false, 0)), + well_of_strength => ("Well of Strength ", true, 4, 3, (effect.offense, 2, false, 0)), + old_dwarven_grave => ("Old Dwarven Grave ", true, 1, 3, (effect.defense, 1, false, 0)), + huge_ancient_urn => ("Huge Ancient Urn ", true, 1, 3, (effect.offense, 1, false, 0)) ); map : information;