8 changed files with 145 additions and 29 deletions
@ -1,15 +1,11 @@
|
||||
croom "entry", |
||||
tags: ["start"], |
||||
optionText: "Быть Астрид" |
||||
title: "Прихожая" |
||||
optionText: () -> "entry_option".l() |
||||
title: () -> "entry_title".l() |
||||
ways: ["corridor"] |
||||
dsc: """ |
||||
Вы находитесь в красивой подводной прихожей. За прозрачными стенами плавают рыбки. |
||||
""" |
||||
desc: () -> "entry_dsc".l() |
||||
|
||||
croom "corridor", |
||||
ways: ["entry"] |
||||
title: "Коридор" |
||||
dsc: """ |
||||
Короткий коридор, который замыкается в себе. |
||||
""" |
||||
title: () -> "corridor_title".l() |
||||
desc: () -> "corridor_dsc".l() |
||||
|
@ -0,0 +1,25 @@
|
||||
intro: """ |
||||
You are Astrid. |
||||
|
||||
Astrid sleeps and sees herself in her dreams. |
||||
In a dream all people are equal because they are Astrid. |
||||
""" |
||||
room_enter: "And then enters the " |
||||
entry_option: "Be Astrid" |
||||
entry_title: "Guest room" |
||||
entry_dsc: """ |
||||
You are in a beautiful underwater guest room. |
||||
There are water horseys swimming behind the glass walls. |
||||
""" |
||||
corridor_title: "Corridor" |
||||
corridor_dsc: """ |
||||
A short corridor that turns upon itself. |
||||
""" |
||||
names: [ |
||||
'red Astrid', |
||||
'Astrid the menace', |
||||
'magic Astrid mermaid', |
||||
'witch Astrid', |
||||
"Astridulhu" |
||||
"Dent. Astrident" |
||||
] |
@ -0,0 +1,65 @@
|
||||
<!DOCTYPE html> |
||||
<html lang="en"> |
||||
<head> |
||||
<meta charset="utf-8"> |
||||
<title>Being Astrid</title> |
||||
<meta name="viewport" content="width=device-width, initial-scale=1"> |
||||
<link href='https://fonts.googleapis.com/css?family=PT+Sans:400,400italic|PT+Sans+Caption' rel='stylesheet' type='text/css'> |
||||
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-alpha.5/css/bootstrap.min.css"> |
||||
<link rel="stylesheet" href="css/main.css"> |
||||
</head> |
||||
<body> |
||||
<div id="page"> |
||||
<div class="fixed container"> |
||||
<div id="tools_wrapper" class="row"> |
||||
<div class='ways'> |
||||
<small class="text-muted" id="ways_hint">These are the adjacent rooms.</small> |
||||
<ul class="nav nav-pills" id="ways"> |
||||
</ul> |
||||
</div> |
||||
<div class="buttons"> |
||||
<button id="night" class="btn btn-outline-primary">Night mode</button> |
||||
<button id="erase" class="btn btn-outline-danger">Restart</button> |
||||
</div> |
||||
</div> <!-- End of div.tools_wrapper --> |
||||
</div> |
||||
<div class="container"> |
||||
<div class="row"> |
||||
<div id="title" class="title"> |
||||
<div class="label"> |
||||
<h1>Being Astrid</h1> |
||||
<noscript> |
||||
<p class="noscript_message">This game requires Javascript.</p> |
||||
</noscript> |
||||
</div> |
||||
</div> |
||||
</div> |
||||
<div id="content_wrapper" class="row"> |
||||
<div id="intro" class="content"> |
||||
<section> |
||||
<noscript>You need to turn on Javascript to play this game.</noscript> |
||||
</section> |
||||
</div> |
||||
<div id="content" class="content"> |
||||
</div> |
||||
<a name="end_of_content"></a> |
||||
</div> |
||||
<div id="legal" class="row"> |
||||
<div id="footleft"> |
||||
<p>© 2017 Oreolek.</p> |
||||
</div> |
||||
<div id="footright"> |
||||
</div> |
||||
</div> |
||||
</div> |
||||
</div> <!-- End of div.page --> |
||||
|
||||
<!-- CDN JS Libraries --> |
||||
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/marked/0.3.5/marked.min.js" crossorigin="anonymous"></script> |
||||
<script type="text/javascript" src="https://code.jquery.com/jquery-3.1.1.min.js" crossorigin="anonymous"></script> |
||||
<script type="text/javascript" src="game/salet.min.js"></script> |
||||
<script src="https://cdn.ably.io/lib/ably.min.js"></script> |
||||
|
||||
<script type="text/javascript" defer="defer" src="game/main.js"></script> |
||||
</body> |
||||
</html> |
Loading…
Reference in new issue