35 lines
1.7 KiB
JavaScript
35 lines
1.7 KiB
JavaScript
const AdmiralCounter = require("../Game/AdmiralCounter");
|
|
|
|
const admiralTable = new AdmiralCounter({
|
|
2: {
|
|
2: { childToBeKilledCount: 2, maximumAdmiralCount: 2 },
|
|
4: { childToBeKilledCount: 2, maximumAdmiralCount: 2 },
|
|
6: { childToBeKilledCount: 2, maximumAdmiralCount: 2 },
|
|
8: { childToBeKilledCount: 2, maximumAdmiralCount: 2 },
|
|
10: { childToBeKilledCount: 2, maximumAdmiralCount: 2 },
|
|
12: { childToBeKilledCount: 2, maximumAdmiralCount: 2 },
|
|
14: { childToBeKilledCount: 2, maximumAdmiralCount: 2 },
|
|
16: { childToBeKilledCount: 2, maximumAdmiralCount: 2 },
|
|
18: { childToBeKilledCount: 2, maximumAdmiralCount: 2 },
|
|
20: { childToBeKilledCount: 2, maximumAdmiralCount: 2 },
|
|
22: { childToBeKilledCount: 2, maximumAdmiralCount: 2 },
|
|
24: { childToBeKilledCount: 2, maximumAdmiralCount: 2 },
|
|
26: { childToBeKilledCount: 2, maximumAdmiralCount: 2 },
|
|
28: { childToBeKilledCount: 2, maximumAdmiralCount: 2 },
|
|
30: { childToBeKilledCount: 2, maximumAdmiralCount: 2 }
|
|
},
|
|
3: {
|
|
2: { childToBeKilledCount: 2, maximumAdmiralCount: 2 },
|
|
4: { childToBeKilledCount: 2, maximumAdmiralCount: 2 },
|
|
6: { childToBeKilledCount: 2, maximumAdmiralCount: 2 },
|
|
8: { childToBeKilledCount: 2, maximumAdmiralCount: 2 },
|
|
10: { childToBeKilledCount: 2, maximumAdmiralCount: 2 },
|
|
12: { childToBeKilledCount: 2, maximumAdmiralCount: 2 },
|
|
14: { childToBeKilledCount: 2, maximumAdmiralCount: 2 },
|
|
16: { childToBeKilledCount: 2, maximumAdmiralCount: 2 },
|
|
18: { childToBeKilledCount: 2, maximumAdmiralCount: 2 },
|
|
20: { childToBeKilledCount: 2, maximumAdmiralCount: 2 }
|
|
}
|
|
});
|
|
|
|
module.exports = admiralTable; |