diff --git a/cover.svg b/cover.svg new file mode 100644 index 0000000..a389147 --- /dev/null +++ b/cover.svg @@ -0,0 +1,175 @@ + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + Black Phone + + diff --git a/game/begin.coffee b/game/begin.coffee index edec810..0d8b7ae 100644 --- a/game/begin.coffee +++ b/game/begin.coffee @@ -38,7 +38,7 @@ money = (character, system, amount) -> system.setQuality("money", character.qualities.money + amount) code_can_input = (character) -> - return character.sandbox.code.length < 6 + return character.sandbox.code.length < 8 code_input = (character, digit) -> if code_can_input(character) @@ -48,7 +48,11 @@ code_reset = (character) -> character.sandbox.code = "" code_check = (character, system) -> - if character.sandbox.code.length >= 6 + if character.sandbox.code.length >= 8 + # There is an Undum.. let's call it a feature + # that prevents the player from entering "3112". + # You see, you can't select the situation 1 when you are + # already in this situation, so you can't input 1 twice. if character.sandbox.code == "31122017" or character.sandbox.code == "01012017" character.sandbox.box_opened = 1 if character.sandbox.knows_the_code == 0 diff --git a/game/story.coffee b/game/story.coffee index 2819fd7..b8a979c 100644 --- a/game/story.coffee +++ b/game/story.coffee @@ -169,7 +169,7 @@ situation "kitchen", And enough frozen pizzas to last a month. """ table: """ - TODO [Here the player learns why Ana decided to bolt away] + TODO [Here the player learns why Ana decided to bolt away. Also that the date notation is DD.MM.YYYY. I'm still deciding on the object that would be here, though.] """ situation "bathroom", diff --git a/img/cover.png b/img/cover.png new file mode 100644 index 0000000..8952280 Binary files /dev/null and b/img/cover.png differ