Skip to content

Commit a1cdc03

Browse files
add tropical smoothie to food jokers (#448)
* Update misc_joker.lua * adds antimatter sleeve * Update en-us.lua --------- Co-authored-by: Jevonnissocoolman <[email protected]>
1 parent ea6795e commit a1cdc03

File tree

2 files changed

+35
-0
lines changed

2 files changed

+35
-0
lines changed

items/sleeve.lua

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -444,6 +444,31 @@ if CardSleeves then
444444
}))
445445
end,
446446
})
447+
local antimattersleeve = CardSleeves.Sleeve({
448+
key = "antimatter_sleeve",
449+
name = "Antimatter Sleeve",
450+
atlas = "atlasSleeves",
451+
pos = { x = 0, y = 2 },
452+
config = {
453+
cry_antimatter = true,
454+
cry_crit_rate = 0.25, --Critical Deck
455+
cry_legendary_rate = 0.2, --Legendary Deck
456+
-- Enhanced Decks
457+
cry_force_enhancement = "random",
458+
cry_force_edition = "random",
459+
cry_force_seal = "random",
460+
cry_forced_draw_amount = 5,
461+
},
462+
unlocked = true,
463+
unlock_condition = { deck = "Antimatter Deck", stake = 1 },
464+
loc_vars = function(self)
465+
return { vars = {} }
466+
end,
467+
trigger_effect = function(self, args) end,
468+
apply = function(self)
469+
antimatter_apply()
470+
end,
471+
})
447472

448473
local sleeveitems = {}
449474
if CardSleeves then
@@ -464,6 +489,7 @@ if CardSleeves then
464489
beigesleeve,
465490
legendarysleeve,
466491
spookysleeve,
492+
antimattersleeve,
467493
}
468494
end
469495
end

localization/en-us.lua

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2862,6 +2862,15 @@ return {
28622862
"when Boss Blind is defeated {C:inactive}(must have room){}",
28632863
},
28642864
},
2865+
sleeve_cry_antimatter_sleeve = {
2866+
name = "Antimatter Sleeve",
2867+
text = {
2868+
"applies the {C:attention}effects{}",
2869+
"and {C:attention}special effects{}",
2870+
"of all deck sleeves",
2871+
"{C:red}WIP",
2872+
},
2873+
},
28652874
},
28662875
Spectral = {
28672876
c_cry_adversary = {

0 commit comments

Comments
 (0)