mirror of
https://github.com/ArchipelagoMW/Archipelago.git
synced 2026-05-19 13:11:47 -07:00
80b7e2e188
Convert Science requirements to Event of "automate <pack>"
14 lines
355 B
Lua
14 lines
355 B
Lua
{% macro dict_to_lua(dict) -%}
|
|
{
|
|
{%- for key, value in dict.items() -%}
|
|
["{{ key }}"] = {{ value | safe }}{% if not loop.last %},{% endif %}
|
|
{% endfor -%}
|
|
}
|
|
{%- endmacro %}
|
|
{% macro dict_to_recipe(dict) -%}
|
|
{
|
|
{%- for key, value in dict.items() -%}
|
|
{"{{ key }}", {{ value | safe }}}{% if not loop.last %},{% endif %}
|
|
{% endfor -%}
|
|
}
|
|
{%- endmacro %} |