Suits.json
From Halfway
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:
- Reduces the damage (armor)
- Having a shield
- 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
}
]
},