剧情源自 北大侠客行。
由 Inky 编写。
插图由 灵魂画手319 倾心绘制。
- G A 统计
- 评论系统
- 主题美化
- 音效
- 自定义样式
- 地图系统
- 物品系统
- 人物状态
- 战斗系统
== 节点
= 针脚
-> 跳转
->-> 隧道
+ 选项
* 一次性选项
* -> 后备选项
- 收束
- () 收束贴标签
{} 逻辑判断
{test:
...
- else
...}
if-else逻辑判断
[] 无声内容
{1|2|3} 可变文本,显示最后一个
{!1|2|3} 可变文本,不显示最后一个
{&1|2|3} 周期循环的可变文本
{~0|1} 随机内容
VAR 全局变量
temp 临时变量
~ 进行运算
function 函数
线程 <-
可以将多个部分连接在一起
->kitchen
== kitchen ==
你来到了厨房
<- conversation
<- walking
-> DONE //标志线程的结束
== conversation ==
* 晚上吃什么
大厨说道:"吃鸡"
- -> kitchen
== walking ==
+ [离开]
-> out
== out ==
你离开了厨房
-> END
输出
你来到了厨房
1.晚上吃什么
2.离开
列表关键字 LIST
状态机
->begin
=begin
LIST role_emotion = happy, sad, angry
VAR zhangsan_emotion = happy
VAR lisi_emotion = angry
{zhangsan_emotion}
{lisi_emotion}
->END
列表循环
//第一个值对应序号为1而不是0,可以通过LIST_VALUE获取
LIST volumeLevel = off, quiet, medium, loud, deafening
VAR lecturersVolume = quiet
VAR murmurersVolume = quiet
-(loop)
{
-lecturersVolume < deafening:
//循环输出值
{lecturersVolume}
//状态值对应序号
~ temp index = LIST_VALUE(lecturersVolume)
{index}
//序号对应状态值
{volumeLevel(index)}
~ lecturersVolume++
-else:
->END
}
+[loop]
->loop
列表多值选中
//列表自定义值
LIST num = two = 2, three = 3, five = 5
LIST people = (Adams=8), Bernard=10, (Cartwright), (Denver), (Eamonn)
//打印选中的值
{people}
//进行清空
~ people = ()
//增加选中
~ people += (Adams, Bernard, Cartwright, Denver)
//删除选中
~ people -= (Bernard)
{people}
//函数测试
{LIST_COUNT(people)} //输出选中的数量
{LIST_MIN(people)} //输出选中里面的最小值
{LIST_MAX(people)} //输出选中里面的最大值
{LIST_RANDOM(people)}//随机输出选中的一个值
{LIST_ALL(element of list)} //输出完整的列表(未被选中也会输出)
{LIST_RANGE(list_name, min_value, max_value)} //函数切片
{LIST_INVERT(list_name)} //函数倒置
//测试选中列表是否为空
{ people: not empty }
//测试选中列表是否相等
{ people == (Adams, Bernard):
only Adams, Bernard
}
//测试是否在选中列表中
//包含操作: ? 或者 has
//不包含操作: !? 或者 hasnt
{ people ? (Adams, Bernard):
has Adams, Bernard
}
//相交列表
{desiredValues ^ actualValues:
...
}
# theme: dark 暗色主题
# author: 作者
# CLEAR 清空屏幕
# IMAGE: images/imageName.jpg 插入图片
# CLASS: 自定义CSS类
# RESTART 重新开始
# AUDIO: audio/bgm.mp3 背景音乐
# LOOP: audio/bgm.mp3 背景音乐循环
# STOP 停止播放
多个 class
写多个用逗号分隔,例如: #CLASS:bold,red
。
目前不支持给选项 choice
添加新的 class
。
具体列表见 style.css
。
- Fork the Project
- Create your Feature Branch (
git checkout -b feature/AmazingFeature
) - Commit your Changes (
git commit -m 'Add some AmazingFeature'
) - Push to the Branch (
git push origin feature/AmazingFeature
) - Open a Pull Request
Distributed under the MIT License. See LICENSE
for more information.