Suits.json

From Halfway
Revision as of 14:59, 19 September 2014 by Seminus (Talk | contribs)

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

Overview

Sutis are the armor for the player and the enemies. So if you want add a new suit you have to do it here.

A suit can have the following effects:

  1. Reduces the damage (armor)
  2. Having a shield
  3. Change your skills while wearing it.

Note: Enemy armor are essentially the same as player suits but do not have any skill changing attributes.

Example

   {
     "class" : "Suit",
     "itemId" : "scoutSuit02",
     "itemType" : "Suit",
     "name" : "Scout Suit MK-II",
     "shortName" : "Scout II",
     "description" : "Scout Suits MK-II were developed for fast moving scouting troops. By utilising the latest in shield technology these suits are light and don't rely on heavy armor materials.",
     "iconId" : "scoutSuit",
     "consumable" : false,
     "shield" : 11,
     "armor" : 0.05,
     "rechargeTime" : 4,
     "buyValue" : 450,
     "sellValue" : 25,
     "attributes" : [
       {
         "attribute" : "Agility",
         "amount" : 1
       }
     ]
   },