-
Notifications
You must be signed in to change notification settings - Fork 44
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #209 from Viola-Siemens/dev
向女仆增加了一点联动性功能,使得玩家可以通过引导员的介绍获得展馆的信息。
- Loading branch information
Showing
3 changed files
with
49 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
{ | ||
"rpm.chat.real_peaceful_mode.guidance.message1": "Hello, friend. Welcome to the Goldmount House.", | ||
"rpm.chat.real_peaceful_mode.guidance.selection.about_building": "About the Goldmount House...", | ||
"rpm.chat.real_peaceful_mode.guidance.about_building.message1": "Goldmount House is the exhibition hall of Real Peaceful Mode, Skull Craft, and EveryXDance mod, and located at the southeast of the map.", | ||
"rpm.chat.real_peaceful_mode.guidance.about_building.message2": "Its prototype is Haidai Building, a landmark of Qisheng Lake Park, Zibo, Shandong. You can see a very nice view here.", | ||
"rpm.chat.real_peaceful_mode.guidance.about_building.message3": "I hope you can enjoy your visit here. If you have any problems, please ask our staffs all over the Goldmount House." | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
{ | ||
"rpm.chat.real_peaceful_mode.guidance.message1": "你好,朋友。欢迎来到金岱楼!", | ||
"rpm.chat.real_peaceful_mode.guidance.selection.about_building": "关于金岱楼……", | ||
"rpm.chat.real_peaceful_mode.guidance.about_building.message1": "金岱楼是《真正的和平模式》《头颅工艺》《一起跳舞!》三个模组的联合展厅,坐落于地图的东南角。", | ||
"rpm.chat.real_peaceful_mode.guidance.about_building.message2": "它的原型是海岱楼,山东省淄博市齐盛湖公园的地标性建筑。你可以在这里看到非常不错的景色。", | ||
"rpm.chat.real_peaceful_mode.guidance.about_building.message3": "祝愿你能够享受你的游览。如果你有任何问题,请和我们金岱楼的工作人员取得联系!" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
{ | ||
"entity_type": "touhou_little_maid:maid", | ||
"trigger_anyway": false, | ||
"requires": [ | ||
], | ||
"message": { | ||
"type": "real_peaceful_mode:selectable", | ||
"key": "rpm.chat.real_peaceful_mode.guidance.message1", | ||
"speaker": "npc", | ||
"selection": [ | ||
{ | ||
"condition": { | ||
"type": "real_peaceful_mode:name", | ||
"name": "Guidance" | ||
}, | ||
"key": "rpm.chat.real_peaceful_mode.guidance.selection.about_building", | ||
"next": { | ||
"type": "real_peaceful_mode:plain", | ||
"key": "rpm.chat.real_peaceful_mode.guidance.about_building.message1", | ||
"speaker": "npc", | ||
"next": { | ||
"type": "real_peaceful_mode:plain", | ||
"key": "rpm.chat.real_peaceful_mode.guidance.about_building.message2", | ||
"speaker": "npc", | ||
"next": { | ||
"type": "real_peaceful_mode:end", | ||
"key": "rpm.chat.real_peaceful_mode.guidance.about_building.message3", | ||
"speaker": "npc" | ||
} | ||
} | ||
} | ||
} | ||
] | ||
} | ||
} |