Back to Index | Page generated: Nov 12, 2024, 11:02:04 PM |
from Expansion Manager's OXP list | from Expansion Manifest | |
---|---|---|
Description | Awards Witchdrive Fuel Injectors to the player ship and makes them immune to damage. Press \"i\" for more information. - - - - - - - - - - It's not uncommon for the player to be attacked by large groups of pirates even in the early game (when the player ship is especially vulnerable). By granting the player free injectors that are not subject to damage there is now a good chance to flee from such encounters. Furthermore slower, more vulnerable starting ships are now more viable for the player. As before, injector function is subject to fuel supply and so the player won't be able to run every time. Non player ships don't always have injectors of course but then whether they don't have injectors or have simply run out of fuel is not obvious to the player. | Awards Witchdrive Fuel Injectors to the player ship and makes them immune to damage. Press \"i\" for more information. - - - - - - - - - - It's not uncommon for the player to be attacked by large groups of pirates even in the early game (when the player ship is especially vulnerable). By granting the player free injectors that are not subject to damage there is now a good chance to flee from such encounters. Furthermore slower, more vulnerable starting ships are now more viable for the player. As before, injector function is subject to fuel supply and so the player won't be able to run every time. Non player ships don't always have injectors of course but then whether they don't have injectors or have simply run out of fuel is not obvious to the player. |
Identifier | oolite.oxp.redspear.indestructible_injectors | oolite.oxp.redspear.indestructible_injectors |
Title | Indesructible Injectors | Indesructible Injectors |
Category | Mechanics | Mechanics |
Author | Redspear | Redspear |
Version | 1.0 | 1.0 |
Tags | ||
Required Oolite Version | ||
Maximum Oolite Version | ||
Required Expansions | ||
Optional Expansions | ||
Conflict Expansions | ||
Information URL | http://aegidian.org/bb/viewtopic.php?f=4&t=16842 | n/a |
Download URL | https://wiki.alioth.net/img_auth.php/3/3f/Indestructible_Injectors.oxz | n/a |
License | CC-BY-NC-SA 4.0 | CC-BY-NC-SA 4.0 |
File Size | n/a | |
Upload date | 1610873281 |
{\rtf1\ansi\ansicpg1252\deff0\deflang2057{\fonttbl{\f0\froman\fcharset0 Times New Roman;}{\f1\fswiss\fcharset0 Arial;}} {\*\generator Msftedit 5.41.21.2509;}\viewkind4\uc1\pard\sb100\sa100\f0\fs24 Indestructible Injectors 1.0\par Author: Redspear\par Licence: Creative Commons Attribution-Noncommercial-Share Alike 4.0 \par \par What it Does:\par Makes the equipment item 'Withdrive Fuel Injectors' standard issue for every player ship.\par Just like a ship's hyperdrive it will neither show on the ship's inventory nor will it be subject to damage.\par \par Rationale:\par It's not uncommon for the player to be attacked by large groups of pirates even in the early game (when the player ship is especially vulnerable).\par By granting the player free injectors that are not subject to damage there is now a good chance to flee from such encounters.\par Furthermore slower, more vulnerable starting ships are now more viable for the player.\par As before, injector function is subject to fuel supply and so the player won't be able to run every time.\par Non player ships don't always have injectors of course but then whether they don't have injectors or have simply run out of fuel is not obvious to the player.\par \par Disabling the injectors:\par Whilst no longer subject to damage, it is still possible to disable the injectors by script. Simply set speed factor to 1 and fuel consumption to 0.\par \par For the future:\par I may not grant this change to every ship. For example, it may require a hyperdrive in order to be present.\par \line\line\line\line\par \pard\f1\fs20\par }
Name | Visible | Cost [deci-credits] | Tech-Level |
---|---|---|---|
Witchdrive Fuel Injectors | no | 6000 | 11+ |
Path | |
---|---|
Scripts/indestructible_injectors.js | this.name = "indestructible_injectors"; this.author = "Redspear"; this.copyright = "2017 Redspear"; this.licence = "CC BY-NC-SA 4.0"; this.description = "Script to add witchdrive fuel injectors to the player ship"; this.version = "1.0"; "use strict"; // make sure player ship has working fuel injectors this.startUp = this.playerBoughtNewShip = function() { if (player.ship.equipmentStatus("EQ_FUEL_INJECTION") != "EQUIPMENT_OK") {player.ship.removeEquipment("EQ_FUEL_INJECTION"); player.ship.awardEquipment("EQ_FUEL_INJECTION");} else return } |