diff --git a/audio/roar.mp3 b/audio/roar.mp3 new file mode 100644 index 0000000..5c17a2e Binary files /dev/null and b/audio/roar.mp3 differ diff --git a/game/gameplay.coffee b/game/gameplay.coffee index 21ed49f..7343aee 100644 --- a/game/gameplay.coffee +++ b/game/gameplay.coffee @@ -18,6 +18,9 @@ scripted_events = (character, system) -> if character.qualities.enemies == 3 writemd(system, "thirdsteps".l()) if character.qualities.enemies == 1 + audio = document.getElementById("roar") + audio.currentTime=0 + audio.play() writemd(system, "boss".l()) if character.qualities.enemies == 0 character.sandbox.steps = false diff --git a/html/index.html b/html/index.html index 9c0a74e..bfcf06d 100644 --- a/html/index.html +++ b/html/index.html @@ -34,7 +34,7 @@ Creative Commons License

Приблизительное время прохождения игры: пять минут.

Написано при помощи Undum и Raconteur.

-

Бета-тестеры: headless zombie

+

Бета-тестеры: headless zombie, Kie Kazuki

@@ -71,6 +71,7 @@ + diff --git a/less/main.less b/less/main.less index a196968..32cadd4 100644 --- a/less/main.less +++ b/less/main.less @@ -28,3 +28,8 @@ ul.options { background-color: rgba(153,136,119,0.2); } } +#legal { + .muted { + color: grey; + } +}