package ch13; public class DarkTempler extends Unit{ public DarkTempler(String name) { this.name = name; this.power = 10; this.hp = 100; } } package ch13; public class Dragon extends Unit { public Dragon(String name) { this.name = name; this.power = 10; this.hp = 100; } } package ch13; public class GateWay { public static int zealotCount; public static int dragonCount; public static int darkTemp..