level 7
# 1. 定义语素字典:存储组合规则
# 格式:(语素A, 语素B) : 合成结果
miao_logic = {
("mountain", "water"): "landscape", # 山 + 水 = 景
("wood", "wood"): "forest", # 木 + 木 = 林
("cat", "sword"): "hero_hong" # 猫 + 剑 = 虹猫
}
# 2. 玩家当前的点击序列
current_selection = []
# 3. 处理点击函数
def combine_miao(morpheme):
global current_selection
网页链接 (morpheme)
# 当选中两个语素时尝试合成
if len(current_selection) == 2:
result = miao_logic.get(tuple(current_selection))
if result:
# 合成成功,触发对应剧情标签
renpy.jump(result)
else:
# 合成失败,清空重来
current_selection = []
renpy.notify("语素排斥,合成失败")
2026年03月02日 01点03分








































