Advertisement
Guest User

Starsector example.skin

a guest
Feb 3rd, 2020
523
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
JSON 2.03 KB | None | 0 0
  1. {
  2.     "baseHullId":"example",
  3.     "skinHullId":"exampleSkin",
  4.    
  5.     # Everything below is optional
  6.     "tags":["roider_bp"],
  7.     "coversColor":"255,255,255,255",
  8.     "spriteName":"graphics/ships/colossus/colossus2_pather.png",
  9.     "hullName":"Example",
  10.     "hullDesignation":"Frigate",
  11.     "manufacturer":"Low Tech",
  12.     "tech":"Low Tech", # alternate for "manufacturer"
  13.     "fleetPoints":5, # causes "fpMod" to be ignored
  14.     "fpMod":2, # added to base hull's fleet points
  15.     "restoreToBaseHull":true, # default false
  16.     "fighterBays":0,
  17.     "ordnancePoints":30, # breaks variant compatibility with base hull
  18.     "baseValue":10000,
  19.     "baseValueMult":1,
  20.     "descriptionId":"exampleSkin",
  21.     "descriptionPrefix":"Prefix text.\n\n\"Two lines down in quotes.\"",
  22.     "systemId":"flares",
  23.     "removeWeaponSlots":[], # ids; breaks variant compatibility with base hull
  24.     "removeEngineSlots":[], # indices, as engine slots have no id in the .ship file; first indice is 0
  25.     "removeBuiltInMods":[], # ids; breaks variant compatibility with base hull
  26.     "removeBuiltInWings":[], # wing ids; breaks variant compatibility with base hull
  27.     "removeBuiltInWeapons":[], # weapon slot ids; breaks variant compatibility with base hull
  28.     "removeHints":[],
  29.     "addHints":[],
  30.     "builtInMods":[], # ids; breaks variant compatibility with base hull
  31.     "builtInWings":[], # wing ids; breaks variant compatibility with base hull
  32.     "builtInWeapons":{
  33.         "WS 001":"lightmg",
  34.         "WS 002":"lightmg"
  35.     },
  36.    "weaponSlotChanges":{ # breaks variant compatibility with base hull
  37.        "WS 001":{
  38.            "angle": 0,
  39.             "arc": 210,
  40.            "mount": "TURRET",
  41.             "size": "SMALL",
  42.            "type": "BUILT_IN"
  43.        },
  44.        "WS 002":{
  45.            "angle": 0,
  46.             "arc": 210,
  47.            "mount": "TURRET",
  48.             "size": "SMALL",
  49.            "type": "BUILT_IN"
  50.        },
  51.    },
  52.        "engineSlotChanges":{
  53.        "0":{
  54.             "width": 0,
  55.             "length": 210,
  56.             "angle": 210,
  57.             "style": "LOW_TECH",
  58.         },
  59.        "1":{
  60.             "width": 0,
  61.             "length": 210,
  62.             "angle": 210,
  63.             "style": "LOW_TECH",
  64.         }
  65.   }
  66. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement