打开/关闭搜索
搜索
打开/关闭菜单
2529
2489
5
4.4万
Corruption of Champions II Bilingual Wiki
导航
首页
最近更改
随机页面
MediaWiki帮助
特殊页面
上传文件
打开/关闭外观设置菜单
无法加载偏好设置。请检查您的网络连接并重试。
重试
打开/关闭个人菜单
未登录
未登录用户的IP地址会在进行任意编辑后公开展示。
user-interface-preferences
中文(简体)
个人工具
登录
查看“︁Engine/zh-hans”︁的源代码
来自Corruption of Champions II Bilingual Wiki
分享此页面
查看
阅读
查看源代码
查看历史
associated-pages
页面
讨论
更多操作
←
Engine/zh-hans
因为以下原因,您没有权限编辑该页面:
您请求的操作仅限属于这些用户组的用户执行:
用户
、
管理员
、translationadmin
您可以查看和复制此页面的源代码。
{{DISPLAYTITLE:引擎}} 本页介绍《堕落冠军 II》引擎的内部工作原理。 __TOC__ ==基本信息== 与使用 [[wikipedia:ActionScript#ActionScript 3.0|Action Script 3.0]] 编写的[https://wiki.smutosaur.us/CoC/Main_Page Corruption of Champions]不同,[[Main Page|《堕落冠军 II》]]使用[[wikipedia:Javascript|Javascript]]编写,因此更容易支持跨平台。该引擎大量借鉴原版《Corruption of Champions》,数据结构几乎完全相同,但功能已重写为 Javascript。 == 数据结构 == {|class="wikitable" |+角色 !属性 !!类型 !!描述 !!备注 |- | <code>name</code> || <code>string</code> ||角色名称|| |- | <code>cName</code> || <code>string?</code> || 未知 || |- | <code>soloCombatPrefix</code> || <code>string</code> ||在战斗中的某处使用,推测用于给战斗文本的某个元素添加前缀|| |- | <code>reagents</code> || <code>Object<number, number></code> ||角色当前持有的[[Reagents|炼金材料]](原料)|| {|class="wikitable" |+炼金材料编号 ! 键 !! 炼金材料名称 |- | 1 || [[Reagents#Mandrake Root | 曼德拉草根]] |- | 2 || [[Reagents#Yew Branch | 紫杉枝]] |- | 3 || [[Reagents#Soft Mud | 软泥]] |- | 4 || [[Reagents#Laurel Sprig | 月桂枝]] |- | 5 || [[Reagents#Tall Reed | 高大芦苇]] |- | 6 || [[Reagents#Turgid Mushroom | 肿胀蘑菇]] |- | 7 || [[Reagents#Sweet Cream | 甜奶油]] |- | 8 || [[Reagents#Chestnut | 栗子 ]] |- | 9 || [[Reagents#Wild Melon | 野生甜瓜]] |- | 10 || [[Reagents#Juicy Peach | 多汁蜜桃]] |- | 11 || [[Reagents#Lush Orchid | 繁茂兰花]] |- | 12 || [[Reagents#Musky Sap | 麝香树液]] |- | 13 || [[Reagents#Motherwort |益母草]] |} |} ==变量== 以下是重要变量。 ===玩家队伍(<code>window.PlayerParty</code>)=== {|class="wikitable" ! Javascript 变量名 !! 类型 !! 描述 !! 备注 |- | <code>PlayerParty.members</code> || 数组 || 玩家队伍中的角色数组。勇者存储在索引 <code>0</code> 处 || |} ===玩家变量(<code>window.PlayerParty.members[0]</code>)===
返回
Engine/zh-hans
。
查看“︁Engine/zh-hans”︁的源代码
来自Corruption of Champions II Bilingual Wiki