| Back to Index | Page generated: Apr 20, 2026, 4:52:51 AM |
| from Expansion Manager's OXP list | from Expansion Manifest | |
|---|---|---|
| Description | Updates the look of the Behemoth ships. | Updates the look of the Behemoth ships. |
| Identifier | oolite.oxp.phkb.Behemoth_Facelift | oolite.oxp.phkb.Behemoth_Facelift |
| Title | Behemoth Facelift | Behemoth Facelift |
| Category | Retextures | Retextures |
| Author | phkb | phkb |
| Version | 1.2 | 1.2 |
| Tags | ||
| Required Oolite Version | ||
| Maximum Oolite Version | ||
| Required Expansions |
|
|
| Optional Expansions | ||
| Conflict Expansions | ||
| Information URL | n/a | |
| Download URL | https://wiki.alioth.net/img_auth.php/1/12/Behemoth_Facelift.oxz | n/a |
| License | CC-BY-SA-NC 4.0 | CC-BY-SA-NC 4.0 |
| File Size | n/a | |
| Upload date | 1776075390 |
Behemoth Facelift by phkb Overview ======== This OXP aims to update the look of all the ships in the Behemoth mod with new textures and/or models. The goal was to make all the ships look like they occupy the same universe. Changes: - Retextures for all 5 Behemoth models, adding new normal, specular and gloss maps. - Swapped Viper model for Griff's Viper. - Swapped Asp model for Griff's Asp. - Swapped Sidewinder model for Griff's Sidewinder. - Swapped Thargon Collector for Griff's Transporter. - Swapped ball turret model for one from the Armoured Transport Type 1. Licence ======= This work is licensed under the Creative Commons Attribution-Noncommercial-Share Alike 4.0 Unported License. To view a copy of this license, visit http://creativecommons.org/licenses/by-nc-sa/4.0/ Version History =============== 1.2 - Added tweaks to Wireframe Ship Images, if installed, to match updated models. 1.1 - Unified logo usage. - Increased resolution on name plates. - Made ship numbering on NCC Carriers consistent with other Behemoths. 1.0 - Initial release
| Name |
|---|
| Ball Turret |
| Path | |
|---|---|
| Config/script.js | "use strict";
this.name = "behemoth_facelift";
this.author = "phkb";
this.copyright = "(C) 2026 Plebphkb";
this.licence = "CC-NC-by-SA 4.0";
this.description = "Tweaks to the Behemoth package";
this.startUpComplete = function() {
var wsi = worldScripts.WireframeShipImages;
if (wsi) {
wsi._gameShips["Navy Sidewinder"] = "sidewinder";
wsi._gameShips["Navy Asp Mark II"] = "asp2";
wsi._gameShips["Navy Viper"] = "interceptor";
wsi._gameShips["Navy Thargon Collector"] = "transporter";
}
} |