Posted: Fri Mar 02, 2007 4:19 pm
I read somewhere that the Anaconda has a crew of ten. Is it possible for it to launch between 1-10 escape pods on a death action?
For information and discussion about Oolite.
https://bb.oolite.space/
It's not a problem at all. I was going to do it much bigger (at the moment it's the same size as Oolite) but then I think I remember reading if it was bigger it wouldn't fit in the standard docking bay.Wolfwood wrote:Would it be too much to ask to scale the model up from what the present Oolite/Elite Anaconda is? To make it as big as the cargo hold size would suggest?
I'd love to see this project also take another look at the ship sizes and resizing them as necessary...
Nahhhh! It's just a futuristic Transit van! At one end there's a tiny cockpit and crew quarters and engines and power systems at the other. Inbetween, it's all open space!reills wrote:Givien the size capacity of the Anaconda's cargo bay in relation to its size, one could argue that the ship is a product created by the Time Lords using some TARDIS technology. Maybe add some TARDIS materialization sounds as one exits from Witchspace...
I think you can script conditions-clauses with d100-numbers in death_actions, so the answer should be yes.ramon wrote:I read somewhere that the Anaconda has a crew of ten. Is it possible for it to launch between 1-10 escape pods on a death action?
Oohh, ohh! How about this,this andthis. Predeliction for big stuff?ramon wrote:Well we're on the subject of Frontier are there any fave frontier ships you'd all like to see in a frontierships.oxp (although I'm probably getting ahead of myself seeing as I've not even finished the first original ship yet)
Code: Select all
<key>death_actions</key>
<array>
<dict>
<key>conditions</key>
<array>
<string>d100_number greaterthan 30</string>
</array>
<key>do</key>
<array>
<string>spawn: escape-capsule 3</string>
</array>
</dict>
<dict>
<key>conditions</key>
<array>
<string>d100_number greaterthan 50</string>
</array>
<key>do</key>
<array>
<string>spawn: escape-capsule 6</string>
</array>
</dict>
<dict>
<key>conditions</key>
<array>
<string>d100_number greaterthan 90</string>
</array>
<key>do</key>
<array>
<string>spawn: escape-capsule 9</string>
</array>
</dict>
</array>
Code: Select all
<key>death_actions</key>
<array>
<dict>
<key>conditions</key>
<array>
<string>pseudoFixedD100_number greaterthan 30</string>
</array>
<key>do</key>
<array>
<string>spawn: escape-capsule 3</string>
</array>
</dict>
<dict>
<key>conditions</key>
<array>
<string>pseudoFixedD100_number greaterthan 40</string>
</array>
<key>do</key>
<array>
<string>spawn: escape-capsule 1</string>
</array>
</dict>
<dict>
{Repeat for >50, >60, >70 >80 > 90]
</array>