updated EventsDisplay to be lit component

This commit is contained in:
Evan
2024-11-01 20:12:26 -07:00
parent a31a35c038
commit 915359feca
5 changed files with 321 additions and 357 deletions
+2 -20
View File
@@ -1,5 +1,5 @@
import {PlayerInfo} from "../game/Game";
import {DefaultConfig} from "./DefaultConfig";
import { PlayerInfo } from "../game/Game";
import { DefaultConfig } from "./DefaultConfig";
export const devConfig = new class extends DefaultConfig {
percentageTilesOwnedToWin(): number {
@@ -22,22 +22,4 @@ export const devConfig = new class extends DefaultConfig {
return 400
}
// allianceDuration(): Tick {
// return 10 * 10
// }
// startTroops(playerInfo: PlayerInfo): number {
// // if (playerInfo.isBot) {
// // return 5000
// // }
// return 50000
// }
// troopAdditionRate(player: Player): number {
// if (player.isBot()) {
// return 1000
// } else {
// return 1000000
// }
// }
}