Uncap Escapey in Cryptid
This commit is contained in:
parent
795f6dc3fe
commit
82201e42ae
2 changed files with 10 additions and 4 deletions
|
|
@ -17,5 +17,5 @@
|
||||||
"conflicts": [
|
"conflicts": [
|
||||||
"Jen"
|
"Jen"
|
||||||
],
|
],
|
||||||
"version": "1.7.4"
|
"version": "1.7.5"
|
||||||
}
|
}
|
||||||
|
|
@ -138,7 +138,7 @@ local escapey_quotes = {
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|
||||||
SMODS.Joker {
|
local esc = SMODS.Joker {
|
||||||
key = "escapey",
|
key = "escapey",
|
||||||
atlas = "janeescapey",
|
atlas = "janeescapey",
|
||||||
pronouns = "they_them",
|
pronouns = "they_them",
|
||||||
|
|
@ -147,7 +147,6 @@ SMODS.Joker {
|
||||||
text = {
|
text = {
|
||||||
"{s:1.25}Use to sell {C:attention,s:1.25}tags",
|
"{s:1.25}Use to sell {C:attention,s:1.25}tags",
|
||||||
"{s:1.25}for {X:money,C:white,s:1.25}$#1#X{s:1.25} each",
|
"{s:1.25}for {X:money,C:white,s:1.25}$#1#X{s:1.25} each",
|
||||||
"{C:inactive,s:1.25}(Max of {C:money,s:1.25}$#2#{C:inactive,s:1.25})",
|
|
||||||
"If any {C:attention}consumables",
|
"If any {C:attention}consumables",
|
||||||
"are unselected, sell",
|
"are unselected, sell",
|
||||||
"those for {C:money}$#3# {}instead",
|
"those for {C:money}$#3# {}instead",
|
||||||
|
|
@ -236,12 +235,19 @@ SMODS.Joker {
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
local tags = math.min(G.GAME.dollars, extra.max) * (math.pow(extra.xmoney, xtimes) - 1)
|
local scaling = Cryptid and G.GAME.dollars or math.min(G.GAME.dollars, extra.max)
|
||||||
|
local tags = scaling * (math.pow(extra.xmoney, xtimes) - 1)
|
||||||
ease_dollars(math.ceil(times * extra.money + tags))
|
ease_dollars(math.ceil(times * extra.money + tags))
|
||||||
end,
|
end,
|
||||||
tag_threshold = 30,
|
tag_threshold = 30,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
local _ = Cryptid or table.insert(
|
||||||
|
esc.loc_txt.text,
|
||||||
|
3,
|
||||||
|
"{C:inactive,s:1.25}(Max of {C:money,s:1.25}$#2#{C:inactive,s:1.25})"
|
||||||
|
)
|
||||||
|
|
||||||
local maxie_quotes = {
|
local maxie_quotes = {
|
||||||
normal = {
|
normal = {
|
||||||
"Hey! I hope we can become great friends together!",
|
"Hey! I hope we can become great friends together!",
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue