Replace some text references to "buyables"

This commit is contained in:
thepaperpilot 2022-12-14 23:15:46 -06:00
parent f1f43398a7
commit f48ae55cec
4 changed files with 6 additions and 6 deletions

View file

@ -895,7 +895,7 @@ const layer = createLayer(id, function (this: BaseLayer) {
const metalElf = createElf({ const metalElf = createElf({
name: "Twinkle", name: "Twinkle",
description: description:
"Twinkle will automatically purchase all metal buyables you can afford, without actually spending any resources.", "Twinkle will automatically purchase all metal machines you can afford, without actually spending any resources.",
buyable: [metal.oreDrill, metal.industrialCrucible, metal.hotterForge], buyable: [metal.oreDrill, metal.industrialCrucible, metal.hotterForge],
cooldownModifier: metalCooldown, cooldownModifier: metalCooldown,
visibility: () => visibility: () =>

View file

@ -581,7 +581,7 @@ const layer = createLayer(id, () => {
createMilestone(() => ({ createMilestone(() => ({
display: { display: {
requirement: "Noel Level 5", requirement: "Noel Level 5",
effectDisplay: "Unlock an elf that autobuys metal buyables" effectDisplay: "Unlock an elf that autobuys metal machines"
}, },
visibility: () => visibility: () =>
showIf(fertilizerElfMilestones[3].earned.value && main.day.value >= 13), showIf(fertilizerElfMilestones[3].earned.value && main.day.value >= 13),

View file

@ -244,7 +244,7 @@ const layer = createLayer(id, function (this: BaseLayer) {
const paperBook = createBook({ const paperBook = createBook({
name: "The Book Thief", name: "The Book Thief",
elfName: "Star", elfName: "Star",
buyableName: "Paper Buyables", buyableName: "Books",
visibility: () => showIf(elves.elves.paperElf.bought.value) visibility: () => showIf(elves.elves.paperElf.bought.value)
}); });
const boxBook = createBook({ const boxBook = createBook({
@ -280,13 +280,13 @@ const layer = createLayer(id, function (this: BaseLayer) {
const metalBook = createBook({ const metalBook = createBook({
name: "Physical Metallurgy", name: "Physical Metallurgy",
elfName: "Twinkle", elfName: "Twinkle",
buyableName: "Metal Buyables", buyableName: "Metal Machines",
visibility: () => showIf(elves.elves.metalElf.bought.value) visibility: () => showIf(elves.elves.metalElf.bought.value)
}); });
const dyeBook = createBook({ const dyeBook = createBook({
name: "Arts and Crafts", name: "Arts and Crafts",
elfName: "Carol", elfName: "Carol",
buyableName: "Dye Buyables", buyableName: "Dyes",
visibility: () => showIf(elves.elves.dyeElf.bought.value) visibility: () => showIf(elves.elves.dyeElf.bought.value)
}); });
const books = { const books = {

View file

@ -259,7 +259,7 @@ export const main = createLayer("main", function (this: BaseLayer) {
symbol: dyesSymbol, symbol: dyesSymbol,
story: "To make toys, we're going to need some color to make them look nice and enticing! We can't just give kids clear toys after all! To add some color to our toys, we'll need some dyes!", story: "To make toys, we're going to need some color to make them look nice and enticing! We can't just give kids clear toys after all! To add some color to our toys, we'll need some dyes!",
completedStory: completedStory:
"After all that effort, you finally have a rainbow of dyes to choose from! Now the children won't be able to resist the toys you have to offer, once you get them made of course..." "After all that effort, you finally have a rainbow of dyes to choose from! Now the children won't be able to resist the toys you have to offer, once you get them made of course... Good Job!"
})), })),
createDay(() => ({ createDay(() => ({
day: 12, day: 12,