Example #1
0
        public override Ship CreateShip()
        {
            this.modelstring = "Fighter";
            this.speed = 3;
            this.range = 4;
            this.damage = 1;
            this.cost = 100;
            this.shield = 2;
            this.capacity = 0;
            this.buildTime = 2;

            Warship newship = new Warship(this);
            return newship;
        }
Example #2
0
        public override Ship CreateShip()
        {
            this.modelstring = "StarCruiser";
            this.speed = 3;
            this.range = 4;
            this.damage = 1;
            this.shield = 4;
            this.cost = 500;
            this.capacity = 0;
            this.buildTime = 4;

            this.canenter = false;
            this.canjump = true;

            Warship newship = new Warship(this);
            return newship;
        }