Skip to content

Commit 69cf0c8

Browse files
committed
revert some changes
1 parent 1c82e68 commit 69cf0c8

File tree

7 files changed

+21
-14
lines changed

7 files changed

+21
-14
lines changed

Cryptid.lua

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -238,6 +238,7 @@ function SMODS.injectItems(...)
238238
Cryptid.inject_pointer_aliases()
239239

240240
--this has to be here because the colors dont exist earlier then this
241+
Cryptid.circus_rarities = Cryptid.circus_rarities or {}
241242
Cryptid.circus_rarities["rare"] = { rarity = 3, base_mult = 2, order = 1, colour = G.C.RARITY.Rare }
242243
Cryptid.circus_rarities["epic"] = { rarity = "cry_epic", base_mult = 3, order = 2, colour = G.C.RARITY.cry_epic }
243244
Cryptid.circus_rarities["legendary"] = { rarity = 4, base_mult = 4, order = 3, colour = G.C.RARITY.Legendary }

items/epic.lua

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1940,7 +1940,7 @@ local fleshpanopticon = {
19401940
name = "cry-fleshpanopticon",
19411941
key = "fleshpanopticon",
19421942
pos = { x = 0, y = 5 },
1943-
config = { extra = { boss_size = 10 } },
1943+
config = { extra = { boss_size = 20 } },
19441944
dependencies = {
19451945
items = {
19461946
"set_cry_epic",
@@ -1952,7 +1952,7 @@ local fleshpanopticon = {
19521952
order = 146,
19531953
atlas = "atlasepic",
19541954
loc_vars = function(self, info_queue, center)
1955-
info_queue[#info_queue + 1] = { set = "Spectral", key = "c_soul" }
1955+
info_queue[#info_queue + 1] = { set = "Spectral", key = "c_cry_gateway" }
19561956
if not center.edition or (center.edition and not center.edition.negative) then
19571957
info_queue[#info_queue + 1] = G.P_CENTERS.e_negative
19581958
end
@@ -1994,7 +1994,7 @@ local fleshpanopticon = {
19941994
trigger = "before",
19951995
delay = 0.0,
19961996
func = function()
1997-
local card = create_card(nil, G.consumeables, nil, nil, nil, nil, "c_soul", "sup")
1997+
local card = create_card(nil, G.consumeables, nil, nil, nil, nil, Cryptid.enabled("c_cry_gateway") and "c_cry_gateway" or "c_soul", "sup")
19981998
card:set_edition({ negative = true }, true)
19991999
card:add_to_deck()
20002000
G.consumeables:emplace(card)

items/misc_joker.lua

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -571,7 +571,7 @@ local whip = {
571571
pos = { x = 5, y = 3 },
572572
config = {
573573
extra = {
574-
Xmult_mod = 0.2,
574+
Xmult_mod = 0.25,
575575
x_mult = 1,
576576
},
577577
},
@@ -1912,7 +1912,7 @@ local waluigi = {
19121912
key = "waluigi",
19131913
pos = { x = 0, y = 3 },
19141914
soul_pos = { x = 1, y = 3 },
1915-
config = { extra = { Xmult = 1.4 } },
1915+
config = { extra = { Xmult = 1.5 } },
19161916
loc_vars = function(self, info_queue, center)
19171917
return { vars = { number_format(center.ability.extra.Xmult) } }
19181918
end,
@@ -3151,7 +3151,7 @@ local mondrian = {
31513151
pos = { x = 5, y = 3 },
31523152
config = {
31533153
extra = {
3154-
extra = 0.15,
3154+
extra = 0.25,
31553155
x_mult = 1,
31563156
},
31573157
},
@@ -7459,7 +7459,7 @@ local coin = {
74597459
pos = { x = 0, y = 2 },
74607460
config = {
74617461
extra = { money = 1 },
7462-
immutable = { money_mod = 5 },
7462+
immutable = { money_mod = 10 },
74637463
},
74647464
rarity = 1,
74657465
order = 53,
@@ -8610,7 +8610,7 @@ local kidnap = {
86108610
order = 23,
86118611
pos = { x = 1, y = 2 },
86128612
config = {
8613-
extra = { money = 2 },
8613+
extra = { money = 3 },
86148614
},
86158615
gameset_config = {
86168616
modest = {

items/spooky.lua

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,13 @@ local cotton_candy = {
2828
end
2929
end
3030
end
31-
pseudorandom_element(jokers, pseudoseed("cry_cotton_candy")):set_edition({ negative = true })
31+
pseudoshuffle(jokers, pseudoseed("cry_cotton_candy"))
32+
if jokers[1] then
33+
jokers[1]:set_edition({ negative = true })
34+
if jokers[2] then
35+
jokers[2]:set_edition({ negative = true })
36+
end
37+
end
3238
end
3339
end,
3440
}

items/voucher.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -774,7 +774,7 @@ local moneybean = { -- Seed Money T3; Raise the cap on interest earned in each r
774774
},
775775
},
776776
key = "moneybean",
777-
config = { extra = 75 },
777+
config = { extra = 100 },
778778
atlas = "atlasvoucher",
779779
order = 32668,
780780
pos = { x = 5, y = 1 },

lib/misc.lua

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1017,7 +1017,7 @@ function Cryptid.get_circus_description()
10171017
local desc = {}
10181018
local ind = 1
10191019
local extra_rarities = {}
1020-
for i, v in pairs(Cryptid.circus_rarities) do
1020+
for i, v in pairs(Cryptid.circus_rarities or {}) do
10211021
if not v.hidden then
10221022
extra_rarities[#extra_rarities + 1] = v
10231023
end
@@ -1573,4 +1573,4 @@ function end_round()
15731573
end
15741574
end
15751575
end
1576-
end
1576+
end

localization/en-us.lua

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1441,7 +1441,7 @@ return {
14411441
name = "Cotton Candy",
14421442
text = {
14431443
"When sold, apply {C:dark_edition}Negative{}",
1444-
"to a {C:attention}random{} Joker",
1444+
"to two {C:attention}random{} Jokers",
14451445
},
14461446
},
14471447
j_cry_crustulum = {
@@ -2644,7 +2644,7 @@ return {
26442644
"{C:red}X#1#{} {C:attention}Boss Blind{} size",
26452645
"When {C:attention}Boss Blind{} is defeated,",
26462646
"{C:red}self destructs{}, and creates",
2647-
"a {C:dark_edition}Negative{} {C:spectral}Soul{} card",
2647+
"a {C:dark_edition}Negative{} {C:spectral}Gateway{} card",
26482648
'{C:inactive,s:0.8}"This prison... to hold... me?"',
26492649
},
26502650
},

0 commit comments

Comments
 (0)