You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
42 lines
1.8 KiB
42 lines
1.8 KiB
3 months ago
|
export default class XiWangZhiLuConfig {
|
||
|
private gameConfig = {
|
||
|
titleArray: ['帮助小男孩建桥上学'],
|
||
|
|
||
|
tipsArray: [
|
||
|
'将安全帽给小男孩戴上',
|
||
|
],
|
||
|
|
||
|
answersArray: [
|
||
|
'1.安全帽给小男孩戴上\n2.拖动工人到河边\n3.钢筋桥架到桥上\n4.电焊到钢架上\n5.沙子+石灰拖到地上,拖动铲子上去搅拌变成水泥,将水泥拖到桥上\n6.栏杆\n7.水管施水\n8.刷油漆\n9.彩球放上去'
|
||
|
],
|
||
|
|
||
|
duihuaArray: [
|
||
|
{ str: '姐姐出事后,我再也不敢过河了', qiPaoPos: 0, delayTime: 7.5, effectUrl: 'sound/姐姐出事后,我再也不敢过河了' },
|
||
|
],
|
||
|
|
||
|
unitIconList: [
|
||
|
{ id: 0, name: '安全帽', url: 'texture/道具框/安全帽' },
|
||
|
{ id: 1, name: '锄头', url: 'texture/道具框/锄头' },
|
||
|
{ id: 2, name: '钢架', url: 'texture/道具框/钢架' },
|
||
|
{ id: 3, name: '电焊 ', url: 'texture/道具框/电焊' },
|
||
|
{ id: 4, name: '沙子', url: 'texture/道具框/沙子' },
|
||
|
{ id: 5, name: '石灰', url: 'texture/道具框/石灰' },
|
||
|
{ id: 6, name: '铲子', url: 'texture/道具框/铲子', },
|
||
|
{ id: 7, name: '栏杆', url: 'texture/道具框/栏杆', },
|
||
|
{ id: 8, name: '水管', url: 'texture/道具框/水管', },
|
||
|
{ id: 9, name: '油漆', url: 'texture/道具框/油漆', },
|
||
|
{ id: 10, name: '彩球', url: 'texture/道具框/彩球', },
|
||
|
{ id: 11, name: '水泥', url: 'texture/道具框/水泥', },
|
||
|
],
|
||
|
|
||
|
}
|
||
|
|
||
|
private static _instance: XiWangZhiLuConfig = new XiWangZhiLuConfig()
|
||
|
public static getInstance() {
|
||
|
return XiWangZhiLuConfig._instance
|
||
|
}
|
||
|
|
||
|
public getGameConfig(index) {
|
||
|
return this.gameConfig[index]
|
||
|
}
|
||
|
}
|