Modding Help sword stat template

Discussion in 'Starbound Modding' started by doctercorgi, Jan 3, 2014.

  1. doctercorgi

    doctercorgi Tentacle Wrangler

    so i made a sword in paint and i know nothing about how to code it so is there any tips that may help me out?
     
    Last edited: Jan 3, 2014
  2. ZimaZang

    ZimaZang Cosmic Narwhal

  3. doctercorgi

    doctercorgi Tentacle Wrangler

  4. ZimaZang

    ZimaZang Cosmic Narwhal

    Do you have a player.config? You need one of those to add the recipes to the crafting lists for each tier.
    An example one would be:
    Code:
    {
      "__merge" : [],
      "defaultBlueprints" : {
        "tier1" : [
          { "item" : "exampleitem1" },
          { "item" : "exampleitem2" },
          { "item" : "exampleitem3" }
      }
    }
    This file should be placed in the same place as your .modinfo file; /Starbound/mods/yourmodnamehere.
    And in case you don't have a .modinfo file, create one (yourmodname.modinfo):
    Code:
    {
      "name" : "Name of Your Mod Goes Here",
      "version" : "Beta v. Angry Koala",
      "path" : ".",
      "dependencies" : []
    }
     
  5. doctercorgi

    doctercorgi Tentacle Wrangler

    I'll try
     
  6. doctercorgi

    doctercorgi Tentacle Wrangler

    i don't know how to structure the sword file how do i do that?
     
  7. ZimaZang

    ZimaZang Cosmic Narwhal

    Try having a look at some of the sword structures under /Starbound/assets/items/swords.
     

Share This Page