Difference between revisions of "Small Ships OXZ"

From Elite Wiki
m
m
 
(7 intermediate revisions by the same user not shown)
Line 2: Line 2:
 
== FE Shipyards ==
 
== FE Shipyards ==
  
We are delighted to be able to offer our valued customers a collection of serviceable and essentially unmodified examples of the classic Asp Mk II, Fer-de-Lance, Gecko, Krait, Mamba, Sidewinder, Constrictor, Viper, Viper Interceptor, Worm, and Transporter.  
+
We are delighted to be able to offer our valued customers a selection of serviceable and essentially unmodified examples of the classic and increasingly hard to acquire Asp, Fer-de-Lance, Gecko, Krait, Mamba, Sidewinder, Constrictor, Viper, Viper Interceptor, Worm, and Transporter.  
  
Those craft originally sans Hyperdrive now have one installed; those without cargo space remain without.  
+
Those craft originally sans Hyperdrive now have one installed; those without provision for cargo remain without.  
  
  
 
== New Prices ==
 
== New Prices ==
  
Revised price adjustments have been applied, and given these ships' impending obsolescence—offset by their collector appeal—we believe they are priced fairly for discerning clients. Our valuation is grounded in the mass, cargo capacity, and speed of the venerable Cobra Mk III. FE Shipyards is pleased to pass these savings on to you:
+
Revised price adjustments have been applied and, given these ships' '''impending obsolescence'''—offset by their '''collector appeal'''—we believe they are priced fairly for discerning clients. Our valuation is grounded in the mass, cargo capacity, and speed of the venerable Cobra Mk III. FE Shipyards is pleased to pass these savings on to you:
  
 
<pre>
 
<pre>
Line 31: Line 31:
 
</pre>
 
</pre>
  
On sale with valuations exactly as quoted at our Lave, Tionisla, and Anarlaqu showrooms. Small Ships with no additional equipment - apart from the Advanced Space Compass, Injectors, and Hyperdrive installed as standard - are labelled 'standard customer model'.
+
On sale with valuations exactly as quoted at our '''Lave''', '''Tionisla''', and '''Anarlaqu''' showrooms. Small Ships with no additional equipment - apart from the Advanced Space Compass, Injectors, and Hyperdrive installed as standard - are labelled 'standard customer model'.
  
  
Line 66: Line 66:
 
== Downloads ==
 
== Downloads ==
  
Download Version 1.1 of Small Ships (zipped OXP):
+
Download Version 1.2 of Small Ships (zipped OXP):
  
 
https://wiki.alioth.net/img_auth.php/1/1a/Small_Ships.oxp.zip
 
https://wiki.alioth.net/img_auth.php/1/1a/Small_Ships.oxp.zip
Line 72: Line 72:
 
Simply unzip to your Oolite AddOns folder.
 
Simply unzip to your Oolite AddOns folder.
  
Download Version 1.1 of Small Ships (OXZ):
+
Download Version 1.2 of Small Ships (OXZ):
  
 
https://wiki.alioth.net/img_auth.php/1/1f/Small_Ships.oxz
 
https://wiki.alioth.net/img_auth.php/1/1f/Small_Ships.oxz
Line 81: Line 81:
 
== Quick Facts ==
 
== Quick Facts ==
  
{{IconOXP|ooVersion="1.89"|oxpCPU="Low"|oxpMEM="Average"|oxpGPU="Low"}}
+
{{IconOXP|ooVersion="1.90"|oxpCPU="Low"|oxpMEM="Average"|oxpGPU="Low"}}
  
 
[[File:Tag-colour-blue.png]]
 
[[File:Tag-colour-blue.png]]
 
{{OXPLevel|1}}{{Infobox OXPb| title = Small Ships
 
{{OXPLevel|1}}{{Infobox OXPb| title = Small Ships
|version = 1.1
+
|version = 1.2
 
|release = 2026-05-07
 
|release = 2026-05-07
 
|features = Expands choices
 
|features = Expands choices

Latest revision as of 21:20, 7 May 2026

FE Shipyards

We are delighted to be able to offer our valued customers a selection of serviceable and essentially unmodified examples of the classic and increasingly hard to acquire Asp, Fer-de-Lance, Gecko, Krait, Mamba, Sidewinder, Constrictor, Viper, Viper Interceptor, Worm, and Transporter.

Those craft originally sans Hyperdrive now have one installed; those without provision for cargo remain without.


New Prices

Revised price adjustments have been applied and, given these ships' impending obsolescence—offset by their collector appeal—we believe they are priced fairly for discerning clients. Our valuation is grounded in the mass, cargo capacity, and speed of the venerable Cobra Mk III. FE Shipyards is pleased to pass these savings on to you:


[Adder]: 			 60,696 Cr
[Asp Mk II]:		 	 95,981 Cr
[Cobra Mk I]: 		 	 84,936 Cr
[Cobra Mk III]:			157,572 Cr (base of comparison) 
[Constrictor]: 			154,051 Cr
[Fer-de-Lance]:		 	 96,369 Cr
[Gecko]:			 71,432 Cr
[Krait]:			 87,562 Cr
[Mamba]:			 80,498 Cr
[Moray]:			 91,178 Cr
[Sidewinder]:		 	 77,352 Cr
[Shuttle]:			 85,581 Cr
[Transporter]:		 	 48,577 Cr
[Viper]:			 70,460 Cr
[Viper Interceptor]:	        109,032 Cr

On sale with valuations exactly as quoted at our Lave, Tionisla, and Anarlaqu showrooms. Small Ships with no additional equipment - apart from the Advanced Space Compass, Injectors, and Hyperdrive installed as standard - are labelled 'standard customer model'.


Matters Technical

For those curious as to how we derived and applied the three weightings algorithmically, we present the Javascript function that returned the above prices.


// Calculate a rationalized price for any ship, using cobra3 as a baseline
this._rationalizedPrice = function(shipSize, cargoCapacity, shipMaxSpeed) {
    const COBRA_SIZE = { x: 130, y: 30, z: 65 };   
    const COBRA_CARGO = 20;
    const COBRA_MAX_SPEED = 350; // LS
    const COBRA_PRICE = 150000;

    const shipVolume = shipSize.x * shipSize.y * shipSize.z;
    const cobraVolume = COBRA_SIZE.x * COBRA_SIZE.y * COBRA_SIZE.z;

    const volumeMultiplier = shipVolume / cobraVolume;
    const cargoMultiplier = cargoCapacity / COBRA_CARGO;
    const speedMultiplier = shipMaxSpeed / COBRA_MAX_SPEED;

    // Current weighting: 25% volume, 30% cargo, 45% speed
    const combinedMultiplier = (volumeMultiplier * 0.25) + (cargoMultiplier * 0.3) + (speedMultiplier * 0.45);

    return Math.round(COBRA_PRICE * combinedMultiplier);
}
   


Downloads

Download Version 1.2 of Small Ships (zipped OXP):

https://wiki.alioth.net/img_auth.php/1/1a/Small_Ships.oxp.zip

Simply unzip to your Oolite AddOns folder.

Download Version 1.2 of Small Ships (OXZ):

https://wiki.alioth.net/img_auth.php/1/1f/Small_Ships.oxz

Place this file in your Oolite AddOns folder.


Quick Facts

Minimum Oolite versionCPU usage lowMemory usage averageGPU usage low

Tag-colour-blue.png

Levelindicator1.png
1-{{{2}}}
Version Released License Features Category Author(s) Feedback
1.2 2026-05-07 CC BY-NC-SA 4 Expands choices Ships OXPs Reval N/A