An upgrade item idea for post 1.0 versions

General discussion about anything related to Transcendence.
Post Reply
User avatar
SparcMan
Militia Lieutenant
Militia Lieutenant
Posts: 194
Joined: Tue Mar 07, 2006 3:17 am

I know that the Heliotrope rods can boost your reactor output, but I'm not sure if it increases your fuel capacity as well. I was thinking about a couple of upgrade items that specifically boost either your fuel capacity or your power output.
sdw195
Militia Captain
Militia Captain
Posts: 779
Joined: Wed Nov 18, 2009 1:01 am
Location: Still looking for the csc Antarctica
Contact:

I know that the Heliotrope rods can boost your reactor output, but I'm not sure if it increases your fuel capacity as well. I was thinking about a couple of upgrade items that specifically boost either your fuel capacity or your power output.

Code: Select all

<Events>
			<OnRefuel>
				; Chance that this will enhance the ship's drive
				(if (leq (random 1 100) (multiply 2 (itmGetCount gItem)))
					(objEnumItems gSource "rI" theItem
						(switch
							(itmIsDamaged theItem)
								(block Nil
									(objSendMessage gSource Nil (cat "Your " (itmGetName theItem 0) " has been repaired."))
									(shpRepairItem gSource theItem)
									)

							(not (itmIsEnhanced theItem))
								(block Nil
									(objSendMessage gSource Nil (cat "Your " (itmGetName theItem 0) " has been enhanced."))
									(shpEnhanceItem gSource theItem)
									)
							)
						)
					)
			</OnRefuel>
		</Events>
i dont think they boost your reactor output
i asked alterecco on the irc if there was a way to increse reactor power output
for a mod i am making
the fuel rods fix items or Enhance items not the power output of the reactor :D :D
User avatar
Blitz
Militia Commander
Militia Commander
Posts: 342
Joined: Wed Mar 07, 2007 7:29 am

I not sure I follow you.... Heliotrope fuel rods increase (enhance) the power of reactors till the 500MW one by 20%. It's perfectly possible to get a 600MW reactor - I always get myself one as the 49 Heliotrope cylinders you need to completely refuel an empty 500 MW reactor would give you a 98% chance that it'll be enhanced...

I copy pasted the code from the heliotrope fuel here
http://transcendence.pastebin.com/f5e898577
schilcote
Militia Captain
Militia Captain
Posts: 726
Joined: Sat Feb 02, 2008 7:22 pm

The fuel rods enhance the reactor, which increases output. I think that because the reactor's output is increased the amount of fuel it uses per watt is decreased, which means it burns fuel slower... I may be wrong though. We might have to ask George how reactors react (lol) to enhancements...

George, how do reactors react to enhancements?
[schilcote] It doesn't have to be good, it just has to not be "wow is that the only thing you could think of" bad
Post Reply