Files
Grinch-AP/data/factorio/mod_template/locale/en/locale.cfg

20 lines
1.2 KiB
INI
Raw Normal View History

2021-04-01 11:40:58 +02:00
[technology-name]
{% for original_tech_name, item_name, receiving_player, advancement in locations %}
2021-06-26 00:54:27 +02:00
{%- if tech_tree_information == 2 or original_tech_name in static_nodes %}
2021-04-01 11:40:58 +02:00
ap-{{ tech_table[original_tech_name] }}-={{ player_names[receiving_player] }}'s {{ item_name }}
2021-06-26 00:54:27 +02:00
{%- else %}
ap-{{ tech_table[original_tech_name] }}-=An Archipelago Sendable
{%- endif -%}
2021-04-01 11:40:58 +02:00
{% endfor %}
2021-04-01 11:40:58 +02:00
[technology-description]
{% for original_tech_name, item_name, receiving_player, advancement in locations %}
{%- if tech_tree_information == 2 or original_tech_name in static_nodes %}
2021-06-26 00:54:27 +02:00
ap-{{ tech_table[original_tech_name] }}-=Researching this technology sends {{ item_name }} to {{ player_names[receiving_player] }}{% if advancement %}, which is considered a logical advancement{% endif %}.
2021-06-22 02:00:35 +02:00
{%- elif tech_tree_information == 1 and advancement %}
ap-{{ tech_table[original_tech_name] }}-=Researching this technology sends something to someone, which is considered a logical advancement. For purposes of hints, this location is called "{{ original_tech_name }}".
2021-06-22 02:00:35 +02:00
{%- else %}
2021-06-26 00:54:27 +02:00
ap-{{ tech_table[original_tech_name] }}-=Researching this technology sends something to someone. For purposes of hints, this location is called "{{ original_tech_name }}".
{%- endif -%}
2021-04-01 11:40:58 +02:00
{% endfor %}