What is a ASL Valkerie
Moderators: winston, another_commander
What is a ASL Valkerie
Came across this "object". ID system identifies it as ASL Valkerie. Is it a ship or what? It didn't broadcast any message & wasn't moving.
Re: What is a ASL Valkerie
Thanks, I think that's correct
- Cholmondely
- Archivist
- Posts: 5364
- Joined: Tue Jul 07, 2020 11:00 am
- Location: The Delightful Domains of His Most Britannic Majesty (industrial? agricultural? mainly anything?)
- Contact:
Re: What is a ASL Valkerie
Welcome to the merry throng! How on earth did you find us? We're almost invisible nowadays!
The Emerald and the Tigershark liners are dockable.
You need phkb's "liners markets" oxz loaded, and for docking either
a) nerves of steel and trigger reflexes
b) the "ILS" (Instrument Landing System) oxz - and nerves of steel when you watch it
c) or to tweak the Liners oxp to allow the Docking Computer's fast docking (see here for details)
A small limited market, but excellent prices while in Industrial systems for a handful of furs, liquors, gold, platinum & gems. Also occasional cheap radioactives which they wish to dispose of. Prices in Agricultural systems are not so good.
Comments wanted:
•Missing OXPs? What do you think is missing?
•Lore: The economics of ship building How many built for Aronar?
•Lore: The Space Traders Flight Training Manual: Cowell & MgRath Do you agree with Redspear?
•Missing OXPs? What do you think is missing?
•Lore: The economics of ship building How many built for Aronar?
•Lore: The Space Traders Flight Training Manual: Cowell & MgRath Do you agree with Redspear?
- hiran
- Theorethicist
- Posts: 2403
- Joined: Fri Mar 26, 2021 1:39 pm
- Location: a parallel world I created for myself. Some call it a singularity...
Re: What is a ASL Valkerie
The liners apparently define their ship names at runtime, based on this algorithm:
So some ship name is prefixed with 'ASL', and 'ASL Valkerie' is one of the possible outcomes.
Code: Select all
this.nameShip = function()
{
this.nameArray = ["XXXX", "Titanic", "Olympic", "Galactica", "Andromeda", "Kessel", "Aegidian", "Aqualina", "Antilles", "Dark Star", "Atlantis", "Discovery", "Kobayashi Maru", "Bermuda Cube", "Nebula", "Empiric", "Majestic", "Emerald Moon", "Empress of Ryaxaxax", "Far Sky", "Fuji Maru", "Imperator", "XXXX", "Independence", "Leviathan", "Maelstrom", "Meridian", "Michelangelo", "Millenium", "Neptune", "Neptunia", "Oceania", "Oceanic", "Orca", "Republic", "Resolute", "Saturnia", "Soyuz", "Valkerie", "Valhalla", "Star Dancer", "Solaris", "Victory", "Viking", "XXXX", "Vulcan", "Concorde", "Wolf", "Adonis", "Poseidon", "Zeus", "Apollo", "Eagle", "Phoenix", "Adventurer", "Odyssey", "Dolphin", "Allure", "Amadeus", "Adamant", "Spirit", "Aquamarine", "Arcadia", "XXXX", "Calypso", "Conquest", "Freedom", "Imagination", "Inspiration", "Legend", "Liberty", "Constellation", "Infinity", "Heart of Gold", "Solstice", "Mercury", "Jupiter", "Saturn", "Mars", "Crystal", "Symphony", "Melody", "Ambassador", "Rhapsody", "Wonder", "XXXX", "Dream Weaver", "Dreamer", "Elation", "Enchanter", "Enchantment", "Illusion", "Conjurer", "Magii", "Far Star", "XXXX", "Venturer", "Jubilee", "Sun Skimmer", "Lucky", "Preen", "Lucky Star", "Brigadoon", "Mardi Gras", "Carnival", "Festival", "Samba", "Tango", "Mariner", "Minerva", "Fantasia", "Opera", "Firefox", "Explorer", "Oasis", "Orion", "Platinum", "Aloha", "Radiant", "Regal", "Renaissance", "Princess", "Royale", "Rose", "Wonder", "Sovereign", "Vista", "Capricorn", "Aquarius", "Pisces", "Aries", "Taurus", "Gemini", "Leo", "Virgo", "Libra", "Scorpio", "Corona", "Wind Song", "Zion", "XXXX"];
this.nameChoice = Math.floor(Math.random() * this.nameArray.length);
this.shipTitle = this.nameArray[this.nameChoice]
if(this.shipTitle !== "XXXX")
{ this.ship.displayName = "ASL " + this.shipTitle; }
else
{
this.titleArray = ["Maid", "Queen", "Empress", "Moons", "Freedom", "Majesty", "Splendour", "Magic", "Memories", "Tales", "Spirit"];
this.titleChoice = Math.floor(Math.random() * this.titleArray.length);
this.systemName = System.systemNameForID(Math.floor(Math.random() * 256));
this.ship.displayName = this.titleArray[this.titleChoice] + " of " + this.systemName;
this.shipTitle = this.titleArray[this.titleChoice] + " of " + this.systemName;
}
}
Sunshine - Moonlight - Good Times - Oolite