Modding Help Which file contains the contents of the starter storage? [Solved!]

Discussion in 'Starbound Modding' started by Rico Penguin, Dec 15, 2013.

  1. Rico Penguin

    Rico Penguin Star Wrangler

    Hello,

    I've been searching throughout the install directory and am not sure where the default item list of the ship locker is located.

    Anyone found it yet? I need to edit the contents within to fit my current mod project (and balance) :p.

    Danke in advance!
     
  2. Xlar

    Xlar Void-Bound Voyager

    "default.treasurepools" in ..\Starbound\assets\treasure folder
     
    Rico Penguin likes this.
  3. tifel100

    tifel100 Void-Bound Voyager

    it's "/assets/treasure/default/treasurepools"
    but if you're making a new race, you can add 1 yourself
    name it anything
    Code:
    {
      "racenameStarterTreasure" : [
        [, {
            "fill" : [
              "beamaxe",
              "flashlight",
              [ "humanstarter", 1 ],
              [ "torch", 10 ],
              [ "pussplumseed", 3],
              [ "neonmelonseed", 3]
            ],
            "levelVariance" : [0, 0],
            "allowDuplication" : false
          } ]
      ]
    }
    
    Note that you would have to change dropshipblocks.structure in your race's ship folder from defaultRaceStarterTreasure to racenameStarterTreasure
     
    Rico Penguin likes this.
  4. Wazupmaster

    Wazupmaster Phantasmal Quasar

    Starbound/assets/treasure/default.treasurepools
     
    Rico Penguin likes this.
  5. Rico Penguin

    Rico Penguin Star Wrangler

    Thanks! Likes all around!
     

Share This Page