Remove Temple

This commit is contained in:
Emik 2026-05-23 23:14:56 +02:00
parent 4f03403000
commit c4077ccb7a
Signed by: emik
GPG key ID: 6B0CD72A5E503BDF
13 changed files with 1 additions and 32 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 56 KiB

After

Width:  |  Height:  |  Size: 56 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 13 KiB

After

Width:  |  Height:  |  Size: 13 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 82 KiB

After

Width:  |  Height:  |  Size: 82 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 33 KiB

After

Width:  |  Height:  |  Size: 33 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 79 KiB

After

Width:  |  Height:  |  Size: 79 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 72 KiB

After

Width:  |  Height:  |  Size: 72 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1 KiB

After

Width:  |  Height:  |  Size: 1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 20 KiB

After

Width:  |  Height:  |  Size: 20 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 611 B

After

Width:  |  Height:  |  Size: 611 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.4 KiB

After

Width:  |  Height:  |  Size: 1.4 KiB

View file

@ -6,7 +6,7 @@
"author": [ "author": [
"Emik" "Emik"
], ],
"version": "2.5.10", "version": "2.6.0",
"badge_colour": "8BE9FD", "badge_colour": "8BE9FD",
"main_file": "src/main.lua", "main_file": "src/main.lua",
"badge_text_colour": "44475A", "badge_text_colour": "44475A",

View file

@ -523,33 +523,6 @@ joker {
end, end,
} }
joker {
key = "temple",
pronouns = "any_all",
config = {extra = {xmult = 2}},
attributes = {"xmult", "enhancements"},
cost = 6,
rarity = 2,
eternal_compat = true,
blueprint_compat = true,
perishable_compat = true,
loc_vars = function(_, info_queue, card)
table.insert(info_queue, G.P_CENTERS.m_wild)
return {vars = {card.ability.extra.xmult}}
end,
calculate = function(_, card, context)
return ((context.individual and
context.cardarea == "unscored" and
SMODS.has_enhancement(context.other_card, "m_wild")
) or context.forcetrigger) and {xmult = card.ability.extra.xmult} or nil
end,
in_pool = function()
return f(G.playing_cards):any(function(v)
return SMODS.has_enhancement(v, "m_wild")
end)
end,
}
joker { joker {
key = "bulldozer", key = "bulldozer",
pronouns = "it_its", pronouns = "it_its",

View file

@ -70,7 +70,3 @@ function SMODS.current_mod.config_tab()
}}, }},
} }
end end
function SMODS.current_mod.optional_features()
return {cardareas = {deck = true, unscored = true}}
end