模块:特殊数据:修订间差异
来自舰R百科
更多操作
创建页面,内容为“local special = { } special.shipCountry = { } special.shipCountry['戈本'] = '土耳其' special.shipCountry['德·鲁伊特'] ='荷兰' special.shipCountry['吸...” |
无编辑摘要 |
||
| 第1行: | 第1行: | ||
local | local shipCountry = { } | ||
local equiptEffect = { } | |||
equiptEffect['超重弹'] = '炮击战阶段增加25%攻击上限' | |||
equiptEffect['91式穿甲弹'] = '增加1阶段穿甲效果' | |||
equiptEffect['高脚柜炸弹'] = '增加25%开幕轰炸攻击力' | |||
shipCountry['戈本'] = '土耳其' | |||
shipCountry['德·鲁伊特'] ='荷兰' | |||
shipCountry['吸血鬼'] = '英国' | |||
shipCountry['海达人'] = '加拿大' | |||
shipCountry['苏赫巴托尔'] = '蒙古' | |||
shipCountry['奥丁'] = '冰岛' | |||
shipCountry['奥希金斯'] = '智利' | |||
return | local data = mw.loadData("模块:数据库") | ||
for equipt,effect in equiptEffect.pairs() do data.equipts[equipt].effect = effect end | |||
for ship,country in shipCountry.pairs() do data.ships[ship].country = country end | |||
return data | |||