Adjust prices of consumables, remove Orbital Token
This commit is contained in:
parent
b7e8ca7cb9
commit
fbe895ba22
5 changed files with 4 additions and 5 deletions
|
|
@ -17,5 +17,5 @@
|
||||||
"conflicts": [
|
"conflicts": [
|
||||||
"Jen"
|
"Jen"
|
||||||
],
|
],
|
||||||
"version": "1.0.3"
|
"version": "1.0.4"
|
||||||
}
|
}
|
||||||
|
|
@ -549,7 +549,6 @@ SMODS.Joker {
|
||||||
|
|
||||||
local key = context.consumeable:gc().key
|
local key = context.consumeable:gc().key
|
||||||
|
|
||||||
-- TODO: Make ankh not destroy jokers
|
|
||||||
if Cryptid and key ~= "c_cry_gateway" or not Cryptid and (key ~= "c_ankh" and key ~= "c_soul") then
|
if Cryptid and key ~= "c_cry_gateway" or not Cryptid and (key ~= "c_ankh" and key ~= "c_soul") then
|
||||||
return
|
return
|
||||||
end
|
end
|
||||||
|
|
|
||||||
|
|
@ -319,8 +319,8 @@ SMODS.Consumable {
|
||||||
"{C:attention}standard 52-card deck",
|
"{C:attention}standard 52-card deck",
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
cost = 15,
|
|
||||||
pos = {x = 4, y = 4},
|
pos = {x = 4, y = 4},
|
||||||
|
cost = 4,
|
||||||
can_use = Jane.can_use,
|
can_use = Jane.can_use,
|
||||||
use = function(_, _, _, _)
|
use = function(_, _, _, _)
|
||||||
Jane.q(function()
|
Jane.q(function()
|
||||||
|
|
|
||||||
|
|
@ -41,7 +41,7 @@ SMODS.Consumable {
|
||||||
return {vars = {blurbs[math.random(#blurbs)]}}
|
return {vars = {blurbs[math.random(#blurbs)]}}
|
||||||
end,
|
end,
|
||||||
pos = {x = 0, y = 1},
|
pos = {x = 0, y = 1},
|
||||||
cost = 3,
|
cost = 4,
|
||||||
can_use = Jane.can_use,
|
can_use = Jane.can_use,
|
||||||
use = function(_, _, _, _)
|
use = function(_, _, _, _)
|
||||||
local card = create_card("Joker", G.jokers, nil, nil, nil, nil, "j_joker", "jokerfromatarot")
|
local card = create_card("Joker", G.jokers, nil, nil, nil, nil, "j_joker", "jokerfromatarot")
|
||||||
|
|
|
||||||
|
|
@ -49,7 +49,7 @@ for _, v in pairs({
|
||||||
{"tag_negative", "Negative", 4, 3, 10},
|
{"tag_negative", "Negative", 4, 3, 10},
|
||||||
|
|
||||||
{"tag_d_six", "Dice", 0, 4, 2},
|
{"tag_d_six", "Dice", 0, 4, 2},
|
||||||
{"tag_orbital", "Orbital", 1, 4, 6},
|
-- {"tag_orbital", "Orbital", 1, 4, 6},
|
||||||
{"tag_top_up", "Top-up", 2, 4, 2},
|
{"tag_top_up", "Top-up", 2, 4, 2},
|
||||||
{"tag_cry_bettertop_up", "Top-up+", 3, 4, 3},
|
{"tag_cry_bettertop_up", "Top-up+", 3, 4, 3},
|
||||||
{"tag_coupon", "Coupon", 4, 4, 10},
|
{"tag_coupon", "Coupon", 4, 4, 10},
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue