From 5940d74c6150cc3ce54c93f3e820fba63f03ff29 Mon Sep 17 00:00:00 2001 From: Snogard Date: Sun, 9 Feb 2025 16:22:14 +0100 Subject: [PATCH] config: ars technica --- config/ars_technica/glyph_carve.toml | 26 +++++++++++++++++++++++ config/ars_technica/glyph_fuse.toml | 26 +++++++++++++++++++++++ config/ars_technica/glyph_insert.toml | 26 +++++++++++++++++++++++ config/ars_technica/glyph_obliterate.toml | 26 +++++++++++++++++++++++ config/ars_technica/glyph_pack.toml | 26 +++++++++++++++++++++++ config/ars_technica/glyph_polish.toml | 26 +++++++++++++++++++++++ config/ars_technica/glyph_press.toml | 26 +++++++++++++++++++++++ config/ars_technica/glyph_telefeast.toml | 26 +++++++++++++++++++++++ config/ars_technica/glyph_whirl.toml | 26 +++++++++++++++++++++++ 9 files changed, 234 insertions(+) create mode 100644 config/ars_technica/glyph_carve.toml create mode 100644 config/ars_technica/glyph_fuse.toml create mode 100644 config/ars_technica/glyph_insert.toml create mode 100644 config/ars_technica/glyph_obliterate.toml create mode 100644 config/ars_technica/glyph_pack.toml create mode 100644 config/ars_technica/glyph_polish.toml create mode 100644 config/ars_technica/glyph_press.toml create mode 100644 config/ars_technica/glyph_telefeast.toml create mode 100644 config/ars_technica/glyph_whirl.toml diff --git a/config/ars_technica/glyph_carve.toml b/config/ars_technica/glyph_carve.toml new file mode 100644 index 0000000..0a50a7b --- /dev/null +++ b/config/ars_technica/glyph_carve.toml @@ -0,0 +1,26 @@ + +#General settings +[general] + #Is Enabled? + enabled = true + #Cost + #Range: > -2147483648 + cost = 10 + #Is Starter Glyph? + starter = false + #The maximum number of times this glyph may appear in a single spell + #Range: > 1 + per_spell_limit = 2147483647 + #The tier of the glyph + #Range: 1 ~ 99 + glyph_tier = 1 + #Limits the number of times a given augment may be applied to a given effect + #Example entry: "glyph_amplify=5" + augment_limits = ["ars_nouveau:glyph_amplify=1", "ars_nouveau:glyph_dampen=1"] + #How much an augment should cost when used on this effect or form. This overrides the default cost in the augment config. + #Example entry: "glyph_amplify=50" + augment_cost_overrides = [] + #Prevents the given glyph from being used in the same spell as the given glyph + #Example entry: "glyph_burst" + invalid_combos = [] + diff --git a/config/ars_technica/glyph_fuse.toml b/config/ars_technica/glyph_fuse.toml new file mode 100644 index 0000000..e2fd146 --- /dev/null +++ b/config/ars_technica/glyph_fuse.toml @@ -0,0 +1,26 @@ + +#General settings +[general] + #Is Enabled? + enabled = true + #Cost + #Range: > -2147483648 + cost = 150 + #Is Starter Glyph? + starter = false + #The maximum number of times this glyph may appear in a single spell + #Range: > 1 + per_spell_limit = 2147483647 + #The tier of the glyph + #Range: 1 ~ 99 + glyph_tier = 3 + #Limits the number of times a given augment may be applied to a given effect + #Example entry: "glyph_amplify=5" + augment_limits = [] + #How much an augment should cost when used on this effect or form. This overrides the default cost in the augment config. + #Example entry: "glyph_amplify=50" + augment_cost_overrides = [] + #Prevents the given glyph from being used in the same spell as the given glyph + #Example entry: "glyph_burst" + invalid_combos = [] + diff --git a/config/ars_technica/glyph_insert.toml b/config/ars_technica/glyph_insert.toml new file mode 100644 index 0000000..5e2e461 --- /dev/null +++ b/config/ars_technica/glyph_insert.toml @@ -0,0 +1,26 @@ + +#General settings +[general] + #Is Enabled? + enabled = true + #Cost + #Range: > -2147483648 + cost = 15 + #Is Starter Glyph? + starter = false + #The maximum number of times this glyph may appear in a single spell + #Range: > 1 + per_spell_limit = 2147483647 + #The tier of the glyph + #Range: 1 ~ 99 + glyph_tier = 1 + #Limits the number of times a given augment may be applied to a given effect + #Example entry: "glyph_amplify=5" + augment_limits = [] + #How much an augment should cost when used on this effect or form. This overrides the default cost in the augment config. + #Example entry: "glyph_amplify=50" + augment_cost_overrides = [] + #Prevents the given glyph from being used in the same spell as the given glyph + #Example entry: "glyph_burst" + invalid_combos = [] + diff --git a/config/ars_technica/glyph_obliterate.toml b/config/ars_technica/glyph_obliterate.toml new file mode 100644 index 0000000..5c01392 --- /dev/null +++ b/config/ars_technica/glyph_obliterate.toml @@ -0,0 +1,26 @@ + +#General settings +[general] + #Is Enabled? + enabled = true + #Cost + #Range: > -2147483648 + cost = 100 + #Is Starter Glyph? + starter = false + #The maximum number of times this glyph may appear in a single spell + #Range: > 1 + per_spell_limit = 2147483647 + #The tier of the glyph + #Range: 1 ~ 99 + glyph_tier = 3 + #Limits the number of times a given augment may be applied to a given effect + #Example entry: "glyph_amplify=5" + augment_limits = [] + #How much an augment should cost when used on this effect or form. This overrides the default cost in the augment config. + #Example entry: "glyph_amplify=50" + augment_cost_overrides = [] + #Prevents the given glyph from being used in the same spell as the given glyph + #Example entry: "glyph_burst" + invalid_combos = [] + diff --git a/config/ars_technica/glyph_pack.toml b/config/ars_technica/glyph_pack.toml new file mode 100644 index 0000000..0a50a7b --- /dev/null +++ b/config/ars_technica/glyph_pack.toml @@ -0,0 +1,26 @@ + +#General settings +[general] + #Is Enabled? + enabled = true + #Cost + #Range: > -2147483648 + cost = 10 + #Is Starter Glyph? + starter = false + #The maximum number of times this glyph may appear in a single spell + #Range: > 1 + per_spell_limit = 2147483647 + #The tier of the glyph + #Range: 1 ~ 99 + glyph_tier = 1 + #Limits the number of times a given augment may be applied to a given effect + #Example entry: "glyph_amplify=5" + augment_limits = ["ars_nouveau:glyph_amplify=1", "ars_nouveau:glyph_dampen=1"] + #How much an augment should cost when used on this effect or form. This overrides the default cost in the augment config. + #Example entry: "glyph_amplify=50" + augment_cost_overrides = [] + #Prevents the given glyph from being used in the same spell as the given glyph + #Example entry: "glyph_burst" + invalid_combos = [] + diff --git a/config/ars_technica/glyph_polish.toml b/config/ars_technica/glyph_polish.toml new file mode 100644 index 0000000..74daddc --- /dev/null +++ b/config/ars_technica/glyph_polish.toml @@ -0,0 +1,26 @@ + +#General settings +[general] + #Is Enabled? + enabled = true + #Cost + #Range: > -2147483648 + cost = 120 + #Is Starter Glyph? + starter = false + #The maximum number of times this glyph may appear in a single spell + #Range: > 1 + per_spell_limit = 2147483647 + #The tier of the glyph + #Range: 1 ~ 99 + glyph_tier = 2 + #Limits the number of times a given augment may be applied to a given effect + #Example entry: "glyph_amplify=5" + augment_limits = [] + #How much an augment should cost when used on this effect or form. This overrides the default cost in the augment config. + #Example entry: "glyph_amplify=50" + augment_cost_overrides = [] + #Prevents the given glyph from being used in the same spell as the given glyph + #Example entry: "glyph_burst" + invalid_combos = [] + diff --git a/config/ars_technica/glyph_press.toml b/config/ars_technica/glyph_press.toml new file mode 100644 index 0000000..5bc608c --- /dev/null +++ b/config/ars_technica/glyph_press.toml @@ -0,0 +1,26 @@ + +#General settings +[general] + #Is Enabled? + enabled = true + #Cost + #Range: > -2147483648 + cost = 100 + #Is Starter Glyph? + starter = false + #The maximum number of times this glyph may appear in a single spell + #Range: > 1 + per_spell_limit = 2147483647 + #The tier of the glyph + #Range: 1 ~ 99 + glyph_tier = 2 + #Limits the number of times a given augment may be applied to a given effect + #Example entry: "glyph_amplify=5" + augment_limits = [] + #How much an augment should cost when used on this effect or form. This overrides the default cost in the augment config. + #Example entry: "glyph_amplify=50" + augment_cost_overrides = [] + #Prevents the given glyph from being used in the same spell as the given glyph + #Example entry: "glyph_burst" + invalid_combos = [] + diff --git a/config/ars_technica/glyph_telefeast.toml b/config/ars_technica/glyph_telefeast.toml new file mode 100644 index 0000000..4ff5e6e --- /dev/null +++ b/config/ars_technica/glyph_telefeast.toml @@ -0,0 +1,26 @@ + +#General settings +[general] + #Is Enabled? + enabled = true + #Cost + #Range: > -2147483648 + cost = 10 + #Is Starter Glyph? + starter = false + #The maximum number of times this glyph may appear in a single spell + #Range: > 1 + per_spell_limit = 2147483647 + #The tier of the glyph + #Range: 1 ~ 99 + glyph_tier = 2 + #Limits the number of times a given augment may be applied to a given effect + #Example entry: "glyph_amplify=5" + augment_limits = [] + #How much an augment should cost when used on this effect or form. This overrides the default cost in the augment config. + #Example entry: "glyph_amplify=50" + augment_cost_overrides = [] + #Prevents the given glyph from being used in the same spell as the given glyph + #Example entry: "glyph_burst" + invalid_combos = [] + diff --git a/config/ars_technica/glyph_whirl.toml b/config/ars_technica/glyph_whirl.toml new file mode 100644 index 0000000..3596735 --- /dev/null +++ b/config/ars_technica/glyph_whirl.toml @@ -0,0 +1,26 @@ + +#General settings +[general] + #Is Enabled? + enabled = true + #Cost + #Range: > -2147483648 + cost = 40 + #Is Starter Glyph? + starter = false + #The maximum number of times this glyph may appear in a single spell + #Range: > 1 + per_spell_limit = 2147483647 + #The tier of the glyph + #Range: 1 ~ 99 + glyph_tier = 2 + #Limits the number of times a given augment may be applied to a given effect + #Example entry: "glyph_amplify=5" + augment_limits = [] + #How much an augment should cost when used on this effect or form. This overrides the default cost in the augment config. + #Example entry: "glyph_amplify=50" + augment_cost_overrides = [] + #Prevents the given glyph from being used in the same spell as the given glyph + #Example entry: "glyph_burst" + invalid_combos = [] +