Compare commits

...

1 Commits

Author SHA1 Message Date
58035d9816 add athens update 2024-09-08 13:40:50 -07:00
12 changed files with 161 additions and 1 deletions

View File

@ -0,0 +1,29 @@
<?xml version="1.0" encoding="utf-8"?>
<actor version="1">
<castshadow/>
<group>
<variant file="biped/base_healer_male.xml">
<mesh>skeletal/new/m_dress.dae</mesh>
<props>
<prop actor="props/units/heads/new/head_hele_healer.xml" attachpoint="head"/>
<prop actor="props/units/staff.xml" attachpoint="weapon_R"/>
</props>
</variant>
</group>
<group>
<variant frequency="1" name="healer-robe-1">
<props>
</props>
<textures>
<texture file="skeletal/athen/philosopher_01.png" name="baseTex"/>
<texture file="default_norm.png" name="normTex"/>
<texture file="skeletal/athen/philosopher_01_spec.png" name="specTex"/>
</textures>
</variant>
</group>
<group>
<variant frequency="1" name="Idle"/>
<variant file="biped/death_infantry.xml"/>
</group>
<material>player_trans_norm_spec.xml</material>
</actor>

Binary file not shown.

After

Width:  |  Height:  |  Size: 107 KiB

View File

@ -0,0 +1,12 @@
{
"type": "garrisonedUnits",
"affects": [ "Hero" ],
"modifications": [
{
"value": "Health/RegenRate",
"add": 6
}
],
"auraName": "Officer Accommodation",
"auraDescription": "Garrisoned Heroes +6 health regeneration rate."
}

View File

@ -0,0 +1,14 @@
{
"type": "range",
"radius": 35,
"affects": [ "Human" ],
"modifications": [
{
"value": "Health/RegenRate",
"add": 0.5
}
],
"auraName": "Regeneration",
"auraDescription": "Humans +0.5 health regeneration rate.",
"overlayIcon": "art/textures/ui/session/auras/heal.png"
}

View File

@ -0,0 +1,15 @@
{
"type": "range",
"radius": 35,
"affects": [ "Healer" ],
"affectedPlayers": [ "MutualAlly" ],
"modifications": [
{
"value": "Heal/Health",
"add": 2.0
}
],
"auraName": "Medicine Father",
"auraDescription": "Own and Allied Healers +2 heal health.",
"overlayIcon": "art/textures/ui/session/auras/heal.png"
}

View File

@ -0,0 +1,31 @@
{
"genericName": "Ostracism",
"description": "In ancient Athens, ostracism was the process by which any citizen, including political leaders, could be expelled from the city-state for 10 years.",
"cost": {
"food": 300,
"metal": 300
},
"requirements": {
"all": [
{ "tech": "phase_city" },
{ "civ": "athen" }
]
},
"requirementsTooltip": "Unlocked in City Phase.",
"icon": "patriotism.png",
"researchTime": 60,
"tooltip": "Citizen soldiers +5% health, but Heroes −40% health.",
"modifications": [
{
"value": "Health/Max",
"multiply": 1.05,
"affects": "CitizenSoldier"
},
{
"value": "Health/Max",
"multiply": 0.6,
"affects": "Hero"
}
],
"soundComplete": "interface/alarm/alarm_upgradearmory.xml"
}

View File

@ -0,0 +1,29 @@
{
"genericName": "Pheidian Workshop",
"description": "Pheidias was a Greek sculptor, painter and architect, who lived in the 5th century BC, and is commonly regarded as one of the greatest of all sculptors of Classical Greece: Phidias' Statue of Zeus at Olympia was one of the Seven Wonders of the Ancient World. Phidias designed the statues of the goddess Athena on the Athenian Acropolis, namely the Athena Parthenos inside the Parthenon and the Athena Promachos, a colossal bronze statue of Athena which stood between it and the Propylaea, a monumental gateway that served as the entrance to the Acropolis in Athens.",
"cost": {
"stone": 300
},
"requirements": {
"all": [
{ "tech": "phase_town" },
{ "civ": "athen" }
]
},
"requirementsTooltip": "Unlocked in Town Phase.",
"icon": "vestals.png",
"researchTime": 40,
"tooltip": "Temples and Wonder −50% stone cost and build time.",
"modifications": [
{
"value": "Cost/BuildTime",
"multiply": 0.5
},
{
"value": "Cost/Resources/stone",
"multiply": 0.5
}
],
"affects": [ "Temple", "Wonder" ],
"soundComplete": "interface/alarm/alarm_upgradearmory.xml"
}

View File

@ -37,6 +37,7 @@
<Researcher>
<Technologies datatype="tokens">
long_walls
ostracism
</Technologies>
</Researcher>
<Sound>

View File

@ -11,6 +11,11 @@
<Obstruction>
<Static width="17.5" depth="27"/>
</Obstruction>
<Trainer>
<Entities datatype="tokens">
units/{civ}/hero_hippocrates
</Entities>
</Trainer>
<VisualActor>
<Actor>structures/athenians/temple.xml</Actor>
<FoundationActor>props/special/eyecandy/greek_temple_unfinished.xml</FoundationActor>

View File

@ -106,6 +106,7 @@
hellenistic_metropolis
apophora
roman_roads
pheidian_workshop
unlock_spies
spy_counter
</Technologies>

View File

@ -0,0 +1,20 @@
<?xml version="1.0" encoding="utf-8"?>
<Entity parent="template_unit_hero_healer">
<Auras datatype="tokens">
units/heroes/athen_hero_hippocrates_1
units/heroes/athen_hero_hippocrates_2
</Auras>
<Health>
<Max>600</Max>
</Health>
<Identity>
<Civ>athen</Civ>
<GenericName>Hippocrates</GenericName>
<SpecificName>Hippocrates</SpecificName>
<Icon>units/athen/hero_hippocrates.png</Icon>
<RequiredTechnology>phase_town</RequiredTechnology>
</Identity>
<VisualActor>
<Actor>units/athenians/hero_healer_hippocrates.xml</Actor>
</VisualActor>
</Entity>

View File

@ -3,7 +3,10 @@
<Identity>
<Rank>Elite</Rank>
</Identity>
<Promotion disable=""/>
<Promotion>
<RequiredXp>200</RequiredXp>
<Entity>units/athen/champion_infantry</Entity>
</Promotion>
<VisualActor>
<Actor>units/athenians/infantry_spearman_e.xml</Actor>
</VisualActor>