Skip to content

Instantly share code, notes, and snippets.

@SharpCoder
Created January 5, 2016 06:52
Show Gist options
  • Save SharpCoder/4140e2b646b6f558d587 to your computer and use it in GitHub Desktop.
Save SharpCoder/4140e2b646b6f558d587 to your computer and use it in GitHub Desktop.
dsadsa
// Mining ships
this.ships.push(new Ship({
title: 'Quarry',
description: 'A Class-I mining vessel. Tattered and old, but she\'ll get the job done!',
cost: 2000,
attack: 0,
defense: 20,
hp: 100,
miningIronMultiplier: 1.0,
miningGoldMultiplier: 1.0,
miningH3Multiplier: 1.0,
timeMultiplier: 1.0
}));
this.ships.push(new Ship({
title: 'Prodigy',
tech: 'Prodigy',
description: 'A Class-II mining vessel that specializes in iron harvesting.',
miningIronMultiplier: 2.5,
miningGoldMultiplier: 1.0,
miningH3Multiplier: 1.0,
cost: 8000,
attack: 0,
defense: 50,
hp: 400,
timeMultiplier: 5.0
}));
this.ships.push(new Ship({
title: 'Skytrader',
tech: 'Skytrader',
description: 'A Class-II mining vessel that specializes in gold harvesting.',
miningIronMultiplier: 1.0,
miningGoldMultiplier: 2.5,
miningH3Multiplier: 1.0,
cost: 8000,
attack: 0,
defense: 200,
hp: 400,
timeMultiplier: 5.0
}));
// War vessels
this.ships.push(new Ship({
title: 'Delta Wing',
description: 'A Class-I attack vessel useful in large groups. Great attack but poor defense',
cost: 250,
attack: 100,
defense: 50,
hp: 1000,
timeMultiplier: 2.0
}));
this.ships.push(new Ship({
title: 'Orbiter',
description: 'A Class-I attack vessel with great defense but poor attack.',
cost: 250,
attack: 70,
defense: 80,
hp: 1000,
timeMultiplier: 2.0
}));
this.ships.push(new Ship({
title: 'Warbird',
tech: 'Improved Attack I',
description: 'A Class-II attack vessel capable of providing basic firepower.',
cost: 800,
attack: 300,
defense: 200,
hp: 1500,
timeMultiplier: 4.0
}));
this.ships.push(new Ship({
title: 'Shadow',
tech: 'Improved Attack I',
description: 'A Class-II attack vessel capable of providing massive firepower with severely reduced shields.',
cost: 800,
attack: 450,
defense: 50,
hp: 1500,
timeMultiplier: 4.0
}));
this.ships.push(new Ship({
title: 'Bloodletter',
tech: 'Improved Attack II',
description: 'A Class-III attack vessel capable of providing massive firepower.',
cost: 1600,
attack: 800,
defense: 400,
hp: 2200,
timeMultiplier: 6.0
}));
this.ships.push(new Ship({
title: 'Apollo',
tech: 'Improved Attack II',
description: 'A Class-III attack vessel capable of providing massive firepower with reduced defenses.',
cost: 1600,
attack: 500,
defense: 700,
hp: 2200,
timeMultiplier: 6.0
}));
this.ships.push(new Ship({
title: 'Crusader',
tech: 'Improved Attack III',
description: 'A Class-IV attack vessel capable of providing massive firepower.',
cost: 3200,
attack: 2500,
defense: 100,
hp: 3000,
timeMultiplier: 10.0
}));
this.ships.push(new Ship({
title: 'Andromeda',
tech: 'Improved Attack III',
description: 'A Class-IV attack vessel capable of providing massive firepower with reduced defense.',
cost: 3200,
attack: 1600,
defense: 1500,
hp: 3000,
timeMultiplier: 10.0
}));
// Science Vessels
this.ships.push(new Ship({
title: 'Mythos',
description: 'A basic science vessel capable of investigating anomalies.',
cost: 2000,
attack: 0,
defense: 20,
hp: 100,
timeMultiplier: 1.0
}));
// Technology ships.
this.ships.push(new Ship({
title: 'Stratos',
tech: 'Space Exploration I',
description: 'An advanced exploration vessel capable of leading a fleet to new sectors.',
cost: 6000,
attack: 0,
defense: 100,
hp: 100,
explorationDistance: 5.0,
timeMultiplier: 2.0
}));
this.ships.push(new Ship({
title: 'Terraformer',
tech: 'Terraform Planets',
description: 'A basic science vessel capable of colonizing planets.',
cost: 10000,
attack: 0,
defense: 20,
hp: 100,
timeMultiplier: 1.0
}));
// A.I. Ships
this.ships.push(new Ship({
title: 'Pirate Ship',
description: 'A basic science vessel capable of colonizing planets.',
attack: 100,
defense: 50,
hp: 100,
pirate: true,
timeMultiplier: 1.0
}));
this.ships.push(new Ship({
title: 'Voracious',
description: 'A basic science vessel capable of colonizing planets.',
attack: 100,
defense: 50,
hp: 100,
pirate: true,
timeMultiplier: 1.0
}));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment