Сражение (вид сбоку)
{(set: $test to 1)
(if: $l1 is not 1)[(set: $hp1 to 100)(set: $l1 to 1)] <!--Первое присваивание жизни герою-->
(if: $l2 is not 1)[(set: $hp2 to 100)(set: $l2 to 1)] <!--Первое присваивание жизни врагу-->
(if: $hp1 >0)
[<img src="https://tinyurl.com/2ycj8u5k"width = "200" height = "200">] <!-- Живой герой. Картинка-->
(else:)
[<img src="https://tinyurl.com/37tspw7j"width = "200" height = "200">] <!--Дохлый герой. Картинка-->
-vs-
(if: $hp2 >0)
[<img src="https://tinyurl.com/5xscyyk3"width = "200" height = "200">] <!-- Живой враг. Картинка-->
(else:)
[<img src="https://tinyurl.com/37tspw7j"width = "200" height = "200">] <!-- Дохлый враг. Картинка-->
}
hp(if: $hp1<=50)[(text-colour:red)[ $hp1]](else:)[$hp1]                              hp(if: $hp2<=50)[(text-colour:red)[ $hp2]](else:)[ $hp2] <!--Так всрато, чтобы не ело пробелы-->(if: $a1 is 0)[(set: $a1 to ' ')](if: $a2 is 0)[(set: $a2 to ' ')]
(if: ($hp1>0) and ($hp2>0))
[Понеслось сражение
(link: "Удар лопатой $a1")
[
(set: $hp2 to $hp2-50)(set: $hp1 to $hp1-15)(set: $a1 to 'на 50')
(go-to: "Battle")
]
(link: "Удар коготками $a2")
[
(set: $hp2 to $hp2-10)(set: $hp1 to $hp1-15)(set: $a2 to 'на 10')
(go-to: "Battle")
]
](else:)
[Бой завершён
(link: "Начать заново")
[
(set: $l1 to 0)(set: $l2 to 0)
(go-to: "Battle")
]
]
<!--Комментарий-->