Initial commit

This commit is contained in:
CajunAvenger
2021-07-09 02:07:58 -05:00
parent 44a72dbc6f
commit eda330eee8
22968 changed files with 376881 additions and 0 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 703 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.5 KiB

View File

@@ -0,0 +1,42 @@
## AgClassic Color Indicator 2016-01-17
mse version: 2.0.0
short name: AgCla CI
full name: AgClassic Color Indicator
installer group: magic/silvercut/AgClassic/Indicator
position hint: 100000
version: 2015-12-20
# This file doesn't do anything, other files in this directory can be included
# in game/style files:
#
#depends on:
# package: magic-agclassic-indicator.mse-include
# version: 2015-12-20
#
#...
#
#init script:
# # Load scripts for AgClassic Color Indicator
# include file: /magic-agclassic-indicator.mse-include/scripts
#
#...
#
#styling field:
# type: boolean
# name: use color indicator
# description: Use color indicator symbol on typeline.
# initial: no
#
#...
#
# ############################# Card type
# indicator:
# left: 20
# top: 295
# width: 15
# height: 15
# z index: 2
# render style: image
# visible: { styling.use_color_indicator == "yes" }
# image: { card_indicator() }

View File

@@ -0,0 +1,30 @@
# AgClassic Indicator 2015-12-20
indicator_template := { "/magic-agclassic-indicator.mse-include/ci{color_count}_" + input + ".png" }
indicator_hybrid := [
0: { indicator_template("c") }
1: { indicator_template(ci_colors[0]) }
2: { indicator_template(ci_colors[0] + ci_colors[1]) }
3: { indicator_template(ci_colors[0] + ci_colors[1] + ci_colors[2]) }
4: { indicator_template(ci_colors[0] + ci_colors[1] + ci_colors[2] + ci_colors[3]) }
5: { indicator_template(ci_colors[0] + ci_colors[1] + ci_colors[2] + ci_colors[3] + ci_colors[4]) }
]
# Determine indicator based on the card_color multiple choice options
indicator_color := {
# The selected colors
ci_colors := sort_text( order: "(wubrg)"
, (if chosen(choice:"white") then "w")
+ (if chosen(choice:"blue") then "u")
+ (if chosen(choice:"black") then "b")
+ (if chosen(choice:"red") then "r")
+ (if chosen(choice:"green") then "g"))
color_count := number_of_items(in: ci_colors)
base_hybrid[color_count]()
}
card_indicator := { indicator_color(type:"identity", base_hybrid:indicator_hybrid) }