diff --git a/src/data/layers/elves.tsx b/src/data/layers/elves.tsx index 66ab1df..5ee3928 100644 --- a/src/data/layers/elves.tsx +++ b/src/data/layers/elves.tsx @@ -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: () => diff --git a/src/data/layers/management.tsx b/src/data/layers/management.tsx index cccafa3..96d7cd3 100644 --- a/src/data/layers/management.tsx +++ b/src/data/layers/management.tsx @@ -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), diff --git a/src/data/layers/paper.tsx b/src/data/layers/paper.tsx index caea52d..f18d412 100644 --- a/src/data/layers/paper.tsx +++ b/src/data/layers/paper.tsx @@ -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 = { diff --git a/src/data/projEntry.tsx b/src/data/projEntry.tsx index 2cf2ed4..367ffd3 100644 --- a/src/data/projEntry.tsx +++ b/src/data/projEntry.tsx @@ -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,