Fuel rods are mostly found in Transcendence.xml and take the form:
Code: Select all
<ItemType UNID="&itPteracniumFuelRod;"
name= "pteracnium fuel rod"
level= "7"
value= "300"
mass= "200"
frequency= "common"
numberAppearing= "3d6"
modifiers= "Consumable; Fuel"
data= "50000"
description= "Pteracnium is a stable transuranic compound of immense energy density. Refined and packaged as fuel rods this compound is ideal for gigawatt-class reactors."
>
<Image imageID="&rsItems1;" imageX="288" imageY="96" imageWidth="96" imageHeight="96"/>
</ItemType>
Reactors are also mainly found in the Transcendence.xml items section, and take the form:
Code: Select all
<ItemType UNID="&it100MWReactor;"
name= "Nova-100 reactor"
level= "5"
value= "10000"
frequency= "rare"
mass= "4000"
modifiers= "MajorItem"
description= "With 100MW peak power output, this reactor can power all except the most advanced military weapons and devices."
>
<Image imageID="&rsItems1;" imageX="288" imageY="288" imageWidth="96" imageHeight="96"/>
<ReactorDevice
maxPower= "1000"
fuelEfficiency= "18"
maxFuel= "250000"
minFuelTech= "2"
maxFuelTech= "5"
/>
</ItemType>
Between the two you can most likely arrange for some fuel mods of some kind. fuelEfficiency being a prime candidate in the reactors, also maxFuel which is the fuel tank basically.
Maybe try the adjusting the number in the fuel rod: data="50000", which I believe corresponds to the amount of fueling value in a single rod.