Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 1 addition & 4 deletions changelog.txt
Original file line number Diff line number Diff line change
Expand Up @@ -76,11 +76,7 @@ Thanks to GenevensiS for his continued work on keeping up with the Showcases!
• Added Sam Boosalis's Big Text frame

__Other Updates__
<<<<<<< main
• Updated types and keywords to Teenage Mutant Ninja Turtles
=======
• Updated types and keywords to Secrets of Strixhaven
>>>>>>> main
• Aanginer has improved the Inverted+Borderless+Frameless template to better replicate the Secret Lair frame.
• GenevensiS has updated the Mystical Archive frame with the new PT box and an alternate black backing. The old PT can be used with PT color scheme set to Flat.
• Added word_lists_linux as a workaround for Linux users having issues with generated word_lists.
Expand All @@ -99,6 +95,7 @@ __Template Code Updates__

__Bug Fixes__
• Fixed a bug where UB Sagas were too dark.
• Fixed a bug where hybrid alias was broken on Mainframe Planeswalkers.
• Fixed a bug where hybrid Adventure pages were blending incorrectly.
• Fixed a bug where the Hybrid Name option wasn't functional.
• Fixed a bug where the Set tab Inverted Common Symbol wasn't working on most frames.
Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
23 changes: 19 additions & 4 deletions data/magic-m15-mainframe-planeswalker.mse-style/style
Original file line number Diff line number Diff line change
Expand Up @@ -410,6 +410,21 @@ init script:
multicolor_blend: "black"
)
}

alias_colors := {
if is_clear() then rgba(200, 200, 200, 80) else
[
w: rgb(255, 255, 255),
u: rgb(0, 131, 197),
b: rgb(39, 38, 36),
r: rgb(239, 64, 31),
g: rgb(0, 128, 69),
a: rgb(255, 255, 255),
m: rgb(243, 210, 105),
c: rgb(255, 255, 255)
][input]
}

############################################################## Set info fields
set info style:
symbol:
Expand Down Expand Up @@ -627,7 +642,7 @@ card style:
color: black
alias:
left: {if is_skinned() then 45 else 36}
top: 47
top: 48
width: {if is_skinned() then 285 else if use_evobar() then max(100, card_style.alias.content_width) else 0}
height: 20
alignment: { (if is_skinned() then "center") + "bottom shrink-overflow"}
Expand Down Expand Up @@ -1526,14 +1541,14 @@ extra card style:
visible: {styling.opacity != ""}
alias bar:
left: 34
top: 49
top: {if is_clear() then 51 else 50}
width: 307
height: 24
z index: 880
render style: image
image: {if is_clear() then "alias/xalias.png" else alias_bar()}
image: {module_alias()}
visible: {is_skinned() and not use_evobar()}

mask: alias_mask.png
evobar:
left: 40
top: 51
Expand Down
6 changes: 3 additions & 3 deletions data/magic-namecheck.mse-export-template/namelist

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions data/magic-xml.mse-export-template/export-template
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ option field:

script:
MSEcard := {" card>\n"
+" index>"+to_text(position(of:card, in:set))+"/index>\n"
+" name>"+to_text(card.name)+"/name>\n"
+" cost>"+to_text(card.casting_cost)+"/cost>\n"
+" type>\n"
Expand Down
2 changes: 1 addition & 1 deletion data/magic.mse-game/script
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ include file: language
include file: statistics_script
include file: /magic-blends.mse-include/new-blends
############################################################## Versioning
version_date := {"2025-02-01 Template Pack 3.1.e: Mainframe Battles - Prototype"}
version_date := {"2025-02-01 Template Pack 3.1.0: Mainframe Battles"}
version := version_date
############################################################## Common filters
############################################################## Utility
Expand Down