Skip to content

Commit 4d283c0

Browse files
committed
add a few reworks
1 parent 2e4f08d commit 4d283c0

File tree

8 files changed

+183
-313
lines changed

8 files changed

+183
-313
lines changed

items/achievement.lua

Lines changed: 1 addition & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -52,19 +52,7 @@ local haxxor = {
5252
end,
5353
}
5454

55-
local googol_play_pass = {
56-
object_type = "Achievement",
57-
key = "googol_play_pass",
58-
order = 4,
59-
bypass_all_unlocked = true,
60-
atlas = "cry_achievements",
61-
--reset_on_startup = true,
62-
unlock_condition = function(self, args)
63-
if args.type == "googol_play_rigged" then
64-
return true
65-
end
66-
end,
67-
}
55+
--order 4 was googol play pass
6856

6957
local bullet_hell = {
7058
object_type = "Achievement",
@@ -466,7 +454,6 @@ local technically_positive = {
466454
-- Break Infinity: Score more than 1.57e308 in one hand
467455
-- H4xx0r: Use a cheat code
468456
-- We Told You Not To: Use ://CRASH
469-
-- Googol Play Pass: Rig a Googol Play Card
470457
-- Bullet Hell: Have 15 copies of AP Joker
471458
-- !niW uoY: Reach Ante -8
472459
-- Now the Fun Begins: Obtain Canvas
@@ -497,7 +484,6 @@ local achievement_objects = {
497484
what_have_you_done,
498485
used_crash,
499486
haxxor,
500-
googol_play_pass,
501487
pull_request,
502488
niw_uoy,
503489
jokes_on_you,

items/code.lua

Lines changed: 1 addition & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -991,10 +991,7 @@ local payload = {
991991
end,
992992
can_bulk_use = true,
993993
use = function(self, card, area, copier)
994-
G.GAME.cry_payload = to_big((G.GAME.cry_payload or 1)) * to_big(card.ability.interest_mult)
995-
end,
996-
bulk_use = function(self, card, area, copier, number)
997-
G.GAME.cry_payload = to_big((G.GAME.cry_payload or 1)) * to_big(card.ability.interest_mult) ^ to_big(number)
994+
G.GAME.cry_payload = 3
998995
end,
999996
demicoloncompat = true,
1000997
force_use = function(self, card, area)
@@ -1895,12 +1892,6 @@ local seed = {
18951892
end,
18961893
use = function(self, card, area, copier)
18971894
local cards = Cryptid.get_highlighted_cards({ G.jokers, G.hand, G.consumeables, G.pack_cards }, card, 1, 1)
1898-
if cards[1] then
1899-
cards[1].ability.cry_rigged = true
1900-
if cards[1].config.center.key == "j_cry_googol_play" then
1901-
check_for_unlock({ type = "googol_play_rigged" })
1902-
end
1903-
end
19041895
if cards[1].area == G.hand then
19051896
G.E_MANAGER:add_event(Event({
19061897
trigger = "after",

0 commit comments

Comments
 (0)