Modify bow damage

Discussion in 'Starbound Modding' started by Xirukai, Dec 6, 2013.

  1. Xirukai

    Xirukai Pangalactic Porcupine

    How do you modify the titanium bow damage?
    Ingame it says the attack rating is 31 but when I got to the actual item I cant find anything with the value 31.

    Anyone else found a way to do this?
     
  2. Polyforce

    Polyforce Aquatic Astronaut

    I don't know shet about LUA but I'm guessing try modifying the power?
     
  3. ImSoto

    ImSoto Aquatic Astronaut

    Correct, they use levels and other things aswell to calculate overall damage like items, potions, etc. But that'd be the default.
     
  4. Xirukai

    Xirukai Pangalactic Porcupine

    What about the revolver.gun I see in the test folder of the guns?
    Would that be level?
     
  5. Polyforce

    Polyforce Aquatic Astronaut

    Level as in like, level 15 gun or something.

    Man LUA is interesting, I should learn it :p
     
  6. Xirukai

    Xirukai Pangalactic Porcupine

    Level seems to be armour penetration?

    Haven't figured the damage yet, don't want them NPCs oneshot me too!
     
  7. Xirukai

    Xirukai Pangalactic Porcupine

    I have found the solution to alter the damage to an insanely high amount!
    To one-shot the highest spawnable boss, that skeleton dragon!

    Code:
      "projectileType" : "bullet-1",
      "projectile" : {
        "power" : 800,
        "color" : [10, 255, 10]
      },
    
    Wish there was a way to make your own weapon from the parts of the random-gen system.
     
  8. shadowlif

    shadowlif Space Spelunker

    Its not LUA :3 ^^
    I think its JSON
     
  9. ImSoto

    ImSoto Aquatic Astronaut

    Yup ;p
     
  10. Xirukai

    Xirukai Pangalactic Porcupine

    Is JSON easy to learn?
     
  11. Zakamius

    Zakamius Void-Bound Voyager

    You don't really learn JSON, it's rather intuitive.
     
  12. Xirukai

    Xirukai Pangalactic Porcupine

    But if you understand what needs what, its do-able. Right?
     
  13. Zakamius

    Zakamius Void-Bound Voyager

    I don't get what you mean, JSON is designed to be read and understood by humans while being readable by computers.
     
  14. Zakamius

    Zakamius Void-Bound Voyager

    I don't get what you mean, JSON is designed to be read and understood by humans while being readable by computers.
     
  15. Leinfors

    Leinfors Space Spelunker

    How do you get the titanium bow?
     
  16. Tomohawkmissile2

    Tomohawkmissile2 Void-Bound Voyager

    JSON stands for JavaScript Object Notation. It's used for basic information and making info easier to read and store.
    Level is used in world generation, i do believe. Still tinkering about.
     

Share This Page