UB Adventure, Saga, Mainframe (#73)

* add UB frames to M15 Mainframes, M15 Sagas, and M15 Adventures
* Putting off Mainframe DFC and Mainframe Walkers until the Frame Disassembly

---------

Co-authored-by: cajun <12363371+CajunAvenger@users.noreply.github.com>
This commit is contained in:
cajun
2024-09-23 09:55:09 -05:00
committed by GitHub
parent 0e8925a64e
commit ce77357b06
62 changed files with 131 additions and 58 deletions

View File

@@ -57,6 +57,7 @@ init script:
double_flat: "/magic-modules.mse-include/pages/double_flat/",
single_flat: "/magic-modules.mse-include/pages/single_flat/",
star: "/magic-modules.mse-include/trims/star/",
ub: "/magic-modules.mse-include/trims/beyond/",
identity: "/magic-modules.mse-include/indicators/"
]
template_suffix := [
@@ -78,15 +79,16 @@ init script:
double_flat: "page.png",
single_flat: "page.png",
star: "star.png",
beyond: "beyond.png",
identity: "identity.png"
]
template := {
if type_name(harder_script[type] or else nil) != "nothing"
if type_name(harder_script[type] or else nil) != type_name(nil)
then harder_script[type](input, land:false)
else template_prefix[type] + input + template_suffix[type]
}
land_template := {
if type_name(harder_script[type] or else nil) != "nothing"
if type_name(harder_script[type] or else nil) != type_name(nil)
then harder_script[type](input, land:true)
else template_prefix[type] + input + template_suffix[type]
}