activation_duration – An integer of days for this Relic to "shine" if it’s activated.
portrait – A reference to a GFX instance that indicates the icon of this Relic. This is defined in 'interface/relics_view.gfx'.
sound – A reference to a sound instance that indicates the sound to be played for activation.
resources – An Economy Unit that determines the resource output and activation cost.
ai_weight – Determines how likely the AI will activate this relic.
triggered_country_modifier – A block of Modifiers for the Passive Effect of this relic.
potential – A block of Conditions that determines should the modifier apply. Vanilla relics always have 'always = yes'. It is unclear if relics have country_modifier.
score – An integer of victory score should this Relic count.
active_effect – A block of Effects for the Activation Effect of this relic.
possible – A block of Conditions that determines can this relic be activated.
Relic Example[]
This is the "Ether Drake Trophy".
r_dragon_trophy={activation_duration=@triumph_durationportrait="GFX_relic_dragon_trophy"sound="relic_activation_ether_drake_trophy"resources={category=relics# Activation costcost={influence=@activation_cost}}ai_weight={weight=100}triggered_country_modifier={potential={always=yes}country_unity_produces_mult=0.10}score=1000active_effect={add_modifier={modifier="ether_drake_triumph"days=@triumph_duration}custom_tooltip=relic_triumph_cooldownhidden_effect={add_modifier={modifier="relic_activation_cooldown"days=@triumph_duration}}}# Possible check for activationpossible={custom_tooltip={fail_text="requires_relic_no_cooldown"NOT={has_modifier=relic_activation_cooldown}}}}
All relics should add the modifier 'relic_activation_cooldown' to the empire upon activation as well as they should be blocked from activating if the empire has this modifier in order to have the relics UI and "relics can be activted" alert message work properly.
Artifact Actions[]
Artifact Actions are defined at 'common/artifact_actions/xxx.txt'. Without the Ancient Relics DLC, Artifact Actions are hidden from the UI and can't be used.
Artifact Action cooldown is implemented through Static Modifiers.
There are some Artifact Actions that are not meant to be activated through this menu.
Before acquiring the technology "Arcane Deciphering", relevant Artifact Actions are displayed as "???". Actually, those "???" actions are different actions that can only be seen if the empire doesn't have this technology and can never be activated.
Some actions can only be done through planets. They are also Artifact Actions that can never be activated and actual effects are implemented through Decisions.
Archaeological Sites[]
Please help with verifying or updating this section. It was last verified for version 3.3.
Archaeological Sites are defined at 'common/archaeological_site_types/xxx.txt'. Full implementation of Archaeological Sites is largely dependent to Event modding as well as Dynamic modding.
Data Structure[]
desc – A localisation key (triggered event desc) that designates the description of this site (scope = site).
picture – A reference to a GFX instance (sprite key) that indicates the picture of this site.
max_instances – An integer of max stages instances of this type a galaxy can have, only checked when using 'create_archaeological_site = random'
weight – A scriptable value used for random weight, only used when using 'create_archaeological_site = random'. Scriptable value type is defined either by an integer or 'mean time to happen'.
stages – An integer of max stages of this site. It must be exactly match the number of state blocks of this site.
potential – A Trigger block (conditions) that determines if a scope (fleet) is potential to excavate this archaeological site (from = site, this will add/remove this option without giving the player a reason).
allow – A Trigger block (conditions) that determines can a ship delve into this site (scope = fleet, from = site). All vanilla sites are only open to Science Ships with a Scientist (this will toggle enable/disabled mode on buttons etc).
visible – A Trigger block (conditions) that determines can an empire see this site (scope = country, from = site).
stage – Defines a stage of this site, order dependent
difficulty – A 'min max interval type', interval is defined either by an integer or '{ min = <int> max=<int> }' where the later will randomize a value between min and max.
icon – A reference to a GFX instance (rune icon gfx type) that indicates the picture of this stage.
event – An 'fleet_event' id to trigger on the delver fleet when this stage is cleared. A fleet is a 'container' of ships and can consist of one or more ships.
on_roll_failed – An Effect block to be executed when a roll is failed (scope = fleet, from = site).
on_create – An Effect block to be executed upon site creation (scope = site).
on_visible – An Effect block to be executed upon site visible (scope = country, from = site).