Back to Index Page generated: May 8, 2024, 6:16:03 AM

Expansion Hognose

Content

Warnings

  1. Information URL mismatch between OXP Manifest and Expansion Manager string length at character position 0

Manifest

from Expansion Manager's OXP list from Expansion Manifest
Description Originally developed by the Galactic Navy and Griff Industries for target practice, the ship nowadays is used for other purposes as well. Missionaries, scavengers and miners are flying the Hogose. For more details, please check the wiki page. Originally developed by the Galactic Navy and Griff Industries for target practice, the ship nowadays is used for other purposes as well. Missionaries, scavengers and miners are flying the Hogose. For more details, please check the wiki page.
Identifier oolite.oxp.zzz.Montana05.griff.hognose oolite.oxp.zzz.Montana05.griff.hognose
Title Hognose Hognose
Category Ships Ships
Author Griff, Montana05 Griff, Montana05
Version 0.50 0.50
Tags Archimedes ships Archimedes ships
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/c/c3/Oolite.oxp.zzz.Montana05.griff.hognose.OXZ n/a
License CC BY-NC-SA 4.0 CC BY-NC-SA 4.0
File Size n/a
Upload date 1651644939

Documentation

Also read http://wiki.alioth.net/index.php/Hognose

original_read_me.txt

Overview
--------

An OXP for Oolite v1.80 and higher that adds the 'Hognose' missionary ship from the Archimedes version of Elite.

Credits
-------

Concept, AI's & Description.plist copied from Dr Nil's Missionaries.oxp (http://wiki.alioth.net/index.php/Missionaries_OXP)

"The AIs are based on the basic game plus the ones from Boyracers and the Frog Space Rigshaw by Murgh." (missionaries.oxp readme.txt)

Models & textures by Griff

License
-------

This work is licensed under the Creative Commons Attribution-NonCommercial-ShareAlike License version 4.0. 
For more information see the ReadMe of Oolite or the Creative Commons' website.

Practically this means that you may rip it apart and use whatever seems useful to you, 
as long as you credit the original author.

Update History
---------------

V1.3.2 - CaptSolo - Fixed AI's - OXP now works!!
v1.3.1 - Made some AI changes, fixed incorrect decals (all ships had the 'Happy Eye preacher' decal instead of their own specific decal)
V1.3   - 30 May 2015  - Added hull 'weathering' effects
v1.22  - 07 June 2014 - updated fragment shader 
V1.21  - 01 June 2013 - fixed a bug in the shader, gl_Lightsource wasn't set properly (was 0, should have been 1)
V1.2   -  31 May 2013  - Removed player flyable version, added custom AI's and descriptions from Dr Nil's missionaries OXP. New Decal textures 
v1.1   -  30 May 2013  - Some small changes to the textures
V1.0   -  29 May 2013  - initial release

Remark
------

The original readme could be found in the manifest.plist of Hognose OXP.

read_me.txt

Overview
========

This OXP adds the Hognose ship from the Archimedes version of Elite. 

Originally designed to add various missionaries to the space lanes this offspring from the Hognose Missionaries OXP
is now featuring scavengers and miners in undeveloped systems.

History
=======

Initially developed by the Galactic Navy and Griff Industries for target practice, the Hognose was little more 
than laser fodder. However, since the ship is a real bargain over the time, it was used for other purposes as well. 
Missionaries, scavengers and miners are nowadays flying the Hognose and the Hognose Tugship by Murgh Shipyards 
operates in the fleets of various companies. 

Quite surprised by the success, Griff Industries recently introduced the Hognose II to the public market. Designed for 
interplanetary traffic this variant exchanged the hyperdrive for additional cargo space and now offers a cheaper 
alternative to the Orbital Shuttle.

Credits
=======

Griff (model, textures and shaders)

Remarks
=======

* This package is a simplified version of the Hognose Missionaries OXP from Griff. The various missionaries are 
  now replaced by scavengers and miners with a small chance for a shuttle.


Dependencies
============

* Oolite V 1.88 or higher.
* Requires a video card capable of supporting Oolite shaders.

Details
=======

For additional details please check the wiki-page: https://wiki.alioth.net/index.php/Hognose_(Oolite)

License
=======

This work is licensed under Creative Commons Attribution Non-Commercial Share Alike 4.0 International (CC BY-NC-SA 4.0).
To view a copy of this license, visit https://creativecommons.org/licenses/by-nc-sa/4.0

Version History
===============

V 0.50 / 2022-05-04 / Montana05
* initial release

Equipment

This expansion declares no equipment. This may be related to warnings.

Ships

Name
Hognose
Hognose
Hognose
Hognose
Hognose II

Models

This expansion declares no models. This may be related to warnings.

Scripts

Path
Scripts/griff_hognose_prospector_conditions.js
this.name			= "griff_hognose_prospector_conditions";
this.author			= "Montana05";
this.description	= "condition script for the Hognose";
this.version		= "0.50";
this.copyright		= "2022 Montana05";
this.licence		= "CC BY-NC-SA 4.0";
"use strict";

this.allowSpawnShip = function(shipKey) 
{
	// only undeveloped systems
	if(system.isInterstellarSpace || system.sun.isGoingNova || system.sun.hasGoneNova || system.techLevel > 5)
	{ 
		return false;
	};
	
	// otherwise available
	return true;
};