Modding Help Setting damage of mech

Discussion in 'Starbound Modding' started by trip33, Dec 9, 2013.

  1. trip33

    trip33 Aquatic Astronaut

    How would i change the damage of the humanmech
    i want to increase its damage
     
  2. trip33

    trip33 Aquatic Astronaut

    Nobody knows what to edit to increase damage of mech ?
     
  3. NightmareX91

    NightmareX91 Phantasmal Quasar

    Look at the bullet-4 projectile. That's what the mech shoots.
     
  4. Inconspicuous

    Inconspicuous Scruffy Nerf-Herder

    Yeah NightmareX91 is right, just modify the bullet-4 projectile file.
    It should be at Starbound\assets\projectiles\guns\bullets\bullet-4 open the projectile file.
    You should get this
    Code:
    {
      "projectileName" : "bullet-4",
      "frames" : "bullet-4.png",
      "animationCycle" : 0.25,
      "armorPenetration" : 3,
      "frameNumber" : 1,
      "energyCostPerDamagePoint" : 16,
      "damageKindImage" : "icon.png",
      "pointLight" : false,
      "actionOnReap" : [
        {
          "action" : "config",
          "file" : "/projectiles/explosions/bulletexplosion/bulletexplosion.config"
        }
      ],
      "power" : 5.0,
      "damageKind" : "default"
    }
    
    Just change the numbers of "armourPenetration" and "power" to increase damage.
     

Share This Page