Nerf Business Sleeve

This commit is contained in:
Emik 2026-07-18 20:40:33 +02:00
parent 7cc27f1ee9
commit e4d4f2e4dd
Signed by: emik
GPG key ID: 6B0CD72A5E503BDF
4 changed files with 5 additions and 2 deletions

View file

@ -459,6 +459,7 @@ return {
name = "Business Sleeve", name = "Business Sleeve",
text = { text = {
"{C:attention}Jokers {}are {C:dark_edition}Negative", "{C:attention}Jokers {}are {C:dark_edition}Negative",
"and {C:money}Rental",
"{C:attention}Perishable {}lasts forever", "{C:attention}Perishable {}lasts forever",
"", "",
"{C:Bakery_credit_fg_Roland_bakersdozenbagels,s:0.75}Art: BakersDozenBagels", "{C:Bakery_credit_fg_Roland_bakersdozenbagels,s:0.75}Art: BakersDozenBagels",

View file

@ -3,7 +3,7 @@
"id": "Roland", "id": "Roland",
"name": "Roland", "name": "Roland",
"prefix": "Roland", "prefix": "Roland",
"version": "2.9.63", "version": "2.9.64",
"badge_colour": "8BE9FD", "badge_colour": "8BE9FD",
"display_name": "Roland", "display_name": "Roland",
"main_file": "src/main.lua", "main_file": "src/main.lua",

1
refs/game_objects Symbolic link
View file

@ -0,0 +1 @@
../../smods/src/game_objects

View file

@ -199,8 +199,9 @@ local function create_dropshipped_card(_type, ...)
local ok = _type == "Joker" and ret.ability local ok = _type == "Joker" and ret.ability
if ok and G.GAME.modifiers.Roland_dropship_alt then if ok and G.GAME.modifiers.Roland_dropship_alt then
ret:set_edition({negative = true}, true, true) ret.ability.rental = true
ret.ability.perish_tally = 1 / 0 ret.ability.perish_tally = 1 / 0
local _ = ret:set_edition({negative = true}, true, true)
end end
if ok and G.GAME.modifiers.Roland_dropship then if ok and G.GAME.modifiers.Roland_dropship then