Reintroduce The Wee in non-Cryptid
This commit is contained in:
parent
a40e85c8c4
commit
f5bb331e6f
2 changed files with 29 additions and 31 deletions
|
|
@ -17,5 +17,5 @@
|
||||||
"conflicts": [
|
"conflicts": [
|
||||||
"Jen"
|
"Jen"
|
||||||
],
|
],
|
||||||
"version": "1.5.23"
|
"version": "1.5.24"
|
||||||
}
|
}
|
||||||
|
|
@ -62,40 +62,38 @@ SMODS.Blind {
|
||||||
end,
|
end,
|
||||||
}
|
}
|
||||||
|
|
||||||
if not Cryptid then
|
if Cryptid then
|
||||||
return
|
SMODS.Blind {
|
||||||
end
|
loc_txt = {
|
||||||
|
name = "The Insignia",
|
||||||
|
text = {"Hand must contain", "only one suit"},
|
||||||
|
},
|
||||||
|
key = "insignia",
|
||||||
|
config = {},
|
||||||
|
boss = {min = 2, max = 10, no_orb = true, hardcore = true},
|
||||||
|
boss_colour = HEX("a5aa00"),
|
||||||
|
atlas = "janeblinds",
|
||||||
|
pos = {x = 0, y = 9},
|
||||||
|
vars = {},
|
||||||
|
dollars = 5,
|
||||||
|
mult = 2,
|
||||||
|
debuff_hand = function(_, cards, _, _, _)
|
||||||
|
local numsuits = 0
|
||||||
|
local checked_suits = {}
|
||||||
|
|
||||||
SMODS.Blind {
|
for _, card in ipairs(cards) do
|
||||||
loc_txt = {
|
if not card:nosuit() and not checked_suits[card.base.suit] then
|
||||||
name = "The Insignia",
|
numsuits = numsuits + 1
|
||||||
text = {"Hand must contain", "only one suit"},
|
checked_suits[card.base.suit] = true
|
||||||
},
|
|
||||||
key = "insignia",
|
|
||||||
config = {},
|
|
||||||
boss = {min = 2, max = 10, no_orb = true, hardcore = true},
|
|
||||||
boss_colour = HEX("a5aa00"),
|
|
||||||
atlas = "janeblinds",
|
|
||||||
pos = {x = 0, y = 9},
|
|
||||||
vars = {},
|
|
||||||
dollars = 5,
|
|
||||||
mult = 2,
|
|
||||||
debuff_hand = function(_, cards, _, _, _)
|
|
||||||
local numsuits = 0
|
|
||||||
local checked_suits = {}
|
|
||||||
|
|
||||||
for _, card in ipairs(cards) do
|
if numsuits > 1 then
|
||||||
if not card:nosuit() and not checked_suits[card.base.suit] then
|
return true
|
||||||
numsuits = numsuits + 1
|
end
|
||||||
checked_suits[card.base.suit] = true
|
|
||||||
|
|
||||||
if numsuits > 1 then
|
|
||||||
return true
|
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
end,
|
||||||
end,
|
}
|
||||||
}
|
end
|
||||||
|
|
||||||
SMODS.Blind {
|
SMODS.Blind {
|
||||||
loc_txt = {
|
loc_txt = {
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue