Add extensive holotape content and terminal defs

Introduces a full holotape content expansion for 1.6, including new company, faction, government, misc, and personal holotape definition files with paired ThingDefs. Adds core holotape infrastructure (base item, category, read-thought, and designator dropdown group), and adds new wall-mounted terminal building defs that support holotape extraction and hacking rewards.
This commit is contained in:
RickGrymes
2026-07-11 10:32:37 -05:00
parent 8550a84583
commit 7e42acab49
10 changed files with 9968 additions and 0 deletions
@@ -0,0 +1,42 @@
<?xml version="1.0" encoding="utf-8" ?>
<Defs>
<!--__________ Holotape Base __________-->
<ThingDef Name="FCP_HolotapeBase" Abstract="True">
<thingClass>ThingWithComps</thingClass>
<category>Item</category>
<drawerType>MapMeshOnly</drawerType>
<tickerType>Never</tickerType>
<altitudeLayer>Item</altitudeLayer>
<passability>PassThroughOnly</passability>
<selectable>true</selectable>
<pathCost>15</pathCost>
<useHitPoints>true</useHitPoints>
<statBases>
<MaxHitPoints>50</MaxHitPoints>
<Mass>0.1</Mass>
<Flammability>1.0</Flammability>
<DeteriorationRate>2</DeteriorationRate>
<Beauty>-2</Beauty>
</statBases>
<thingCategories>
<li>FCP_Holotapes</li>
</thingCategories>
<alwaysHaulable>true</alwaysHaulable>
<comps>
<li Class="CompProperties_Forbiddable"/>
</comps>
<graphicData>
<texPath>Things/Items/Techprints/FCP_Techprint_Holotape_Orange</texPath>
<graphicClass>Graphic_Single</graphicClass>
</graphicData>
<tradeTags>
<li>ExoticMisc</li>
</tradeTags>
<thingSetMakerTags>
<li>RewardStandardMidFreq</li>
</thingSetMakerTags>
</ThingDef>
</Defs>