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({
name: "Twinkle",
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],
cooldownModifier: metalCooldown,
visibility: () =>

View file

@ -581,7 +581,7 @@ const layer = createLayer(id, () => {
createMilestone(() => ({
display: {
requirement: "Noel Level 5",
effectDisplay: "Unlock an elf that autobuys metal buyables"
effectDisplay: "Unlock an elf that autobuys metal machines"
},
visibility: () =>
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({
name: "The Book Thief",
elfName: "Star",
buyableName: "Paper Buyables",
buyableName: "Books",
visibility: () => showIf(elves.elves.paperElf.bought.value)
});
const boxBook = createBook({
@ -280,13 +280,13 @@ const layer = createLayer(id, function (this: BaseLayer) {
const metalBook = createBook({
name: "Physical Metallurgy",
elfName: "Twinkle",
buyableName: "Metal Buyables",
buyableName: "Metal Machines",
visibility: () => showIf(elves.elves.metalElf.bought.value)
});
const dyeBook = createBook({
name: "Arts and Crafts",
elfName: "Carol",
buyableName: "Dye Buyables",
buyableName: "Dyes",
visibility: () => showIf(elves.elves.dyeElf.bought.value)
});
const books = {

View file

@ -259,7 +259,7 @@ export const main = createLayer("main", function (this: BaseLayer) {
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!",
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(() => ({
day: 12,