Skip to content

Commit

Permalink
replaced multilang texts to hardcoded ones, as currently the translat…
Browse files Browse the repository at this point in the history
…ion management is not ready
  • Loading branch information
meszaros-lajos-gyorgy committed Feb 10, 2022
1 parent 084c258 commit 7f51cad
Showing 1 changed file with 31 additions and 8 deletions.
39 changes: 31 additions & 8 deletions src/projects/the-backrooms/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -254,33 +254,53 @@ ON SPELLCAST {
>>WHISPER_NOEXIT {
SPEAK -p [whisper--no-exit]
HEROSAY [whisper--no-exit]
// HEROSAY [whisper--no-exit]
HEROSAY "It is no use trying to find an exit, Am Sheagar! You will never leave this place!"
RETURN
}
>>WHISPER_DRINK1 {
SPEAK -p [whisper--drink-the-almond-water]
HEROSAY [whisper--drink-the-almond-water]
// HEROSAY [whisper--drink-the-almond-water]
HEROSAY "Drink the almond water! It will be over faster with that!"
RETURN
}
>>WHISPER_DRINK2 {
SPEAK -p [whisper--drink-it]
HEROSAY [whisper--drink-it]
// HEROSAY [whisper--drink-it]
HEROSAY "Drink it! Drink it! Drink it! Drink it! Drink it!"
RETURN
}
>>WHISPER_SMELL {
SPEAK -p [whisper--do-you-smell-it]
HEROSAY [whisper--do-you-smell-it]
// HEROSAY [whisper--do-you-smell-it]
HEROSAY "Do you smell it? It is the smell of how you will rot here next to your precious Alia!"
RETURN
}
>>WHISPER_MAGIC {
SPEAK -p [whisper--magic-wont-save-you]
HEROSAY [whisper--magic-wont-save-you]
// HEROSAY [whisper--magic-wont-save-you]
HEROSAY "Do you really think magic will save you this time?"
RETURN
}
>>BABY {
// save lámpa state
// 100ms villanás sárgába, mint az exit-nél
// összes lámpa kialszik
// sebesség lelassítása player-nél -> 0.3-ra
// kis pause, babasírás fadein
// szívdobogás hang
// random lámpa felkapcsolások, vagy az összes lámpa felkapcsolása?
// 5 másodperc ott tartás
// fadeout feketébe
// hang kikapcs
// lámpák restore
// hang vissza
}
`;
}),
addDependencyAs(
Expand Down Expand Up @@ -404,7 +424,8 @@ ON ACTION {
"sfx/backrooms-outro.wav"
),
createItem
)(items.doors.lightDoor, { name: "[door--exit]" });
// )(items.doors.lightDoor, { name: "[door--exit]" });
)(items.doors.lightDoor, { name: "Unmarked fire exit" });
};

const createKey = (pos, angle = [0, 0, 0]) => {
Expand All @@ -422,7 +443,8 @@ ON INIT {
`;
}),
createItem
)(items.keys.oliverQuest, { name: "[key--exit]" });
// )(items.keys.oliverQuest, { name: "[key--exit]" });
)(items.keys.oliverQuest, { name: "Fire exit key" });
};

const getAlmondWaterVariant = () => {
Expand Down Expand Up @@ -496,7 +518,8 @@ ON INVENTORYUSE {
declare("int", "pickedUp", 0),
createItem
)(items.magic.potion.mana, {
name: `[item--almond-water]`,
// name: `[item--almond-water]`,
name: "Almond water",
});
};

Expand Down

0 comments on commit 7f51cad

Please sign in to comment.