Rework Business Sleeve to be more interesting
This commit is contained in:
parent
ae14790b7f
commit
9362690404
4 changed files with 9 additions and 9 deletions
|
|
@ -458,9 +458,8 @@ return {
|
||||||
sleeve_Roland_dropship_alt = {
|
sleeve_Roland_dropship_alt = {
|
||||||
name = "Business Sleeve",
|
name = "Business Sleeve",
|
||||||
text = {
|
text = {
|
||||||
"{C:attention}Jokers {}are {C:dark_edition}Negative",
|
"{C:attention}Jokers {}are instead",
|
||||||
"and {C:money}Rental",
|
"{C:dark_edition}Negative {}and {C:money}Rental",
|
||||||
"{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",
|
||||||
},
|
},
|
||||||
|
|
|
||||||
|
|
@ -3,7 +3,7 @@
|
||||||
"id": "Roland",
|
"id": "Roland",
|
||||||
"name": "Roland",
|
"name": "Roland",
|
||||||
"prefix": "Roland",
|
"prefix": "Roland",
|
||||||
"version": "2.9.65",
|
"version": "2.9.66",
|
||||||
"badge_colour": "8BE9FD",
|
"badge_colour": "8BE9FD",
|
||||||
"display_name": "Roland",
|
"display_name": "Roland",
|
||||||
"main_file": "src/main.lua",
|
"main_file": "src/main.lua",
|
||||||
|
|
|
||||||
|
|
@ -146,7 +146,7 @@ local b_dropship = back {
|
||||||
not not f(G.jokers.cards):map "ability":all "perishable"
|
not not f(G.jokers.cards):map "ability":all "perishable"
|
||||||
end,
|
end,
|
||||||
apply = function(self)
|
apply = function(self)
|
||||||
G.GAME.modifiers.Roland_dropship = true
|
G.GAME.modifiers.Roland_dropship = not self:is_alt()
|
||||||
G.GAME.modifiers.Roland_dropship_alt = self:is_alt()
|
G.GAME.modifiers.Roland_dropship_alt = self:is_alt()
|
||||||
end,
|
end,
|
||||||
calculate = f.noop,
|
calculate = f.noop,
|
||||||
|
|
@ -200,14 +200,13 @@ local function create_dropshipped_card(_type, ...)
|
||||||
|
|
||||||
if ok and G.GAME.modifiers.Roland_dropship_alt then
|
if ok and G.GAME.modifiers.Roland_dropship_alt then
|
||||||
ret.ability.rental = true
|
ret.ability.rental = true
|
||||||
ret.ability.perish_tally = 1 / 0
|
|
||||||
local _ = ret:set_edition({negative = true}, true, true)
|
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
|
||||||
|
ret.ability.perish_tally = 5
|
||||||
ret.ability.perishable = true
|
ret.ability.perishable = true
|
||||||
ret.cost, ret.sell_cost = 0, 0
|
ret.cost, ret.sell_cost = 0, 0
|
||||||
ret.ability.perish_tally = G.GAME.modifiers.Roland_dropship_alt and 1 / 0 or 5
|
|
||||||
end
|
end
|
||||||
|
|
||||||
return ret
|
return ret
|
||||||
|
|
|
||||||
|
|
@ -25,8 +25,10 @@ local function add(v)
|
||||||
return SMODS.add_card {
|
return SMODS.add_card {
|
||||||
no_edition = true,
|
no_edition = true,
|
||||||
key = v,
|
key = v,
|
||||||
area = (G.P_CENTERS[v] or {}).set == "Booster" and G.shop_booster or
|
area = G.P_CENTERS[v] and
|
||||||
(G.P_CENTERS[v] or {}).set == "Voucher" and G.shop_vouchers or nil,
|
(({Default = true, Enhanced = true})[G.P_CENTERS[v].set] and G.hand or
|
||||||
|
G.P_CENTERS[v].set == "Booster" and G.shop_booster or
|
||||||
|
G.P_CENTERS[v].set == "Voucher" and G.shop_vouchers) or nil,
|
||||||
}
|
}
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue