├── .gitignore ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── assets ├── 1x │ ├── b_ccc_decks.png │ ├── bl_ccc_blinds.png │ ├── c_ccc_consumables.png │ ├── ccc_icon.png │ ├── desktop.ini │ ├── instapix │ │ └── stickers │ │ │ └── reversal.png │ ├── j_ccc_jokers.png │ ├── moveblock_pr.png │ ├── moveblock_rl.png │ ├── s_ccc_sleeves.png │ ├── smotscoin.png │ └── v_ccc_vouchers.png ├── 2x │ ├── b_ccc_decks.png │ ├── bl_ccc_blinds.png │ ├── c_ccc_consumables.png │ ├── ccc_icon.png │ ├── desktop.ini │ ├── j_ccc_jokers.png │ ├── moveblock_pr.png │ ├── moveblock_rl.png │ ├── s_ccc_sleeves.png │ ├── smotscoin.png │ └── v_ccc_vouchers.png ├── joker.msk └── shaders │ └── mirrored.fs ├── localization └── en-us.lua ├── lovely ├── b_bside.toml ├── b_virus.toml ├── bl_golden.toml ├── bl_shriek.toml ├── j_badeline.toml ├── j_balls.toml ├── j_booster.toml ├── j_climbinggear.toml ├── j_eventhorizon.toml ├── j_hearts.toml ├── j_moveblock.toml ├── j_partofyou.toml ├── j_pointlessmachines.toml ├── j_rainbowspinner.toml ├── j_seeker.toml ├── j_strawberry.toml ├── j_theocrystal.toml └── z_steamoddedpatches.toml ├── lua_files ├── _helper_functions.lua ├── blinds.lua ├── consumables.lua ├── decks.lua ├── editions.lua ├── jokers.lua ├── jokers │ ├── 99_thelastfile.lua │ ├── common │ │ ├── berryseeds.lua │ │ ├── brittlecloud.lua │ │ ├── bumper.lua │ │ ├── bunnyhop.lua │ │ ├── cloud.lua │ │ ├── coreswitch.lua │ │ ├── cornerjump.lua │ │ ├── dash.lua │ │ ├── freeze.lua │ │ ├── grab.lua │ │ ├── hardlist.lua │ │ ├── jokerppt.lua │ │ ├── jump.lua │ │ ├── miniheart.lua │ │ ├── refundpolicy.lua │ │ ├── secretshrine.lua │ │ ├── slightmiscalculation.lua │ │ ├── smotsgaming.lua │ │ ├── switchgate.lua │ │ ├── templerock.lua │ │ ├── waterfall.lua │ │ └── zipper.lua │ ├── legendary │ │ ├── badeline.lua │ │ ├── granny.lua │ │ └── madeline.lua │ ├── rare │ │ ├── bird.lua │ │ ├── bubsdrop.lua │ │ ├── checkpoint.lua │ │ ├── collapsingbridge.lua │ │ ├── coyotejump.lua │ │ ├── kevin.lua │ │ ├── lettinggo.lua │ │ ├── omniousmirror.lua │ │ ├── partofyou.lua │ │ ├── rainbowspinner.lua │ │ ├── redbooster.lua │ │ ├── seeker.lua │ │ ├── strongwind.lua │ │ └── theocrystal.lua │ ├── secret │ │ ├── crystalheart.lua │ │ ├── heavyheart.lua │ │ ├── mechanicalheart.lua │ │ └── quietheart.lua │ ├── strawberries │ │ ├── 1up.lua │ │ ├── goldenstrawberry.lua │ │ ├── moonberry.lua │ │ ├── strawberry.lua │ │ ├── strawberrypie.lua │ │ ├── thecrowd.lua │ │ ├── wingedgoldenstrawberry.lua │ │ └── wingedstrawberry.lua │ └── uncommon │ │ ├── bluespinner.lua │ │ ├── books.lua │ │ ├── cassetteblock.lua │ │ ├── chests.lua │ │ ├── climbinggear.lua │ │ ├── crumblejoker.lua │ │ ├── eventhorizon.lua │ │ ├── feather.lua │ │ ├── fireball.lua │ │ ├── greenbooster.lua │ │ ├── hyperdash.lua │ │ ├── iceball.lua │ │ ├── introcar.lua │ │ ├── lapidary.lua │ │ ├── moveblock.lua │ │ ├── pico8joker.lua │ │ ├── pointlessmachines.lua │ │ ├── purplespinner.lua │ │ ├── redspinner.lua │ │ ├── templeeyes.lua │ │ ├── tothesummit.lua │ │ └── towels.lua ├── rarity.lua ├── sleeves.lua └── vouchers.lua ├── main.lua ├── mod.json └── settings.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuroraKy/CelesteCardCollection/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuroraKy/CelesteCardCollection/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuroraKy/CelesteCardCollection/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuroraKy/CelesteCardCollection/HEAD/README.md -------------------------------------------------------------------------------- /assets/1x/b_ccc_decks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuroraKy/CelesteCardCollection/HEAD/assets/1x/b_ccc_decks.png -------------------------------------------------------------------------------- /assets/1x/bl_ccc_blinds.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuroraKy/CelesteCardCollection/HEAD/assets/1x/bl_ccc_blinds.png -------------------------------------------------------------------------------- /assets/1x/c_ccc_consumables.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuroraKy/CelesteCardCollection/HEAD/assets/1x/c_ccc_consumables.png -------------------------------------------------------------------------------- /assets/1x/ccc_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuroraKy/CelesteCardCollection/HEAD/assets/1x/ccc_icon.png -------------------------------------------------------------------------------- /assets/1x/desktop.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuroraKy/CelesteCardCollection/HEAD/assets/1x/desktop.ini -------------------------------------------------------------------------------- /assets/1x/instapix/stickers/reversal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuroraKy/CelesteCardCollection/HEAD/assets/1x/instapix/stickers/reversal.png -------------------------------------------------------------------------------- /assets/1x/j_ccc_jokers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuroraKy/CelesteCardCollection/HEAD/assets/1x/j_ccc_jokers.png -------------------------------------------------------------------------------- /assets/1x/moveblock_pr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuroraKy/CelesteCardCollection/HEAD/assets/1x/moveblock_pr.png -------------------------------------------------------------------------------- /assets/1x/moveblock_rl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuroraKy/CelesteCardCollection/HEAD/assets/1x/moveblock_rl.png -------------------------------------------------------------------------------- /assets/1x/s_ccc_sleeves.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuroraKy/CelesteCardCollection/HEAD/assets/1x/s_ccc_sleeves.png -------------------------------------------------------------------------------- /assets/1x/smotscoin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuroraKy/CelesteCardCollection/HEAD/assets/1x/smotscoin.png -------------------------------------------------------------------------------- /assets/1x/v_ccc_vouchers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuroraKy/CelesteCardCollection/HEAD/assets/1x/v_ccc_vouchers.png -------------------------------------------------------------------------------- /assets/2x/b_ccc_decks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuroraKy/CelesteCardCollection/HEAD/assets/2x/b_ccc_decks.png -------------------------------------------------------------------------------- /assets/2x/bl_ccc_blinds.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuroraKy/CelesteCardCollection/HEAD/assets/2x/bl_ccc_blinds.png -------------------------------------------------------------------------------- /assets/2x/c_ccc_consumables.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuroraKy/CelesteCardCollection/HEAD/assets/2x/c_ccc_consumables.png -------------------------------------------------------------------------------- /assets/2x/ccc_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuroraKy/CelesteCardCollection/HEAD/assets/2x/ccc_icon.png -------------------------------------------------------------------------------- /assets/2x/desktop.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuroraKy/CelesteCardCollection/HEAD/assets/2x/desktop.ini -------------------------------------------------------------------------------- /assets/2x/j_ccc_jokers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuroraKy/CelesteCardCollection/HEAD/assets/2x/j_ccc_jokers.png -------------------------------------------------------------------------------- /assets/2x/moveblock_pr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuroraKy/CelesteCardCollection/HEAD/assets/2x/moveblock_pr.png -------------------------------------------------------------------------------- /assets/2x/moveblock_rl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuroraKy/CelesteCardCollection/HEAD/assets/2x/moveblock_rl.png -------------------------------------------------------------------------------- /assets/2x/s_ccc_sleeves.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuroraKy/CelesteCardCollection/HEAD/assets/2x/s_ccc_sleeves.png -------------------------------------------------------------------------------- /assets/2x/smotscoin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuroraKy/CelesteCardCollection/HEAD/assets/2x/smotscoin.png -------------------------------------------------------------------------------- /assets/2x/v_ccc_vouchers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuroraKy/CelesteCardCollection/HEAD/assets/2x/v_ccc_vouchers.png -------------------------------------------------------------------------------- /assets/joker.msk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuroraKy/CelesteCardCollection/HEAD/assets/joker.msk -------------------------------------------------------------------------------- /assets/shaders/mirrored.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuroraKy/CelesteCardCollection/HEAD/assets/shaders/mirrored.fs -------------------------------------------------------------------------------- /localization/en-us.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuroraKy/CelesteCardCollection/HEAD/localization/en-us.lua -------------------------------------------------------------------------------- /lovely/b_bside.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuroraKy/CelesteCardCollection/HEAD/lovely/b_bside.toml -------------------------------------------------------------------------------- /lovely/b_virus.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuroraKy/CelesteCardCollection/HEAD/lovely/b_virus.toml -------------------------------------------------------------------------------- /lovely/bl_golden.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuroraKy/CelesteCardCollection/HEAD/lovely/bl_golden.toml -------------------------------------------------------------------------------- /lovely/bl_shriek.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuroraKy/CelesteCardCollection/HEAD/lovely/bl_shriek.toml -------------------------------------------------------------------------------- /lovely/j_badeline.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuroraKy/CelesteCardCollection/HEAD/lovely/j_badeline.toml -------------------------------------------------------------------------------- /lovely/j_balls.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuroraKy/CelesteCardCollection/HEAD/lovely/j_balls.toml -------------------------------------------------------------------------------- /lovely/j_booster.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuroraKy/CelesteCardCollection/HEAD/lovely/j_booster.toml -------------------------------------------------------------------------------- /lovely/j_climbinggear.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuroraKy/CelesteCardCollection/HEAD/lovely/j_climbinggear.toml -------------------------------------------------------------------------------- /lovely/j_eventhorizon.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuroraKy/CelesteCardCollection/HEAD/lovely/j_eventhorizon.toml -------------------------------------------------------------------------------- /lovely/j_hearts.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuroraKy/CelesteCardCollection/HEAD/lovely/j_hearts.toml -------------------------------------------------------------------------------- /lovely/j_moveblock.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuroraKy/CelesteCardCollection/HEAD/lovely/j_moveblock.toml -------------------------------------------------------------------------------- /lovely/j_partofyou.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuroraKy/CelesteCardCollection/HEAD/lovely/j_partofyou.toml -------------------------------------------------------------------------------- /lovely/j_pointlessmachines.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuroraKy/CelesteCardCollection/HEAD/lovely/j_pointlessmachines.toml -------------------------------------------------------------------------------- /lovely/j_rainbowspinner.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuroraKy/CelesteCardCollection/HEAD/lovely/j_rainbowspinner.toml -------------------------------------------------------------------------------- /lovely/j_seeker.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuroraKy/CelesteCardCollection/HEAD/lovely/j_seeker.toml -------------------------------------------------------------------------------- /lovely/j_strawberry.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuroraKy/CelesteCardCollection/HEAD/lovely/j_strawberry.toml -------------------------------------------------------------------------------- /lovely/j_theocrystal.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuroraKy/CelesteCardCollection/HEAD/lovely/j_theocrystal.toml -------------------------------------------------------------------------------- /lovely/z_steamoddedpatches.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuroraKy/CelesteCardCollection/HEAD/lovely/z_steamoddedpatches.toml -------------------------------------------------------------------------------- /lua_files/_helper_functions.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuroraKy/CelesteCardCollection/HEAD/lua_files/_helper_functions.lua -------------------------------------------------------------------------------- /lua_files/blinds.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuroraKy/CelesteCardCollection/HEAD/lua_files/blinds.lua -------------------------------------------------------------------------------- /lua_files/consumables.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuroraKy/CelesteCardCollection/HEAD/lua_files/consumables.lua -------------------------------------------------------------------------------- /lua_files/decks.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuroraKy/CelesteCardCollection/HEAD/lua_files/decks.lua -------------------------------------------------------------------------------- /lua_files/editions.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuroraKy/CelesteCardCollection/HEAD/lua_files/editions.lua -------------------------------------------------------------------------------- /lua_files/jokers.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuroraKy/CelesteCardCollection/HEAD/lua_files/jokers.lua -------------------------------------------------------------------------------- /lua_files/jokers/99_thelastfile.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuroraKy/CelesteCardCollection/HEAD/lua_files/jokers/99_thelastfile.lua -------------------------------------------------------------------------------- /lua_files/jokers/common/berryseeds.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuroraKy/CelesteCardCollection/HEAD/lua_files/jokers/common/berryseeds.lua -------------------------------------------------------------------------------- /lua_files/jokers/common/brittlecloud.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuroraKy/CelesteCardCollection/HEAD/lua_files/jokers/common/brittlecloud.lua -------------------------------------------------------------------------------- /lua_files/jokers/common/bumper.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuroraKy/CelesteCardCollection/HEAD/lua_files/jokers/common/bumper.lua -------------------------------------------------------------------------------- /lua_files/jokers/common/bunnyhop.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuroraKy/CelesteCardCollection/HEAD/lua_files/jokers/common/bunnyhop.lua -------------------------------------------------------------------------------- /lua_files/jokers/common/cloud.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuroraKy/CelesteCardCollection/HEAD/lua_files/jokers/common/cloud.lua -------------------------------------------------------------------------------- /lua_files/jokers/common/coreswitch.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuroraKy/CelesteCardCollection/HEAD/lua_files/jokers/common/coreswitch.lua -------------------------------------------------------------------------------- /lua_files/jokers/common/cornerjump.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuroraKy/CelesteCardCollection/HEAD/lua_files/jokers/common/cornerjump.lua -------------------------------------------------------------------------------- /lua_files/jokers/common/dash.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuroraKy/CelesteCardCollection/HEAD/lua_files/jokers/common/dash.lua -------------------------------------------------------------------------------- /lua_files/jokers/common/freeze.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuroraKy/CelesteCardCollection/HEAD/lua_files/jokers/common/freeze.lua -------------------------------------------------------------------------------- /lua_files/jokers/common/grab.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuroraKy/CelesteCardCollection/HEAD/lua_files/jokers/common/grab.lua -------------------------------------------------------------------------------- /lua_files/jokers/common/hardlist.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuroraKy/CelesteCardCollection/HEAD/lua_files/jokers/common/hardlist.lua -------------------------------------------------------------------------------- /lua_files/jokers/common/jokerppt.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuroraKy/CelesteCardCollection/HEAD/lua_files/jokers/common/jokerppt.lua -------------------------------------------------------------------------------- /lua_files/jokers/common/jump.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuroraKy/CelesteCardCollection/HEAD/lua_files/jokers/common/jump.lua -------------------------------------------------------------------------------- /lua_files/jokers/common/miniheart.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuroraKy/CelesteCardCollection/HEAD/lua_files/jokers/common/miniheart.lua -------------------------------------------------------------------------------- /lua_files/jokers/common/refundpolicy.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuroraKy/CelesteCardCollection/HEAD/lua_files/jokers/common/refundpolicy.lua -------------------------------------------------------------------------------- /lua_files/jokers/common/secretshrine.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuroraKy/CelesteCardCollection/HEAD/lua_files/jokers/common/secretshrine.lua -------------------------------------------------------------------------------- /lua_files/jokers/common/slightmiscalculation.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuroraKy/CelesteCardCollection/HEAD/lua_files/jokers/common/slightmiscalculation.lua -------------------------------------------------------------------------------- /lua_files/jokers/common/smotsgaming.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuroraKy/CelesteCardCollection/HEAD/lua_files/jokers/common/smotsgaming.lua -------------------------------------------------------------------------------- /lua_files/jokers/common/switchgate.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuroraKy/CelesteCardCollection/HEAD/lua_files/jokers/common/switchgate.lua -------------------------------------------------------------------------------- /lua_files/jokers/common/templerock.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuroraKy/CelesteCardCollection/HEAD/lua_files/jokers/common/templerock.lua -------------------------------------------------------------------------------- /lua_files/jokers/common/waterfall.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuroraKy/CelesteCardCollection/HEAD/lua_files/jokers/common/waterfall.lua -------------------------------------------------------------------------------- /lua_files/jokers/common/zipper.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuroraKy/CelesteCardCollection/HEAD/lua_files/jokers/common/zipper.lua -------------------------------------------------------------------------------- /lua_files/jokers/legendary/badeline.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuroraKy/CelesteCardCollection/HEAD/lua_files/jokers/legendary/badeline.lua -------------------------------------------------------------------------------- /lua_files/jokers/legendary/granny.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuroraKy/CelesteCardCollection/HEAD/lua_files/jokers/legendary/granny.lua -------------------------------------------------------------------------------- /lua_files/jokers/legendary/madeline.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuroraKy/CelesteCardCollection/HEAD/lua_files/jokers/legendary/madeline.lua -------------------------------------------------------------------------------- /lua_files/jokers/rare/bird.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuroraKy/CelesteCardCollection/HEAD/lua_files/jokers/rare/bird.lua -------------------------------------------------------------------------------- /lua_files/jokers/rare/bubsdrop.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuroraKy/CelesteCardCollection/HEAD/lua_files/jokers/rare/bubsdrop.lua -------------------------------------------------------------------------------- /lua_files/jokers/rare/checkpoint.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuroraKy/CelesteCardCollection/HEAD/lua_files/jokers/rare/checkpoint.lua -------------------------------------------------------------------------------- /lua_files/jokers/rare/collapsingbridge.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuroraKy/CelesteCardCollection/HEAD/lua_files/jokers/rare/collapsingbridge.lua -------------------------------------------------------------------------------- /lua_files/jokers/rare/coyotejump.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuroraKy/CelesteCardCollection/HEAD/lua_files/jokers/rare/coyotejump.lua -------------------------------------------------------------------------------- /lua_files/jokers/rare/kevin.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuroraKy/CelesteCardCollection/HEAD/lua_files/jokers/rare/kevin.lua -------------------------------------------------------------------------------- /lua_files/jokers/rare/lettinggo.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuroraKy/CelesteCardCollection/HEAD/lua_files/jokers/rare/lettinggo.lua -------------------------------------------------------------------------------- /lua_files/jokers/rare/omniousmirror.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuroraKy/CelesteCardCollection/HEAD/lua_files/jokers/rare/omniousmirror.lua -------------------------------------------------------------------------------- /lua_files/jokers/rare/partofyou.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuroraKy/CelesteCardCollection/HEAD/lua_files/jokers/rare/partofyou.lua -------------------------------------------------------------------------------- /lua_files/jokers/rare/rainbowspinner.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuroraKy/CelesteCardCollection/HEAD/lua_files/jokers/rare/rainbowspinner.lua -------------------------------------------------------------------------------- /lua_files/jokers/rare/redbooster.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuroraKy/CelesteCardCollection/HEAD/lua_files/jokers/rare/redbooster.lua -------------------------------------------------------------------------------- /lua_files/jokers/rare/seeker.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuroraKy/CelesteCardCollection/HEAD/lua_files/jokers/rare/seeker.lua -------------------------------------------------------------------------------- /lua_files/jokers/rare/strongwind.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuroraKy/CelesteCardCollection/HEAD/lua_files/jokers/rare/strongwind.lua -------------------------------------------------------------------------------- /lua_files/jokers/rare/theocrystal.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuroraKy/CelesteCardCollection/HEAD/lua_files/jokers/rare/theocrystal.lua -------------------------------------------------------------------------------- /lua_files/jokers/secret/crystalheart.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuroraKy/CelesteCardCollection/HEAD/lua_files/jokers/secret/crystalheart.lua -------------------------------------------------------------------------------- /lua_files/jokers/secret/heavyheart.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuroraKy/CelesteCardCollection/HEAD/lua_files/jokers/secret/heavyheart.lua -------------------------------------------------------------------------------- /lua_files/jokers/secret/mechanicalheart.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuroraKy/CelesteCardCollection/HEAD/lua_files/jokers/secret/mechanicalheart.lua -------------------------------------------------------------------------------- /lua_files/jokers/secret/quietheart.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuroraKy/CelesteCardCollection/HEAD/lua_files/jokers/secret/quietheart.lua -------------------------------------------------------------------------------- /lua_files/jokers/strawberries/1up.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuroraKy/CelesteCardCollection/HEAD/lua_files/jokers/strawberries/1up.lua -------------------------------------------------------------------------------- /lua_files/jokers/strawberries/goldenstrawberry.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuroraKy/CelesteCardCollection/HEAD/lua_files/jokers/strawberries/goldenstrawberry.lua -------------------------------------------------------------------------------- /lua_files/jokers/strawberries/moonberry.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuroraKy/CelesteCardCollection/HEAD/lua_files/jokers/strawberries/moonberry.lua -------------------------------------------------------------------------------- /lua_files/jokers/strawberries/strawberry.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuroraKy/CelesteCardCollection/HEAD/lua_files/jokers/strawberries/strawberry.lua -------------------------------------------------------------------------------- /lua_files/jokers/strawberries/strawberrypie.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuroraKy/CelesteCardCollection/HEAD/lua_files/jokers/strawberries/strawberrypie.lua -------------------------------------------------------------------------------- /lua_files/jokers/strawberries/thecrowd.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuroraKy/CelesteCardCollection/HEAD/lua_files/jokers/strawberries/thecrowd.lua -------------------------------------------------------------------------------- /lua_files/jokers/strawberries/wingedgoldenstrawberry.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuroraKy/CelesteCardCollection/HEAD/lua_files/jokers/strawberries/wingedgoldenstrawberry.lua -------------------------------------------------------------------------------- /lua_files/jokers/strawberries/wingedstrawberry.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuroraKy/CelesteCardCollection/HEAD/lua_files/jokers/strawberries/wingedstrawberry.lua -------------------------------------------------------------------------------- /lua_files/jokers/uncommon/bluespinner.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuroraKy/CelesteCardCollection/HEAD/lua_files/jokers/uncommon/bluespinner.lua -------------------------------------------------------------------------------- /lua_files/jokers/uncommon/books.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuroraKy/CelesteCardCollection/HEAD/lua_files/jokers/uncommon/books.lua -------------------------------------------------------------------------------- /lua_files/jokers/uncommon/cassetteblock.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuroraKy/CelesteCardCollection/HEAD/lua_files/jokers/uncommon/cassetteblock.lua -------------------------------------------------------------------------------- /lua_files/jokers/uncommon/chests.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuroraKy/CelesteCardCollection/HEAD/lua_files/jokers/uncommon/chests.lua -------------------------------------------------------------------------------- /lua_files/jokers/uncommon/climbinggear.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuroraKy/CelesteCardCollection/HEAD/lua_files/jokers/uncommon/climbinggear.lua -------------------------------------------------------------------------------- /lua_files/jokers/uncommon/crumblejoker.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuroraKy/CelesteCardCollection/HEAD/lua_files/jokers/uncommon/crumblejoker.lua -------------------------------------------------------------------------------- /lua_files/jokers/uncommon/eventhorizon.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuroraKy/CelesteCardCollection/HEAD/lua_files/jokers/uncommon/eventhorizon.lua -------------------------------------------------------------------------------- /lua_files/jokers/uncommon/feather.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuroraKy/CelesteCardCollection/HEAD/lua_files/jokers/uncommon/feather.lua -------------------------------------------------------------------------------- /lua_files/jokers/uncommon/fireball.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuroraKy/CelesteCardCollection/HEAD/lua_files/jokers/uncommon/fireball.lua -------------------------------------------------------------------------------- /lua_files/jokers/uncommon/greenbooster.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuroraKy/CelesteCardCollection/HEAD/lua_files/jokers/uncommon/greenbooster.lua -------------------------------------------------------------------------------- /lua_files/jokers/uncommon/hyperdash.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuroraKy/CelesteCardCollection/HEAD/lua_files/jokers/uncommon/hyperdash.lua -------------------------------------------------------------------------------- /lua_files/jokers/uncommon/iceball.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuroraKy/CelesteCardCollection/HEAD/lua_files/jokers/uncommon/iceball.lua -------------------------------------------------------------------------------- /lua_files/jokers/uncommon/introcar.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuroraKy/CelesteCardCollection/HEAD/lua_files/jokers/uncommon/introcar.lua -------------------------------------------------------------------------------- /lua_files/jokers/uncommon/lapidary.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuroraKy/CelesteCardCollection/HEAD/lua_files/jokers/uncommon/lapidary.lua -------------------------------------------------------------------------------- /lua_files/jokers/uncommon/moveblock.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuroraKy/CelesteCardCollection/HEAD/lua_files/jokers/uncommon/moveblock.lua -------------------------------------------------------------------------------- /lua_files/jokers/uncommon/pico8joker.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuroraKy/CelesteCardCollection/HEAD/lua_files/jokers/uncommon/pico8joker.lua -------------------------------------------------------------------------------- /lua_files/jokers/uncommon/pointlessmachines.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuroraKy/CelesteCardCollection/HEAD/lua_files/jokers/uncommon/pointlessmachines.lua -------------------------------------------------------------------------------- /lua_files/jokers/uncommon/purplespinner.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuroraKy/CelesteCardCollection/HEAD/lua_files/jokers/uncommon/purplespinner.lua -------------------------------------------------------------------------------- /lua_files/jokers/uncommon/redspinner.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuroraKy/CelesteCardCollection/HEAD/lua_files/jokers/uncommon/redspinner.lua -------------------------------------------------------------------------------- /lua_files/jokers/uncommon/templeeyes.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuroraKy/CelesteCardCollection/HEAD/lua_files/jokers/uncommon/templeeyes.lua -------------------------------------------------------------------------------- /lua_files/jokers/uncommon/tothesummit.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuroraKy/CelesteCardCollection/HEAD/lua_files/jokers/uncommon/tothesummit.lua -------------------------------------------------------------------------------- /lua_files/jokers/uncommon/towels.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuroraKy/CelesteCardCollection/HEAD/lua_files/jokers/uncommon/towels.lua -------------------------------------------------------------------------------- /lua_files/rarity.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuroraKy/CelesteCardCollection/HEAD/lua_files/rarity.lua -------------------------------------------------------------------------------- /lua_files/sleeves.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuroraKy/CelesteCardCollection/HEAD/lua_files/sleeves.lua -------------------------------------------------------------------------------- /lua_files/vouchers.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuroraKy/CelesteCardCollection/HEAD/lua_files/vouchers.lua -------------------------------------------------------------------------------- /main.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuroraKy/CelesteCardCollection/HEAD/main.lua -------------------------------------------------------------------------------- /mod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuroraKy/CelesteCardCollection/HEAD/mod.json -------------------------------------------------------------------------------- /settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuroraKy/CelesteCardCollection/HEAD/settings.json --------------------------------------------------------------------------------