This commit is contained in:
cajun
2025-09-26 04:11:39 -05:00
parent cabc89fc1f
commit ed9478820d
11 changed files with 18 additions and 9 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.3 KiB

View File

@@ -5,3 +5,4 @@ item: acorn
item: A item: A
item: aether item: aether
item: phi item: phi
item: INF

View File

@@ -42,3 +42,7 @@ symbol:
code: A code: A
image: { recolor_image(color: symbol_font_small_color(), "/magic-modules.mse-include/symbol-fonts/small/chaos.png") } image: { recolor_image(color: symbol_font_small_color(), "/magic-modules.mse-include/symbol-fonts/small/chaos.png") }
image font size: 135 image font size: 135
symbol:
code: INF
image: { recolor_image(color: symbol_font_small_color(), "/magic-modules.mse-include/symbol-fonts/small/INF.png") }
image font size: 135

View File

@@ -2068,4 +2068,4 @@ keyword:
keyword: Harness keyword: Harness
match: Harness match: Harness
mode: expert mode: expert
reminder: Once harnessed, its Infinity ability is active. reminder: Once harnessed, its [INF] ability is active.

View File

@@ -2742,4 +2742,4 @@ keyword:
keyword: nutzbar keyword: nutzbar
match: nutzbar match: nutzbar
mode: expert mode: expert
reminder: Ab dann ist seine Infinity-Fähigkeit aktiv. reminder: Ab dann ist seine [INF]-Fähigkeit aktiv.

View File

@@ -2055,7 +2055,7 @@ keyword:
keyword: Harness keyword: Harness
match: Harness match: Harness
mode: expert mode: expert
reminder: Once harnessed, its Infinity ability is active. reminder: Once harnessed, its [INF] ability is active.
#Through the Omenpaths 1 #Through the Omenpaths 1
keyword: keyword:
keyword: Enweb keyword: Enweb

View File

@@ -2768,4 +2768,4 @@ keyword:
keyword: Aprópiate keyword: Aprópiate
match: Aprópiate match: Aprópiate
mode: expert mode: expert
reminder: Una vez Apropiada, su habilidad de Infinity pasa a estar activa. reminder: Una vez Apropiada, su habilidad de [INF] pasa a estar activa.

View File

@@ -2833,4 +2833,4 @@ keyword:
keyword: Maîtrisez keyword: Maîtrisez
match: Maîtrisez match: Maîtrisez
mode: expert mode: expert
reminder: Une fois maîtrisée, sa capacité Infinity est active. reminder: Une fois maîtrisée, sa capacité [INF] est active.

View File

@@ -2862,4 +2862,4 @@ keyword:
keyword: Imbriglia keyword: Imbriglia
match: Imbriglia match: Imbriglia
mode: expert mode: expert
reminder: Una volta imbrigliata, la sua abilità Infinity è attiva. reminder: Una volta imbrigliata, la sua abilità [INF] è attiva.

View File

@@ -2610,4 +2610,4 @@ keyword:
keyword: Harness keyword: Harness
match: Harness match: Harness
mode: expert mode: expert
reminder: Once harnessed, its Infinity ability is active. reminder: Once harnessed, its [INF] ability is active.

View File

@@ -1801,7 +1801,7 @@ text_filter :=
} + } +
#### step 4 : explict non mana symbols #### step 4 : explict non mana symbols
replace@( replace@(
match: "\\][-+=]?[VHSCEKPLOTQ\\?XYZIWUBRG0-9/|]+\\[", match: "\\][-+=]?[VHSCEKPLOTQINF\\?XYZIWUBRG0-9/|]+\\[",
replace: {"<nosym>" + mana_filter_t() + "</nosym>"} replace: {"<nosym>" + mana_filter_t() + "</nosym>"}
) + ) +
#### step 5 : add mana & tap symbols #### step 5 : add mana & tap symbols
@@ -1827,6 +1827,10 @@ text_filter :=
replace: "\\1" replace: "\\1"
) + ) +
#### step 5c : add explicit mana symbols #### step 5c : add explicit mana symbols
replace@(
match: "\\[INF\\]",
replace: {"<sym>INF</sym>" }
) +
replace@( replace@(
match: "\\[[-+=]?[VHSCEKPLOTQ\\?XYZIWUBRG0-9/|]+\\]", match: "\\[[-+=]?[VHSCEKPLOTQ\\?XYZIWUBRG0-9/|]+\\]",
replace: {"<sym>" + mana_filter_t() + "</sym>"} replace: {"<sym>" + mana_filter_t() + "</sym>"}