2008-03-10 00:01:30 +00:00
|
|
|
/*
|
|
|
|
|
|
|
|
oolite-thargoid-warship.js
|
|
|
|
|
|
|
|
Ship script for thargoid warship.
|
|
|
|
|
|
|
|
|
|
|
|
Oolite
|
2012-12-31 09:00:28 +00:00
|
|
|
Copyright © 2004-2013 Giles C Williams and contributors
|
2008-03-10 00:01:30 +00:00
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or
|
|
|
|
modify it under the terms of the GNU General Public License
|
|
|
|
as published by the Free Software Foundation; either version 2
|
|
|
|
of the License, or (at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program; if not, write to the Free Software
|
|
|
|
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
|
|
|
|
MA 02110-1301, USA.
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
2010-07-30 21:54:50 +00:00
|
|
|
/*jslint white: true, undef: true, eqeqeq: true, bitwise: true, regexp: true, newcap: true, immed: true */
|
2009-05-22 22:45:02 +00:00
|
|
|
/*global expandDescription*/
|
|
|
|
|
|
|
|
|
2011-01-02 17:54:54 +00:00
|
|
|
"use strict";
|
|
|
|
|
|
|
|
|
2008-03-10 00:01:30 +00:00
|
|
|
this.name = "oolite-thargoid-warship";
|
|
|
|
this.author = "Jens Ayton";
|
2012-12-31 09:00:28 +00:00
|
|
|
this.copyright = "© 2008-2013 the Oolite team.";
|
2013-08-27 12:51:53 +01:00
|
|
|
this.version = "1.79";
|
2008-03-10 00:01:30 +00:00
|
|
|
|
|
|
|
|
|
|
|
this.shipDied = function ()
|
|
|
|
{
|
2008-11-09 10:05:53 +00:00
|
|
|
this.ship.commsMessage(expandDescription("[thargoid_curses]"));
|
2009-05-22 22:45:02 +00:00
|
|
|
};
|