Include other spectrals
This commit is contained in:
parent
00abcb0c14
commit
89b072cb45
3 changed files with 20 additions and 2 deletions
|
|
@ -123,6 +123,14 @@ position = "at"
|
||||||
payload = "Jane.get_chipmult_sum(hand_chips, mult))"
|
payload = "Jane.get_chipmult_sum(hand_chips, mult))"
|
||||||
match_indent = true
|
match_indent = true
|
||||||
|
|
||||||
|
[[patches]]
|
||||||
|
[patches.pattern]
|
||||||
|
target = '=[SMODS Cryptid "items/spectral.lua"]'
|
||||||
|
pattern = "local _first_dissolve = nil"
|
||||||
|
position = "after"
|
||||||
|
payload = 'deletable_jokers = next(SMODS.find_card("j_jane_saint")) and {} or deletable_jokers'
|
||||||
|
match_indent = true
|
||||||
|
|
||||||
[[patches]]
|
[[patches]]
|
||||||
[patches.pattern]
|
[patches.pattern]
|
||||||
target = '=[SMODS Cryptid "items/exotic.lua"]'
|
target = '=[SMODS Cryptid "items/exotic.lua"]'
|
||||||
|
|
|
||||||
|
|
@ -17,5 +17,5 @@
|
||||||
"conflicts": [
|
"conflicts": [
|
||||||
"Jen"
|
"Jen"
|
||||||
],
|
],
|
||||||
"version": "1.5.5"
|
"version": "1.5.6"
|
||||||
}
|
}
|
||||||
|
|
@ -478,7 +478,8 @@ SMODS.Joker {
|
||||||
loc_txt = {
|
loc_txt = {
|
||||||
name = "The Saint{C:jane_RGB}#1#",
|
name = "The Saint{C:jane_RGB}#1#",
|
||||||
text = Cryptid and {
|
text = Cryptid and {
|
||||||
"{C:spectral}Ankh and Gateway {}will {C:attention}not destroy Jokers",
|
"{C:spectral}Analog{}, {C:spectral}Ankh{}, {C:spectral}Gateway{}, and",
|
||||||
|
"{C:spectral,s:0.95}Summoning {s:0.95}will {C:attention,s:0.95}not destroy Jokers",
|
||||||
"{C:jane_RGB}#2#{}#3#{X:black,C:jane_RGB,s:1.5}#4#{C:spectral}#5#{C:chips}#6#{}#7#{C:mult}#8#",
|
"{C:jane_RGB}#2#{}#3#{X:black,C:jane_RGB,s:1.5}#4#{C:spectral}#5#{C:chips}#6#{}#7#{C:mult}#8#",
|
||||||
"{C:inactive,s:1.25}#9#{C:attention,s:1.25}#10#{C:inactive,s:1.25}#11#{C:inactive}#12#",
|
"{C:inactive,s:1.25}#9#{C:attention,s:1.25}#10#{C:inactive,s:1.25}#11#{C:inactive}#12#",
|
||||||
} or {
|
} or {
|
||||||
|
|
@ -494,8 +495,17 @@ SMODS.Joker {
|
||||||
rarity = 4,
|
rarity = 4,
|
||||||
blueprint_compat = true,
|
blueprint_compat = true,
|
||||||
loc_vars = function(_, info_queue, card)
|
loc_vars = function(_, info_queue, card)
|
||||||
|
if Cryptid then
|
||||||
|
info_queue[#info_queue + 1] = G.P_CENTERS.c_cry_analog
|
||||||
|
end
|
||||||
|
|
||||||
info_queue[#info_queue + 1] = G.P_CENTERS.c_ankh
|
info_queue[#info_queue + 1] = G.P_CENTERS.c_ankh
|
||||||
info_queue[#info_queue + 1] = Cryptid and G.P_CENTERS.c_cry_gateway or G.P_CENTERS.c_soul
|
info_queue[#info_queue + 1] = Cryptid and G.P_CENTERS.c_cry_gateway or G.P_CENTERS.c_soul
|
||||||
|
|
||||||
|
if Cryptid then
|
||||||
|
info_queue[#info_queue + 1] = G.P_CENTERS.c_cry_summoning
|
||||||
|
end
|
||||||
|
|
||||||
local extra = card.ability.extra
|
local extra = card.ability.extra
|
||||||
local karma = extra.karma
|
local karma = extra.karma
|
||||||
local max_karma = extra.max_karma
|
local max_karma = extra.max_karma
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue