Merge branch 'release/2.2.10'

This commit is contained in:
Cmdr McDonald
2017-01-23 13:04:05 +00:00
27 changed files with 16430 additions and 1619 deletions

View File

@@ -1,3 +1,10 @@
#2.2.10
* Fix incorrect base shield values for Cutter and Corvette
* Update weapons to have %-based damage distributions
* Remove power draw for detailed surface scanner - although shown in outfitting it is not part of active power
* Fix incorrect names for lightweight and kinetic armour
* Add engineering blueprints
#2.2.9 #2.2.9
* Add falloff metric for weapons * Add falloff metric for weapons
* Add falloff from range modification * Add falloff from range modification

3766
dist/index.js vendored

File diff suppressed because it is too large Load Diff

9348
dist/index.json vendored

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@@ -2,6 +2,6 @@ module.exports = {
blueprints: require('./blueprints'), blueprints: require('./blueprints'),
modifications: require('./modifications'), modifications: require('./modifications'),
modifierActions: require('./modifierActions'), modifierActions: require('./modifierActions'),
specials: require('./specials'), modules: require('./modules'),
validity: require('./validity') specials: require('./specials')
}; };

View File

@@ -6,6 +6,7 @@
"burstrof": {"id": 41, "name": "burstrof", "type": "percentage", "method": "multiplicative"}, "burstrof": {"id": 41, "name": "burstrof", "type": "percentage", "method": "multiplicative"},
"clip": {"id": 4, "name": "clip", "type": "percentage", "method": "multiplicative"}, "clip": {"id": 4, "name": "clip", "type": "percentage", "method": "multiplicative"},
"damage": {"id": 5, "name": "damage", "type": "percentage", "method": "multiplicative"}, "damage": {"id": 5, "name": "damage", "type": "percentage", "method": "multiplicative"},
"damagedist": {"id": 40, "name": "damage", "type": "hidden", "method": "overwrite"},
"distdraw": {"id": 6, "name": "distdraw", "type": "percentage", "method": "multiplicative"}, "distdraw": {"id": 6, "name": "distdraw", "type": "percentage", "method": "multiplicative"},
"duration": {"id": 7, "name": "duration", "type": "percentage", "method": "multiplicative"}, "duration": {"id": 7, "name": "duration", "type": "percentage", "method": "multiplicative"},
"eff": {"id": 8, "name": "eff", "type": "percentage", "method": "multiplicative"}, "eff": {"id": 8, "name": "eff", "type": "percentage", "method": "multiplicative"},
@@ -33,6 +34,7 @@
"rof": {"id": 29, "name": "rof", "type": "percentage", "method": "multiplicative"}, "rof": {"id": 29, "name": "rof", "type": "percentage", "method": "multiplicative"},
"shield": {"id": 30, "name": "shield", "type": "percentage", "method": "multiplicative"}, "shield": {"id": 30, "name": "shield", "type": "percentage", "method": "multiplicative"},
"shieldboost": {"id": 31, "name": "shieldboost", "type": "percentage", "method": "multiplicative"}, "shieldboost": {"id": 31, "name": "shieldboost", "type": "percentage", "method": "multiplicative"},
"shotspeed": {"id": 43, "name": "shotspeed", "type": "percentage", "method": "multiplicative"},
"spinup": {"id": 32, "name": "spinup", "type": "percentage", "method": "multiplicative"}, "spinup": {"id": 32, "name": "spinup", "type": "percentage", "method": "multiplicative"},
"syscap": {"id": 33, "name": "syscap", "type": "percentage", "method": "multiplicative"}, "syscap": {"id": 33, "name": "syscap", "type": "percentage", "method": "multiplicative"},
"sysrate": {"id": 34, "name": "sysrate", "type": "percentage", "method": "multiplicative"}, "sysrate": {"id": 34, "name": "sysrate", "type": "percentage", "method": "multiplicative"},
@@ -40,6 +42,5 @@
"thermres": {"id": 36, "name": "thermres", "type": "percentage", "method": "additive"}, "thermres": {"id": 36, "name": "thermres", "type": "percentage", "method": "additive"},
"wepcap": {"id": 37, "name": "wepcap", "type": "percentage", "method": "multiplicative"}, "wepcap": {"id": 37, "name": "wepcap", "type": "percentage", "method": "multiplicative"},
"weprate": {"id": 38, "name": "weprate", "type": "percentage", "method": "multiplicative"}, "weprate": {"id": 38, "name": "weprate", "type": "percentage", "method": "multiplicative"},
"shieldreinforcement": {"id": 39, "name": "shieldreinforcement", "type": "percentage", "method": "multiplicative"}, "shieldreinforcement": {"id": 39, "name": "shieldreinforcement", "type": "percentage", "method": "multiplicative"}
"type": {"id": 40, "name": "type", "type": "alphabetic", "method": "overwrite"}
} }

View File

@@ -217,12 +217,17 @@
"special_incendiary_rounds": { "special_incendiary_rounds": {
"rof": 0.05263157894736842, "rof": 0.05263157894736842,
"thermload": 2, "thermload": 2,
"type": "T" "damagedist": {
"T": 1
}
}, },
"special_inertial_impact": { "special_inertial_impact": {
"damage": 0.5, "damage": 0.5,
"jitter": 1, "jitter": 1,
"type": "KT" "damagedist": {
"K": 0.5,
"T": 0.5
}
}, },
"special_overload_munitions": { "special_overload_munitions": {
}, },

780
modifications/modules.json Normal file
View File

@@ -0,0 +1,780 @@
{
"am": {
"blueprints": {
"AFM_LightWeight": [1, 2, 3, 4, 5],
"AFM_Reinforced": [1, 2, 3, 4, 5],
"AFM_Shielded": [1, 2, 3, 4, 5]
},
"modifications": [
"integrity",
"power"
]
},
"bh": {
"blueprints": {
"Armour_Advanced": [1, 2, 3, 4, 5],
"Armour_Explosive": [1, 2, 3, 4, 5],
"Armour_HeavyDuty": [1, 2, 3, 4, 5],
"Armour_Kinetic": [1, 2, 3, 4, 5],
"Armour_Thermic": [1, 2, 3, 4, 5]
},
"modifications": [
"explres",
"hullboost",
"kinres",
"mass",
"thermres"
]
},
"bl": {
"blueprints": {
"Weapon_Efficient": [1, 2, 3, 4, 5],
"Weapon_LightWeight": [1, 2, 3, 4, 5],
"Weapon_LongRange": [1, 2, 3, 4, 5],
"Weapon_Overcharged": [1, 2, 3, 4, 5],
"Weapon_ShortRange": [1, 2, 3, 4, 5],
"Weapon_Sturdy": [1, 2, 3, 4, 5]
},
"modifications": [
"damage",
"damagedist",
"distdraw",
"fallofffromrange",
"integrity",
"jitter",
"mass",
"piercing",
"power",
"range",
"thermload"
]
},
"bsg": {
"blueprints": {
"ShieldGenerator_Kinetic": [1, 2, 3, 4, 5],
"ShieldGenerator_Optimised": [1, 2, 3, 4, 5],
"ShieldGenerator_Reinforced": [1, 2, 3, 4, 5],
"ShieldGenerator_Thermic": [1, 2, 3, 4, 5]
},
"modifications": [
"boot",
"brokenregen",
"distdraw",
"explres",
"integrity",
"kinres",
"mass",
"optmass",
"optmul",
"power",
"regen",
"thermload",
"thermres"
]
},
"c": {
"blueprints": {
"Weapon_Efficient": [1, 2, 3, 4, 5],
"Weapon_HighCapacity": [1, 2, 3, 4, 5],
"Weapon_LightWeight": [1, 2, 3, 4, 5],
"Weapon_LongRange": [1, 2, 3, 4, 5],
"Weapon_Overcharged": [1, 2, 3, 4, 5],
"Weapon_RapidFire": [1, 2, 3, 4, 5],
"Weapon_ShortRange": [1, 2, 3, 4, 5],
"Weapon_Sturdy": [1, 2, 3, 4, 5]
},
"modifications": [
"ammo",
"clip",
"damage",
"damagedist",
"distdraw",
"fallofffromrange",
"integrity",
"jitter",
"mass",
"piercing",
"power",
"range",
"reload",
"rof",
"shotspeed",
"thermload"
]
},
"cc": {
"blueprints": {
"CollectionLimpet_LightWeight": [1, 2, 3, 4, 5],
"CollectionLimpet_Reinforced": [1, 2, 3, 4, 5],
"CollectionLimpet_Shielded": [1, 2, 3, 4, 5]
},
"modifications": [
"integrity",
"mass",
"power"
]
},
"ch": {
"blueprints": {
"ChaffLauncher_ChaffCapacity": [1, 2, 3, 4, 5],
"ChaffLauncher_LightWeight": [1, 2, 3, 4, 5],
"ChaffLauncher_Reinforced": [1, 2, 3, 4, 5],
"ChaffLauncher_Shielded": [1, 2, 3, 4, 5]
},
"modifications": [
"ammo",
"integrity",
"mass",
"power",
"reload"
]
},
"cr": {
"blueprints": {
},
"modifications": [
]
},
"cs": {
"blueprints": {
"CargoScanner_LightWeight": [1, 2, 3, 4, 5],
"CargoScanner_Reinforced": [1, 2, 3, 4, 5],
"CargoScanner_Shielded": [1, 2, 3, 4, 5]
},
"modifications": [
"boot",
"integrity",
"mass",
"power"
]
},
"dc": {
"blueprints": {
},
"modifications": [
]
},
"ec": {
"blueprints": {
"ECM_LightWeight": [1, 2, 3, 4, 5],
"ECM_Reinforced": [1, 2, 3, 4, 5],
"ECM_Shielded": [1, 2, 3, 4, 5]
},
"modifications": [
"integrity",
"mass",
"power"
]
},
"fc": {
"blueprints": {
"Weapon_DoubleShot": [1, 2, 3, 4, 5],
"Weapon_Efficient": [1, 2, 3, 4, 5],
"Weapon_HighCapacity": [1, 2, 3, 4, 5],
"Weapon_LightWeight": [1, 2, 3, 4, 5],
"Weapon_LongRange": [1, 2, 3, 4, 5],
"Weapon_Overcharged": [1, 2, 3, 4, 5],
"Weapon_RapidFire": [1, 2, 3, 4, 5],
"Weapon_Sturdy": [1, 2, 3, 4, 5]
},
"modifications": [
"ammo",
"burst",
"burstrof",
"clip",
"damage",
"damagedist",
"fallofffromrange",
"distdraw",
"integrity",
"jitter",
"mass",
"piercing",
"power",
"range",
"reload",
"rof",
"shotspeed",
"thermload"
]
},
"fh": {
"blueprints": {
},
"modifications": [
]
},
"fi": {
"blueprints": {
"FSDinterdictor_Expanded": [1, 2, 3, 4],
"FSDinterdictor_LongRange": [1, 2, 3]
},
"modifications": [
"boot",
"facinglimit",
"integrity",
"mass",
"power",
"ranget"
]
},
"fs": {
"blueprints": {
"FuelScoop_Shielded": [1, 2, 3, 4]
},
"modifications": [
"integrity",
"power"
]
},
"fsd": {
"blueprints": {
"FSD_FastBoot": [1, 2, 3, 4, 5],
"FSD_LongRange": [1, 2, 3, 4, 5],
"FSD_Shielded": [1, 2, 3, 4, 5]
},
"modifications": [
"boot",
"integrity",
"mass",
"maxfuel",
"optmass",
"power",
"thermload"
]
},
"ft": {
"blueprints": {
},
"modifications": [
]
},
"fx": {
"blueprints": {
"FuelTransferLimpet_LightWeight": [1, 2, 3, 4, 5],
"FuelTransferLimpet_Reinforced": [1, 2, 3, 4, 5],
"FuelTransferLimpet_Shielded": [1, 2, 3, 4, 5]
},
"modifications": [
"integrity",
"mass",
"power"
]
},
"hb": {
"blueprints": {
"HatchBreakerLimpet_LightWeight": [1, 2, 3, 4, 5],
"HatchBreakerLimpet_Reinforced": [1, 2, 3, 4, 5],
"HatchBreakerLimpet_Shielded": [1, 2, 3, 4, 5]
},
"modifications": [
"integrity",
"mass",
"power"
]
},
"hr": {
"blueprints": {
"HullReinforcement_Advanced": [1, 2, 3, 4, 5],
"HullReinforcement_Explosive": [1, 2, 3, 4, 5],
"HullReinforcement_HeavyDuty": [1, 2, 3, 4, 5],
"HullReinforcement_Kinetic": [1, 2, 3, 4, 5],
"HullReinforcement_Thermic": [1, 2, 3, 4, 5]
},
"modifications": [
"hullreinforcement",
"explres",
"hullboost",
"kinres",
"mass",
"thermres"
]
},
"hs": {
"blueprints": {
"HeatSinkLauncher_HeatSinkCapacity": [3],
"HeatSinkLauncher_LightWeight": [1, 2, 3, 4, 5],
"HeatSinkLauncher_Reinforced": [1, 2, 3, 4, 5],
"HeatSinkLauncher_Shielded": [1, 2, 3, 4, 5]
},
"modifications": [
"ammo",
"integrity",
"mass",
"power",
"reload"
]
},
"kw": {
"blueprints": {
"KillWarrantScanner_LightWeight": [1, 2, 3, 4, 5],
"KillWarrantScanner_Reinforced": [1, 2, 3, 4, 5],
"KillWarrantScanner_Shielded": [1, 2, 3, 4, 5]
},
"modifications": [
"boot",
"integrity",
"mass",
"power"
]
},
"ls": {
"blueprints": {
"LifeSupport_LightWeight": [1, 2, 3, 4, 5],
"LifeSupport_Reinforced": [1, 2, 3, 4, 5],
"LifeSupport_Shielded": [1, 2, 3, 4, 5]
},
"modifications": [
"boot",
"integrity",
"mass",
"power"
]
},
"mc": {
"blueprints": {
"Weapon_Efficient": [1, 2, 3, 4, 5],
"Weapon_HighCapacity": [1, 2, 3, 4, 5],
"Weapon_LightWeight": [1, 2, 3, 4, 5],
"Weapon_LongRange": [1, 2, 3, 4, 5],
"Weapon_Overcharged": [1, 2, 3, 4, 5],
"Weapon_RapidFire": [1, 2, 3, 4, 5],
"Weapon_ShortRange": [1, 2, 3, 4, 5],
"Weapon_Sturdy": [1, 2, 3, 4, 5]
},
"modifications": [
"ammo",
"clip",
"damage",
"damagedist",
"fallofffromrange",
"distdraw",
"integrity",
"jitter",
"mass",
"piercing",
"power",
"range",
"reload",
"rof",
"shotspeed",
"thermload"
]
},
"ml": {
"blueprints": {
},
"modifications": [
]
},
"mr": {
"blueprints": {
"Weapon_HighCapacity": [1, 2, 3, 4, 5],
"Weapon_LightWeight": [1, 2, 3, 4, 5],
"Weapon_RapidFire": [1, 2, 3, 4, 5],
"Weapon_Sturdy": [1, 2, 3, 4, 5]
},
"modifications": [
"ammo",
"clip",
"damage",
"damagedist",
"fallofffromrange",
"distdraw",
"integrity",
"jitter",
"mass",
"piercing",
"power",
"reload",
"rof",
"thermload"
]
},
"mrp": {
"blueprints": {
},
"modifications": [
]
},
"nl": {
"blueprints": {
"Weapon_HighCapacity": [1, 2, 3, 4, 5],
"Weapon_LightWeight": [1, 2, 3, 4, 5],
"Weapon_RapidFire": [1, 2, 3, 4, 5],
"Weapon_Sturdy": [1, 2, 3, 4, 5]
},
"modifications": [
"ammo",
"boot",
"clip",
"damage",
"damagedist",
"fallofffromrange",
"integrity",
"jitter",
"mass",
"piercing",
"power",
"reload",
"rof",
"thermload"
]
},
"pa": {
"blueprints": {
"Weapon_Efficient": [1, 2, 3, 4, 5],
"Weapon_Focused": [1, 2, 3, 4, 5],
"Weapon_LightWeight": [1, 2, 3, 4, 5],
"Weapon_LongRange": [1, 2, 3, 4, 5],
"Weapon_Overcharged": [1, 2, 3, 4, 5],
"Weapon_RapidFire": [1, 2, 3, 4, 5],
"Weapon_ShortRange": [1, 2, 3, 4, 5],
"Weapon_Sturdy": [1, 2, 3, 4, 5]
},
"modifications": [
"ammo",
"clip",
"damage",
"damagedist",
"fallofffromrange",
"distdraw",
"integrity",
"jitter",
"mass",
"piercing",
"power",
"range",
"reload",
"rof",
"shotspeed",
"thermload"
]
},
"pas": {
"blueprints": {
},
"modifications": [
]
},
"pc": {
"blueprints": {
"ProspectingLimpet_LightWeight": [1, 2, 3, 4, 5],
"ProspectingLimpet_Reinforced": [1, 2, 3, 4, 5],
"ProspectingLimpet_Shielded": [1, 2, 3, 4, 5]
},
"modifications": [
"integrity",
"mass",
"power"
]
},
"pce": {
"blueprints": {
},
"modifications": [
]
},
"pci": {
"blueprints": {
},
"modifications": [
]
},
"pcm": {
"blueprints": {
},
"modifications": [
]
},
"pcq": {
"blueprints": {
},
"modifications": [
]
},
"pd": {
"blueprints": {
"PowerDistributor_HighFrequency": [1, 2, 3, 4, 5],
"PowerDistributor_PriorityEngines": [1, 2, 3],
"PowerDistributor_HighCapacity": [1, 2, 3, 4, 5],
"PowerDistributor_Shielded": [1, 2, 3, 4, 5],
"PowerDistributor_PrioritySystems": [1, 2, 3],
"PowerDistributor_PriorityWeapons": [1, 2, 3]
},
"modifications": [
"boot",
"engcap",
"engrate",
"integrity",
"mass",
"power",
"syscap",
"sysrate",
"wepcap",
"weprate"
]
},
"pl": {
"blueprints": {
"Weapon_Efficient": [1, 2, 3, 4, 5],
"Weapon_Focused": [1, 2, 3, 4, 5],
"Weapon_LightWeight": [1, 2, 3, 4, 5],
"Weapon_LongRange": [1, 2, 3, 4, 5],
"Weapon_Overcharged": [1, 2, 3, 4, 5],
"Weapon_RapidFire": [1, 2, 3, 4, 5],
"Weapon_ShortRange": [1, 2, 3, 4, 5],
"Weapon_Sturdy": [1, 2, 3, 4, 5]
},
"modifications": [
"damage",
"damagedist",
"fallofffromrange",
"distdraw",
"integrity",
"jitter",
"mass",
"piercing",
"power",
"range",
"rof",
"thermload"
]
},
"po": {
"blueprints": {
"PointDefence_PointDefenseCapacity": [3],
"PointDefence_LightWeight": [1, 2, 3, 4, 5],
"PointDefence_Reinforced": [1, 2, 3, 4, 5],
"PointDefence_Shielded": [1, 2, 3, 4, 5]
},
"modifications": [
"ammo",
"integrity",
"mass",
"power",
"reload"
]
},
"pp": {
"blueprints": {
"PowerPlant_Armoured": [1, 2, 3, 4, 5],
"PowerPlant_Stealth": [1, 2, 3],
"PowerPlant_Boosted": [1, 2, 3, 4, 5]
},
"modifications": [
"eff",
"integrity",
"mass",
"pgen"
]
},
"psg": {
"blueprints": {
"ShieldGenerator_Kinetic": [1, 2, 3, 4, 5],
"ShieldGenerator_Optimised": [1, 2, 3, 4, 5],
"ShieldGenerator_Reinforced": [1, 2, 3, 4, 5],
"ShieldGenerator_Thermic": [1, 2, 3, 4, 5]
},
"modifications": [
"boot",
"brokenregen",
"distdraw",
"explres",
"integrity",
"kinres",
"mass",
"optmass",
"optmul",
"power",
"regen",
"thermload",
"thermres"
]
},
"pv": {
"blueprints": {
},
"modifications": [
]
},
"rf": {
"blueprints": {
"Refineries_Shielded": [1, 2, 3, 4]
},
"modifications": [
"integrity",
"power"
]
},
"rg": {
"blueprints": {
"Weapon_HighCapacity": [1, 2, 3, 4, 5],
"Weapon_LightWeight": [1, 2, 3, 4, 5],
"Weapon_LongRange": [1, 2, 3, 4, 5],
"Weapon_ShortRange": [1, 2, 3, 4, 5],
"Weapon_Sturdy": [1, 2, 3, 4, 5]
},
"modifications": [
"ammo",
"clip",
"damage",
"damagedist",
"fallofffromrange",
"distdraw",
"integrity",
"jitter",
"mass",
"piercing",
"power",
"range",
"reload",
"rof",
"thermload"
]
},
"s": {
"blueprints": {
},
"modifications": [
]
},
"sb": {
"blueprints": {
"ShieldBooster_Explosive": [1, 2, 3, 4, 5],
"ShieldBooster_HeavyDuty": [1, 2, 3, 4, 5],
"ShieldBooster_Kinetic": [1, 2, 3, 4, 5],
"ShieldBooster_Resistive": [1, 2, 3, 4, 5],
"ShieldBooster_Thermic": [1, 2, 3, 4, 5]
},
"modifications": [
"explres",
"integrity",
"kinres",
"mass",
"power",
"shieldboost",
"thermres"
]
},
"sc": {
"blueprints": {
},
"modifications": [
]
},
"scb": {
"blueprints": {
"ShieldCellBank_Rapid": [1, 2, 3, 4],
"ShieldCellBank_Specialised": [1, 2, 3, 4]
},
"modifications": [
"boot",
"duration",
"integrity",
"power",
"shieldreinforcement",
"spinup",
"thermload"
]
},
"sg": {
"blueprints": {
"ShieldGenerator_Kinetic": [1, 2, 3, 4, 5],
"ShieldGenerator_Optimised": [1, 2, 3, 4, 5],
"ShieldGenerator_Reinforced": [1, 2, 3, 4, 5],
"ShieldGenerator_Thermic": [1, 2, 3, 4, 5]
},
"modifications": [
"boot",
"brokenregen",
"distdraw",
"explres",
"integrity",
"kinres",
"mass",
"optmass",
"optmul",
"power",
"regen",
"thermload",
"thermres"
]
},
"t": {
"blueprints": {
"Engine_Dirty": [1, 2, 3, 4, 5],
"Engine_Reinforced": [1, 2, 3, 4, 5],
"Engine_Tuned": [1, 2, 3, 4, 5]
},
"modifications": [
"integrity",
"mass",
"optmass",
"optmul",
"power",
"thermload"
]
},
"tp": {
"blueprints": {
"Weapon_LightWeight": [1, 2, 3, 4, 5],
"Weapon_Sturdy": [1, 2, 3, 4, 5]
},
"modifications": [
"damage",
"damagedist",
"fallofffromrange",
"distdraw",
"integrity",
"jitter",
"mass",
"piercing",
"power",
"range",
"rof",
"thermload"
]
},
"ul": {
"blueprints": {
"Weapon_Efficient": [1, 2, 3, 4, 5],
"Weapon_Focused": [1, 2, 3, 4, 5],
"Weapon_LightWeight": [1, 2, 3, 4, 5],
"Weapon_LongRange": [1, 2, 3, 4, 5],
"Weapon_Overcharged": [1, 2, 3, 4, 5],
"Weapon_RapidFire": [1, 2, 3, 4, 5],
"Weapon_ShortRange": [1, 2, 3, 4, 5],
"Weapon_Sturdy": [1, 2, 3, 4, 5]
},
"modifications": [
"burst",
"burstrof",
"damage",
"damagedist",
"fallofffromrange",
"distdraw",
"integrity",
"jitter",
"mass",
"piercing",
"power",
"range",
"rof",
"thermload"
]
},
"ws": {
"blueprints": {
"WakeScanner_LightWeight": [1, 2, 3, 4, 5],
"WakeScanner_Reinforced": [1, 2, 3, 4, 5],
"WakeScanner_Shielded": [1, 2, 3, 4, 5]
},
"modifications": [
"boot",
"integrity",
"mass",
"power"
]
}
}

View File

@@ -1,371 +0,0 @@
{
"am": [
"integrity",
"power"
],
"bh": [
"explres",
"hullboost",
"kinres",
"mass",
"thermres"
],
"bl": [
"damage",
"distdraw",
"fallofffromrange",
"integrity",
"mass",
"piercing",
"power",
"range",
"thermload"
],
"bsg": [
"boot",
"brokenregen",
"distdraw",
"explres",
"integrity",
"kinres",
"mass",
"optmass",
"optmul",
"power",
"regen",
"thermload",
"thermres"
],
"c": [
"ammo",
"clip",
"damage",
"distdraw",
"fallofffromrange",
"integrity",
"jitter",
"mass",
"piercing",
"power",
"range",
"reload",
"rof",
"thermload"
],
"cc": [
"integrity",
"mass",
"power"
],
"ch": [
"ammo",
"integrity",
"mass",
"power",
"reload"
],
"cs": [
"boot",
"integrity",
"mass",
"power"
],
"ec": [
"integrity",
"mass",
"power"
],
"fc": [
"ammo",
"burst",
"burstrof",
"clip",
"damage",
"fallofffromrange",
"distdraw",
"integrity",
"jitter",
"mass",
"piercing",
"power",
"range",
"reload",
"rof",
"thermload",
"type"
],
"fi": [
"boot",
"facinglimit",
"integrity",
"mass",
"power",
"ranget"
],
"fs": [
"integrity",
"power"
],
"fsd": [
"boot",
"integrity",
"mass",
"maxfuel",
"optmass",
"power",
"thermload"
],
"fx": [
"integrity",
"mass",
"power"
],
"hb": [
"integrity",
"mass",
"power"
],
"hr": [
"hullreinforcement",
"explres",
"hullboost",
"kinres",
"mass",
"thermres"
],
"hs": [
"ammo",
"integrity",
"mass",
"power",
"reload"
],
"kw": [
"boot",
"integrity",
"mass",
"power"
],
"ls": [
"boot",
"integrity",
"mass",
"power"
],
"mc": [
"ammo",
"clip",
"damage",
"fallofffromrange",
"distdraw",
"integrity",
"jitter",
"mass",
"piercing",
"power",
"range",
"reload",
"rof",
"thermload",
"type"
],
"mr": [
"ammo",
"clip",
"damage",
"fallofffromrange",
"distdraw",
"integrity",
"jitter",
"mass",
"piercing",
"power",
"reload",
"rof",
"thermload"
],
"nl": [
"ammo",
"boot",
"clip",
"damage",
"fallofffromrange",
"integrity",
"jitter",
"mass",
"piercing",
"power",
"reload",
"rof",
"thermload"
],
"pa": [
"ammo",
"clip",
"damage",
"fallofffromrange",
"distdraw",
"integrity",
"jitter",
"mass",
"piercing",
"power",
"range",
"reload",
"rof",
"thermload"
],
"pc": [
"integrity",
"mass",
"power"
],
"pd": [
"boot",
"engcap",
"engrate",
"integrity",
"mass",
"power",
"syscap",
"sysrate",
"wepcap",
"weprate"
],
"pl": [
"damage",
"fallofffromrange",
"distdraw",
"integrity",
"jitter",
"mass",
"piercing",
"power",
"range",
"rof",
"thermload"
],
"po": [
"ammo",
"integrity",
"mass",
"power",
"reload"
],
"pp": [
"eff",
"integrity",
"mass",
"pgen"
],
"psg": [
"boot",
"brokenregen",
"distdraw",
"explres",
"integrity",
"kinres",
"mass",
"optmass",
"optmul",
"power",
"regen",
"thermload",
"thermres"
],
"rf": [
"integrity",
"power"
],
"rg": [
"ammo",
"clip",
"damage",
"fallofffromrange",
"distdraw",
"integrity",
"jitter",
"mass",
"piercing",
"power",
"range",
"reload",
"rof",
"thermload"
],
"sb": [
"explres",
"integrity",
"kinres",
"mass",
"power",
"shieldboost",
"thermres"
],
"scb": [
"boot",
"duration",
"integrity",
"power",
"shieldreinforcement",
"spinup",
"thermload"
],
"sg": [
"boot",
"brokenregen",
"distdraw",
"explres",
"integrity",
"kinres",
"mass",
"optmass",
"optmul",
"power",
"regen",
"thermload",
"thermres"
],
"t": [
"integrity",
"mass",
"optmass",
"optmul",
"power",
"thermload"
],
"tp": [
"damage",
"fallofffromrange",
"distdraw",
"integrity",
"jitter",
"mass",
"piercing",
"power",
"range",
"rof",
"thermload"
],
"ul": [
"burst",
"burstrof",
"damage",
"fallofffromrange",
"distdraw",
"integrity",
"jitter",
"mass",
"piercing",
"power",
"range",
"rof",
"thermload"
],
"ws": [
"boot",
"integrity",
"mass",
"power"
]
}

View File

@@ -7,6 +7,9 @@
"class": 1, "class": 1,
"cost": 37430, "cost": 37430,
"damage": 9.8, "damage": 9.8,
"damagedist": {
"T": 1
},
"distdraw": 1.94, "distdraw": 1.94,
"edID": 128049428, "edID": 128049428,
"eddbID": 841, "eddbID": 841,
@@ -20,8 +23,7 @@
"power": 0.62, "power": 0.62,
"range": 3000, "range": 3000,
"rating": "E", "rating": "E",
"thermload": 3.5, "thermload": 3.5
"type": "T"
}, },
{ {
"breachdmg": 6.1, "breachdmg": 6.1,
@@ -30,6 +32,9 @@
"class": 1, "class": 1,
"cost": 74650, "cost": 74650,
"damage": 7.66, "damage": 7.66,
"damagedist": {
"T": 1
},
"distdraw": 2.11, "distdraw": 2.11,
"edID": 128049432, "edID": 128049432,
"eddbID": 844, "eddbID": 844,
@@ -43,8 +48,7 @@
"power": 0.6, "power": 0.6,
"range": 3000, "range": 3000,
"rating": "E", "rating": "E",
"thermload": 3.6, "thermload": 3.6
"type": "T"
}, },
{ {
"breachdmg": 4.3, "breachdmg": 4.3,
@@ -53,6 +57,9 @@
"class": 1, "class": 1,
"cost": 500000, "cost": 500000,
"damage": 5.4, "damage": 5.4,
"damagedist": {
"T": 1
},
"distdraw": 1.32, "distdraw": 1.32,
"edID": 128049435, "edID": 128049435,
"eddbID": 847, "eddbID": 847,
@@ -68,8 +75,7 @@
"power": 0.57, "power": 0.57,
"range": 3000, "range": 3000,
"rating": "F", "rating": "F",
"thermload": 2.4, "thermload": 2.4
"type": "T"
}, },
{ {
"breachdmg": 3.9, "breachdmg": 3.9,
@@ -78,6 +84,9 @@
"class": 1, "class": 1,
"cost": 56150, "cost": 56150,
"damage": 4.9, "damage": 4.9,
"damagedist": {
"T": 1
},
"distdraw": 2.52, "distdraw": 2.52,
"edID": 128671346, "edID": 128671346,
"eddbID": 1476, "eddbID": 1476,
@@ -93,8 +102,7 @@
"pp": "Edmund Mahon", "pp": "Edmund Mahon",
"range": 3000, "range": 3000,
"rating": "E", "rating": "E",
"thermload": 2.7, "thermload": 2.7
"type": "T"
}, },
{ {
"breachdmg": 12.8, "breachdmg": 12.8,
@@ -103,6 +111,9 @@
"class": 2, "class": 2,
"cost": 299520, "cost": 299520,
"damage": 15.96, "damage": 15.96,
"damagedist": {
"T": 1
},
"distdraw": 3.16, "distdraw": 3.16,
"edID": 128049429, "edID": 128049429,
"eddbID": 842, "eddbID": 842,
@@ -116,8 +127,7 @@
"power": 1.01, "power": 1.01,
"range": 3000, "range": 3000,
"rating": "D", "rating": "D",
"thermload": 5.1, "thermload": 5.1
"type": "T"
}, },
{ {
"breachdmg": 10, "breachdmg": 10,
@@ -126,6 +136,9 @@
"class": 2, "class": 2,
"cost": 500600, "cost": 500600,
"damage": 12.52, "damage": 12.52,
"damagedist": {
"T": 1
},
"distdraw": 3.44, "distdraw": 3.44,
"edID": 128049433, "edID": 128049433,
"eddbID": 845, "eddbID": 845,
@@ -139,8 +152,7 @@
"power": 0.99, "power": 0.99,
"range": 3000, "range": 3000,
"rating": "D", "rating": "D",
"thermload": 5.3, "thermload": 5.3
"type": "T"
}, },
{ {
"breachdmg": 7.1, "breachdmg": 7.1,
@@ -149,6 +161,9 @@
"class": 2, "class": 2,
"cost": 2099900, "cost": 2099900,
"damage": 8.82, "damage": 8.82,
"damagedist": {
"T": 1
},
"distdraw": 2.16, "distdraw": 2.16,
"edID": 128049436, "edID": 128049436,
"eddbID": 848, "eddbID": 848,
@@ -162,8 +177,7 @@
"power": 0.93, "power": 0.93,
"range": 3000, "range": 3000,
"rating": "E", "rating": "E",
"thermload": 3.5, "thermload": 3.5
"type": "T"
}, },
{ {
"breachdmg": 20.6, "breachdmg": 20.6,
@@ -172,6 +186,9 @@
"class": 3, "class": 3,
"cost": 1177600, "cost": 1177600,
"damage": 25.78, "damage": 25.78,
"damagedist": {
"T": 1
},
"distdraw": 5.1, "distdraw": 5.1,
"edID": 128049430, "edID": 128049430,
"eddbID": 843, "eddbID": 843,
@@ -185,8 +202,7 @@
"power": 1.62, "power": 1.62,
"range": 3000, "range": 3000,
"rating": "C", "rating": "C",
"thermload": 7.2, "thermload": 7.2
"type": "T"
}, },
{ {
"breachdmg": 16.2, "breachdmg": 16.2,
@@ -195,6 +211,9 @@
"class": 3, "class": 3,
"cost": 2396160, "cost": 2396160,
"damage": 20.28, "damage": 20.28,
"damagedist": {
"T": 1
},
"distdraw": 5.58, "distdraw": 5.58,
"edID": 128049434, "edID": 128049434,
"eddbID": 846, "eddbID": 846,
@@ -208,8 +227,7 @@
"power": 1.6, "power": 1.6,
"range": 3000, "range": 3000,
"rating": "C", "rating": "C",
"thermload": 7.6, "thermload": 7.6
"type": "T"
}, },
{ {
"breachdmg": 11.5, "breachdmg": 11.5,
@@ -218,6 +236,9 @@
"class": 3, "class": 3,
"cost": 19399600, "cost": 19399600,
"damage": 14.34, "damage": 14.34,
"damagedist": {
"T": 1
},
"distdraw": 3.51, "distdraw": 3.51,
"edID": 128049437, "edID": 128049437,
"eddbID": 849, "eddbID": 849,
@@ -231,8 +252,7 @@
"power": 1.51, "power": 1.51,
"range": 3000, "range": 3000,
"rating": "D", "rating": "D",
"thermload": 5.1, "thermload": 5.1
"type": "T"
}, },
{ {
"breachdmg": 33.1, "breachdmg": 33.1,
@@ -241,6 +261,9 @@
"class": 4, "class": 4,
"cost": 2396160, "cost": 2396160,
"damage": 41.38, "damage": 41.38,
"damagedist": {
"T": 1
},
"distdraw": 8.19, "distdraw": 8.19,
"edID": 128049431, "edID": 128049431,
"eddbID": 1540, "eddbID": 1540,
@@ -254,8 +277,7 @@
"power": 2.61, "power": 2.61,
"range": 3000, "range": 3000,
"rating": "A", "rating": "A",
"thermload": 9.9, "thermload": 9.9
"type": "T"
}, },
{ {
"breachdmg": 26.1, "breachdmg": 26.1,
@@ -264,6 +286,9 @@
"class": 4, "class": 4,
"cost": 8746160, "cost": 8746160,
"damage": 32.68, "damage": 32.68,
"damagedist": {
"T": 1
},
"distdraw": 8.99, "distdraw": 8.99,
"edID": 128681994, "edID": 128681994,
"eddbID": 1544, "eddbID": 1544,
@@ -277,8 +302,7 @@
"power": 2.57, "power": 2.57,
"range": 3000, "range": 3000,
"rating": "A", "rating": "A",
"thermload": 10.6, "thermload": 10.6
"type": "T"
} }
] ]
} }

View File

@@ -9,6 +9,9 @@
"class": 1, "class": 1,
"cost": 4400, "cost": 4400,
"damage": 1.72, "damage": 1.72,
"damagedist": {
"T": 1
},
"distdraw": 0.24, "distdraw": 0.24,
"edID": 128049400, "edID": 128049400,
"eddbID": 832, "eddbID": 832,
@@ -23,8 +26,7 @@
"range": 3000, "range": 3000,
"rating": "F", "rating": "F",
"rof": 2, "rof": 2,
"thermload": 0.4, "thermload": 0.4
"type": "T"
}, },
{ {
"breachdmg": 5.3, "breachdmg": 5.3,
@@ -35,6 +37,9 @@
"class": 1, "class": 1,
"cost": 8600, "cost": 8600,
"damage": 1.2, "damage": 1.2,
"damagedist": {
"T": 1
},
"distdraw": 0.23, "distdraw": 0.23,
"edID": 128049404, "edID": 128049404,
"eddbID": 835, "eddbID": 835,
@@ -49,8 +54,7 @@
"range": 3000, "range": 3000,
"rating": "G", "rating": "G",
"rof": 2.23, "rof": 2.23,
"thermload": 0.3, "thermload": 0.3
"type": "T"
}, },
{ {
"breachdmg": 1.92, "breachdmg": 1.92,
@@ -61,6 +65,9 @@
"class": 1, "class": 1,
"cost": 52800, "cost": 52800,
"damage": 0.87, "damage": 0.87,
"damagedist": {
"T": 1
},
"distdraw": 0.136, "distdraw": 0.136,
"edID": 128049407, "edID": 128049407,
"eddbID": 838, "eddbID": 838,
@@ -75,8 +82,7 @@
"range": 3000, "range": 3000,
"rating": "G", "rating": "G",
"rof": 1.92, "rof": 1.92,
"thermload": 0.2, "thermload": 0.2
"type": "T"
}, },
{ {
"breachdmg": 2, "breachdmg": 2,
@@ -87,6 +93,9 @@
"class": 1, "class": 1,
"cost": 8800, "cost": 8800,
"damage": 2.4, "damage": 2.4,
"damagedist": {
"T": 1
},
"distdraw": 0.31, "distdraw": 0.31,
"edID": 128671449, "edID": 128671449,
"eddbID": 1477, "eddbID": 1477,
@@ -104,8 +113,7 @@
"range": 600, "range": 600,
"rating": "F", "rating": "F",
"rof": 6.6, "rof": 6.6,
"thermload": 0.3, "thermload": 0.3
"type": "T"
}, },
{ {
"breachdmg": 11.1, "breachdmg": 11.1,
@@ -116,6 +124,9 @@
"class": 2, "class": 2,
"cost": 23000, "cost": 23000,
"damage": 3.5, "damage": 3.5,
"damagedist": {
"T": 1
},
"distdraw": 0.482, "distdraw": 0.482,
"edID": 128049401, "edID": 128049401,
"eddbID": 833, "eddbID": 833,
@@ -130,8 +141,7 @@
"range": 3000, "range": 3000,
"rating": "E", "rating": "E",
"rof": 1.6, "rof": 1.6,
"thermload": 0.8, "thermload": 0.8
"type": "T"
}, },
{ {
"breachdmg": 8.82, "breachdmg": 8.82,
@@ -142,6 +152,9 @@
"class": 2, "class": 2,
"cost": 48500, "cost": 48500,
"damage": 2.45, "damage": 2.45,
"damagedist": {
"T": 1
},
"distdraw": 0.468, "distdraw": 0.468,
"edID": 128049405, "edID": 128049405,
"eddbID": 836, "eddbID": 836,
@@ -156,8 +169,7 @@
"range": 3000, "range": 3000,
"rating": "F", "rating": "F",
"rof": 1.78, "rof": 1.78,
"thermload": 0.7, "thermload": 0.7
"type": "T"
}, },
{ {
"breachdmg": 3.51, "breachdmg": 3.51,
@@ -168,6 +180,9 @@
"class": 2, "class": 2,
"cost": 162800, "cost": 162800,
"damage": 1.74, "damage": 1.74,
"damagedist": {
"T": 1
},
"distdraw": 0.26, "distdraw": 0.26,
"edID": 128049408, "edID": 128049408,
"eddbID": 839, "eddbID": 839,
@@ -182,8 +197,7 @@
"range": 3000, "range": 3000,
"rating": "F", "rating": "F",
"rof": 1.57, "rof": 1.57,
"thermload": 0.4, "thermload": 0.4
"type": "T"
}, },
{ {
"breachdmg": 10.53, "breachdmg": 10.53,
@@ -194,6 +208,9 @@
"class": 3, "class": 3,
"cost": 140400, "cost": 140400,
"damage": 7.75, "damage": 7.75,
"damagedist": {
"T": 1
},
"distdraw": 1.06, "distdraw": 1.06,
"edID": 128049402, "edID": 128049402,
"eddbID": 834, "eddbID": 834,
@@ -208,8 +225,7 @@
"range": 3000, "range": 3000,
"rating": "D", "rating": "D",
"rof": 1.2, "rof": 1.2,
"thermload": 1.7, "thermload": 1.7
"type": "T"
}, },
{ {
"breachdmg": 14.08, "breachdmg": 14.08,
@@ -220,6 +236,9 @@
"class": 3, "class": 3,
"cost": 281600, "cost": 281600,
"damage": 5.18, "damage": 5.18,
"damagedist": {
"T": 1
},
"distdraw": 0.986, "distdraw": 0.986,
"edID": 128049406, "edID": 128049406,
"eddbID": 837, "eddbID": 837,
@@ -234,8 +253,7 @@
"range": 3000, "range": 3000,
"rating": "E", "rating": "E",
"rof": 1.4, "rof": 1.4,
"thermload": 1.4, "thermload": 1.4
"type": "T"
}, },
{ {
"breachdmg": 5.58, "breachdmg": 5.58,
@@ -246,6 +264,9 @@
"class": 3, "class": 3,
"cost": 800400, "cost": 800400,
"damage": 3.54, "damage": 3.54,
"damagedist": {
"T": 1
},
"distdraw": 0.536, "distdraw": 0.536,
"edID": 128049409, "edID": 128049409,
"eddbID": 840, "eddbID": 840,
@@ -260,8 +281,7 @@
"range": 3000, "range": 3000,
"rating": "E", "rating": "E",
"rof": 1.272, "rof": 1.272,
"thermload": 0.8, "thermload": 0.8
"type": "T"
}, },
{ {
"breachdmg": 28, "breachdmg": 28,
@@ -272,6 +292,9 @@
"class": 4, "class": 4,
"cost": 281600, "cost": 281600,
"damage": 20.6, "damage": 20.6,
"damagedist": {
"T": 1
},
"distdraw": 2.84, "distdraw": 2.84,
"edID": 128049403, "edID": 128049403,
"eddbID": 1549, "eddbID": 1549,
@@ -286,8 +309,7 @@
"range": 3000, "range": 3000,
"rating": "E", "rating": "E",
"rof": 0.8, "rof": 0.8,
"thermload": 4.5, "thermload": 4.5
"type": "T"
}, },
{ {
"breachdmg": 21.63, "breachdmg": 21.63,
@@ -298,6 +320,9 @@
"class": 4, "class": 4,
"cost": 1245600, "cost": 1245600,
"damage": 12.1, "damage": 12.1,
"damagedist": {
"T": 1
},
"distdraw": 2.31, "distdraw": 2.31,
"edID": 128727920, "edID": 128727920,
"eddbID": 1550, "eddbID": 1550,
@@ -312,8 +337,7 @@
"range": 3000, "range": 3000,
"rating": "E", "rating": "E",
"rof": 1, "rof": 1,
"thermload": 3.3, "thermload": 3.3
"type": "T"
} }
] ]
} }

View File

@@ -9,6 +9,9 @@
"clip": 6, "clip": 6,
"cost": 21100, "cost": 21100,
"damage": 22.5, "damage": 22.5,
"damagedist": {
"K": 1
},
"distdraw": 0.46, "distdraw": 0.46,
"edID": 128049438, "edID": 128049438,
"eddbID": 850, "eddbID": 850,
@@ -24,9 +27,8 @@
"rating": "D", "rating": "D",
"reload": 3, "reload": 3,
"rof": 0.5, "rof": 0.5,
"speed": 1200, "shotspeed": 1200,
"thermload": 1.4, "thermload": 1.4
"type": "K"
}, },
{ {
"ammo": 100, "ammo": 100,
@@ -37,6 +39,9 @@
"clip": 5, "clip": 5,
"cost": 42200, "cost": 42200,
"damage": 16, "damage": 16,
"damagedist": {
"K": 1
},
"distdraw": 0.48, "distdraw": 0.48,
"edID": 128049442, "edID": 128049442,
"eddbID": 854, "eddbID": 854,
@@ -52,9 +57,8 @@
"rating": "E", "rating": "E",
"reload": 4, "reload": 4,
"rof": 0.52, "rof": 0.52,
"speed": 1000, "shotspeed": 1000,
"thermload": 1.3, "thermload": 1.3
"type": "K"
}, },
{ {
"ammo": 100, "ammo": 100,
@@ -65,6 +69,9 @@
"clip": 5, "clip": 5,
"cost": 506400, "cost": 506400,
"damage": 12.75, "damage": 12.75,
"damagedist": {
"K": 1
},
"distdraw": 0.22, "distdraw": 0.22,
"edID": 128049445, "edID": 128049445,
"eddbID": 857, "eddbID": 857,
@@ -80,9 +87,8 @@
"rating": "F", "rating": "F",
"reload": 4, "reload": 4,
"rof": 0.435, "rof": 0.435,
"speed": 1000, "shotspeed": 1000,
"thermload": 0.7, "thermload": 0.7
"type": "K"
}, },
{ {
"ammo": 120, "ammo": 120,
@@ -93,6 +99,9 @@
"clip": 6, "clip": 6,
"cost": 168430, "cost": 168430,
"damage": 36.5, "damage": 36.5,
"damagedist": {
"K": 1
},
"distdraw": 0.7, "distdraw": 0.7,
"edID": 128049439, "edID": 128049439,
"eddbID": 851, "eddbID": 851,
@@ -108,9 +117,8 @@
"rating": "D", "rating": "D",
"reload": 3, "reload": 3,
"rof": 0.465, "rof": 0.465,
"speed": 1051, "shotspeed": 1051,
"thermload": 2.1, "thermload": 2.1
"type": "K"
}, },
{ {
"ammo": 100, "ammo": 100,
@@ -121,6 +129,9 @@
"clip": 5, "clip": 5,
"cost": 337600, "cost": 337600,
"damage": 24.5, "damage": 24.5,
"damagedist": {
"K": 1
},
"distdraw": 0.75, "distdraw": 0.75,
"edID": 128049443, "edID": 128049443,
"eddbID": 855, "eddbID": 855,
@@ -136,9 +147,8 @@
"rating": "D", "rating": "D",
"reload": 4, "reload": 4,
"rof": 0.485, "rof": 0.485,
"speed": 875, "shotspeed": 875,
"thermload": 1.9, "thermload": 1.9
"type": "K"
}, },
{ {
"ammo": 100, "ammo": 100,
@@ -149,6 +159,9 @@
"clip": 5, "clip": 5,
"cost": 4051200, "cost": 4051200,
"damage": 19.77, "damage": 19.77,
"damagedist": {
"K": 1
},
"distdraw": 0.34, "distdraw": 0.34,
"edID": 128049446, "edID": 128049446,
"eddbID": 858, "eddbID": 858,
@@ -164,9 +177,8 @@
"rating": "E", "rating": "E",
"reload": 4, "reload": 4,
"rof": 0.405, "rof": 0.405,
"speed": 875, "shotspeed": 875,
"thermload": 1, "thermload": 1
"type": "K"
}, },
{ {
"ammo": 120, "ammo": 120,
@@ -177,6 +189,9 @@
"clip": 6, "clip": 6,
"cost": 675200, "cost": 675200,
"damage": 54.94, "damage": 54.94,
"damagedist": {
"K": 1
},
"distdraw": 1.07, "distdraw": 1.07,
"edID": 128049440, "edID": 128049440,
"eddbID": 852, "eddbID": 852,
@@ -192,9 +207,8 @@
"rating": "C", "rating": "C",
"reload": 3, "reload": 3,
"rof": 0.425, "rof": 0.425,
"speed": 959, "shotspeed": 959,
"thermload": 3.2, "thermload": 3.2
"type": "K"
}, },
{ {
"ammo": 100, "ammo": 100,
@@ -205,6 +219,9 @@
"clip": 5, "clip": 5,
"cost": 1350400, "cost": 1350400,
"damage": 37.39, "damage": 37.39,
"damagedist": {
"K": 1
},
"distdraw": 1.14, "distdraw": 1.14,
"edID": 128671120, "edID": 128671120,
"eddbID": 1383, "eddbID": 1383,
@@ -222,9 +239,8 @@
"rating": "C", "rating": "C",
"reload": 4, "reload": 4,
"rof": 0.445, "rof": 0.445,
"speed": 800, "shotspeed": 800,
"thermload": 2.9, "thermload": 2.9
"type": "K"
}, },
{ {
"ammo": 100, "ammo": 100,
@@ -235,6 +251,9 @@
"clip": 5, "clip": 5,
"cost": 16204800, "cost": 16204800,
"damage": 30.4, "damage": 30.4,
"damagedist": {
"K": 1
},
"distdraw": 0.53, "distdraw": 0.53,
"edID": 128049447, "edID": 128049447,
"eddbID": 859, "eddbID": 859,
@@ -250,9 +269,8 @@
"rating": "D", "rating": "D",
"reload": 4, "reload": 4,
"rof": 0.37, "rof": 0.37,
"speed": 800, "shotspeed": 800,
"thermload": 1.6, "thermload": 1.6
"type": "K"
}, },
{ {
"ammo": 120, "ammo": 120,
@@ -263,6 +281,9 @@
"clip": 6, "clip": 6,
"cost": 2700800, "cost": 2700800,
"damage": 82.1, "damage": 82.1,
"damagedist": {
"K": 1
},
"distdraw": 1.61, "distdraw": 1.61,
"edID": 128049441, "edID": 128049441,
"eddbID": 853, "eddbID": 853,
@@ -280,9 +301,8 @@
"rating": "B", "rating": "B",
"reload": 3, "reload": 3,
"rof": 0.385, "rof": 0.385,
"speed": 900, "shotspeed": 900,
"thermload": 4.8, "thermload": 4.8
"type": "K"
}, },
{ {
"ammo": 100, "ammo": 100,
@@ -293,6 +313,9 @@
"clip": 5, "clip": 5,
"cost": 5401600, "cost": 5401600,
"damage": 56.58, "damage": 56.58,
"damagedist": {
"K": 1
},
"distdraw": 1.72, "distdraw": 1.72,
"edID": 128049444, "edID": 128049444,
"eddbID": 856, "eddbID": 856,
@@ -310,9 +333,8 @@
"rating": "B", "rating": "B",
"reload": 4, "reload": 4,
"rof": 0.4, "rof": 0.4,
"speed": 750, "shotspeed": 750,
"thermload": 4.4, "thermload": 4.4
"type": "K"
} }
] ]
} }

View File

@@ -9,6 +9,9 @@
"clip": 3, "clip": 3,
"cost": 36000, "cost": 36000,
"damage": 1.43, "damage": 1.43,
"damagedist": {
"K": 1
},
"distdraw": 0.21, "distdraw": 0.21,
"edID": 128049448, "edID": 128049448,
"eddbID": 860, "eddbID": 860,
@@ -26,9 +29,8 @@
"reload": 2.5, "reload": 2.5,
"rof": 5.555, "rof": 5.555,
"roundspershot": 12, "roundspershot": 12,
"speed": 667, "shotspeed": 667,
"thermload": 0.4, "thermload": 0.4
"type": "K"
}, },
{ {
"ammo": 180, "ammo": 180,
@@ -39,6 +41,9 @@
"clip": 3, "clip": 3,
"cost": 54720, "cost": 54720,
"damage": 1.01, "damage": 1.01,
"damagedist": {
"K": 1
},
"distdraw": 0.26, "distdraw": 0.26,
"edID": 128049451, "edID": 128049451,
"eddbID": 863, "eddbID": 863,
@@ -56,9 +61,8 @@
"reload": 2.5, "reload": 2.5,
"rof": 5.88, "rof": 5.88,
"roundspershot": 12, "roundspershot": 12,
"speed": 667, "shotspeed": 667,
"thermload": 0.4, "thermload": 0.4
"type": "K"
}, },
{ {
"ammo": 180, "ammo": 180,
@@ -69,6 +73,9 @@
"clip": 3, "clip": 3,
"cost": 182400, "cost": 182400,
"damage": 0.69, "damage": 0.69,
"damagedist": {
"K": 1
},
"distdraw": 0.1, "distdraw": 0.1,
"edID": 128049453, "edID": 128049453,
"eddbID": 865, "eddbID": 865,
@@ -86,9 +93,8 @@
"reload": 2.5, "reload": 2.5,
"rof": 4.76, "rof": 4.76,
"roundspershot": 12, "roundspershot": 12,
"speed": 667, "shotspeed": 667,
"thermload": 0.2, "thermload": 0.2
"type": "K"
}, },
{ {
"ammo": 180, "ammo": 180,
@@ -99,6 +105,9 @@
"clip": 3, "clip": 3,
"cost": 291840, "cost": 291840,
"damage": 2.56, "damage": 2.56,
"damagedist": {
"K": 1
},
"distdraw": 0.37, "distdraw": 0.37,
"edID": 128049449, "edID": 128049449,
"eddbID": 861, "eddbID": 861,
@@ -116,9 +125,8 @@
"reload": 2.5, "reload": 2.5,
"rof": 5, "rof": 5,
"roundspershot": 12, "roundspershot": 12,
"speed": 667, "shotspeed": 667,
"thermload": 0.7, "thermload": 0.7
"type": "K"
}, },
{ {
"ammo": 180, "ammo": 180,
@@ -129,6 +137,9 @@
"clip": 3, "clip": 3,
"cost": 437800, "cost": 437800,
"damage": 1.95, "damage": 1.95,
"damagedist": {
"K": 1
},
"distdraw": 0.49, "distdraw": 0.49,
"edID": 128049452, "edID": 128049452,
"eddbID": 864, "eddbID": 864,
@@ -146,9 +157,8 @@
"reload": 2.5, "reload": 2.5,
"rof": 5.26, "rof": 5.26,
"roundspershot": 12, "roundspershot": 12,
"speed": 667, "shotspeed": 667,
"thermload": 0.8, "thermload": 0.8
"type": "K"
}, },
{ {
"ammo": 180, "ammo": 180,
@@ -159,6 +169,9 @@
"clip": 3, "clip": 3,
"cost": 1459200, "cost": 1459200,
"damage": 1.43, "damage": 1.43,
"damagedist": {
"K": 1
},
"distdraw": 0.21, "distdraw": 0.21,
"edID": 128049454, "edID": 128049454,
"eddbID": 866, "eddbID": 866,
@@ -176,9 +189,8 @@
"reload": 2.5, "reload": 2.5,
"rof": 4.345, "rof": 4.345,
"roundspershot": 12, "roundspershot": 12,
"speed": 667, "shotspeed": 667,
"thermload": 0.4, "thermload": 0.4
"type": "K"
}, },
{ {
"ammo": 180, "ammo": 180,
@@ -189,6 +201,9 @@
"clip": 3, "clip": 3,
"cost": 1167360, "cost": 1167360,
"damage": 3.92, "damage": 3.92,
"damagedist": {
"K": 1
},
"distdraw": 0.57, "distdraw": 0.57,
"edID": 128049450, "edID": 128049450,
"eddbID": 862, "eddbID": 862,
@@ -206,9 +221,8 @@
"reload": 2.5, "reload": 2.5,
"rof": 4.545, "rof": 4.545,
"roundspershot": 12, "roundspershot": 12,
"speed": 667, "shotspeed": 667,
"thermload": 1.1, "thermload": 1.1
"type": "K"
}, },
{ {
"ammo": 180, "ammo": 180,
@@ -219,6 +233,9 @@
"clip": 3, "clip": 3,
"cost": 1751040, "cost": 1751040,
"damage": 3.23, "damage": 3.23,
"damagedist": {
"K": 1
},
"distdraw": 0.81, "distdraw": 0.81,
"edID": 128671321, "edID": 128671321,
"eddbID": 1454, "eddbID": 1454,
@@ -236,9 +253,8 @@
"reload": 2.5, "reload": 2.5,
"rof": 4.76, "rof": 4.76,
"roundspershot": 12, "roundspershot": 12,
"speed": 667, "shotspeed": 667,
"thermload": 1.4, "thermload": 1.4
"type": "K"
}, },
{ {
"ammo": 180, "ammo": 180,
@@ -249,6 +265,9 @@
"clip": 3, "clip": 3,
"cost": 5836800, "cost": 5836800,
"damage": 2.56, "damage": 2.56,
"damagedist": {
"K": 1
},
"distdraw": 0.37, "distdraw": 0.37,
"edID": 128671322, "edID": 128671322,
"eddbID": 1455, "eddbID": 1455,
@@ -266,9 +285,8 @@
"reload": 2.5, "reload": 2.5,
"rof": 4, "rof": 4,
"roundspershot": 12, "roundspershot": 12,
"speed": 667, "shotspeed": 667,
"thermload": 0.7, "thermload": 0.7
"type": "K"
}, },
{ {
"ammo": 180, "ammo": 180,
@@ -279,6 +297,9 @@
"clip": 3, "clip": 3,
"cost": 1400830, "cost": 1400830,
"damage": 3.4, "damage": 3.4,
"damagedist": {
"K": 1
},
"distdraw": 0.57, "distdraw": 0.57,
"edID": 128671343, "edID": 128671343,
"eddbID": 1478, "eddbID": 1478,
@@ -297,9 +318,8 @@
"reload": 2.5, "reload": 2.5,
"rof": 4.5, "rof": 4.5,
"roundspershot": 12, "roundspershot": 12,
"speed": 1000, "shotspeed": 1000,
"thermload": 1.1, "thermload": 1.1
"type": "K"
} }
] ]
} }

View File

@@ -9,6 +9,10 @@
"clip": 3, "clip": 3,
"cost": 24260, "cost": 24260,
"damage": 44, "damage": 44,
"damagedist": {
"E": 0.5,
"T": 0.5
},
"distdraw": 0, "distdraw": 0,
"edID": 128049500, "edID": 128049500,
"eddbID": 880, "eddbID": 880,
@@ -22,8 +26,7 @@
"rating": "I", "rating": "I",
"reload": 2, "reload": 2,
"rof": 1, "rof": 1,
"thermload": 5, "thermload": 5
"type": "ET"
}, },
{ {
"ammo": 36, "ammo": 36,
@@ -34,6 +37,10 @@
"clip": 3, "clip": 3,
"cost": 36400, "cost": 36400,
"damage": 32, "damage": 32,
"damagedist": {
"E": 0.5,
"T": 0.5
},
"distdraw": 0, "distdraw": 0,
"edID": 128671448, "edID": 128671448,
"eddbID": 1523, "eddbID": 1523,
@@ -48,8 +55,7 @@
"rating": "I", "rating": "I",
"reload": 2, "reload": 2,
"rof": 1, "rof": 1,
"thermload": 5, "thermload": 5
"type": "ET"
}, },
{ {
"ammo": 36, "ammo": 36,
@@ -60,6 +66,10 @@
"clip": 3, "clip": 3,
"cost": 294080, "cost": 294080,
"damage": 44, "damage": 44,
"damagedist": {
"E": 0.5,
"T": 0.5
},
"distdraw": 0, "distdraw": 0,
"edID": 128049501, "edID": 128049501,
"eddbID": 881, "eddbID": 881,
@@ -73,8 +83,7 @@
"rating": "I", "rating": "I",
"reload": 2, "reload": 2,
"rof": 1, "rof": 1,
"thermload": 7.5, "thermload": 7.5
"type": "ET"
} }
] ]
} }

View File

@@ -7,6 +7,7 @@
"class": 1, "class": 1,
"cost": 6800, "cost": 6800,
"damage": 2, "damage": 2,
"damagedist": {},
"distdraw": 1.35, "distdraw": 1.35,
"edID": 128049525, "edID": 128049525,
"eddbID": 888, "eddbID": 888,
@@ -29,6 +30,9 @@
"class": 1, "class": 1,
"cost": 13600, "cost": 13600,
"damage": 8, "damage": 8,
"damagedist": {
"T": 1
},
"distdraw": 1.75, "distdraw": 1.75,
"eddbID": 1479, "eddbID": 1479,
"falloff": 400, "falloff": 400,
@@ -43,8 +47,7 @@
"pp": "Zemina Torval", "pp": "Zemina Torval",
"range": 2000, "range": 2000,
"rating": "D", "rating": "D",
"thermload": 6, "thermload": 6
"type": "T"
}, },
{ {
"breachdmg": 1.2, "breachdmg": 1.2,
@@ -53,6 +56,7 @@
"class": 2, "class": 2,
"cost": 22580, "cost": 22580,
"damage": 8, "damage": 8,
"damagedist": {},
"distdraw": 1.75, "distdraw": 1.75,
"edID": 128049526, "edID": 128049526,
"eddbID": 889, "eddbID": 889,

View File

@@ -9,6 +9,9 @@
"clip": 8, "clip": 8,
"cost": 32180, "cost": 32180,
"damage": 50, "damage": 50,
"damagedist": {
"E": 1
},
"distdraw": 0.24, "distdraw": 0.24,
"edID": 128666724, "edID": 128666724,
"eddbID": 1326, "eddbID": 1326,
@@ -23,9 +26,8 @@
"rating": "B", "rating": "B",
"reload": 5, "reload": 5,
"rof": 0.5, "rof": 0.5,
"speed": 750, "shotspeed": 750,
"thermload": 3.6, "thermload": 3.6
"type": "E"
}, },
{ {
"ammo": 6, "ammo": 6,
@@ -36,6 +38,9 @@
"clip": 6, "clip": 6,
"cost": 72600, "cost": 72600,
"damage": 40, "damage": 40,
"damagedist": {
"E": 1
},
"distdraw": 0.24, "distdraw": 0.24,
"edID": 128049492, "edID": 128049492,
"eddbID": 878, "eddbID": 878,
@@ -50,9 +55,8 @@
"rating": "B", "rating": "B",
"reload": 12, "reload": 12,
"rof": 0.333, "rof": 0.333,
"speed": 625, "shotspeed": 625,
"thermload": 3.6, "thermload": 3.6
"type": "E"
}, },
{ {
"ammo": 48, "ammo": 48,
@@ -63,6 +67,9 @@
"clip": 12, "clip": 12,
"cost": 240400, "cost": 240400,
"damage": 50, "damage": 50,
"damagedist": {
"E": 1
},
"distdraw": 0.24, "distdraw": 0.24,
"edID": 128666725, "edID": 128666725,
"eddbID": 1327, "eddbID": 1327,
@@ -79,9 +86,8 @@
"rating": "B", "rating": "B",
"reload": 5, "reload": 5,
"rof": 0.5, "rof": 0.5,
"speed": 750, "shotspeed": 750,
"thermload": 3.6, "thermload": 3.6
"type": "E"
}, },
{ {
"ammo": 18, "ammo": 18,
@@ -92,6 +98,9 @@
"clip": 6, "clip": 6,
"cost": 512400, "cost": 512400,
"damage": 40, "damage": 40,
"damagedist": {
"E": 1
},
"distdraw": 0.24, "distdraw": 0.24,
"edID": 128049493, "edID": 128049493,
"eddbID": 879, "eddbID": 879,
@@ -108,9 +117,8 @@
"rating": "B", "rating": "B",
"reload": 12, "reload": 12,
"rof": 0.333, "rof": 0.333,
"speed": 625, "shotspeed": 625,
"thermload": 3.6, "thermload": 3.6
"type": "E"
}, },
{ {
"ammo": 48, "ammo": 48,
@@ -121,6 +129,9 @@
"clip": 12, "clip": 12,
"cost": 190227, "cost": 190227,
"damage": 40, "damage": 40,
"damagedist": {
"E": 1
},
"distdraw": 0.24, "distdraw": 0.24,
"eddbID": 1559, "eddbID": 1559,
"grp": "mr", "grp": "mr",
@@ -136,9 +147,8 @@
"rating": "B", "rating": "B",
"reload": 5, "reload": 5,
"rof": 0.333, "rof": 0.333,
"speed": 750, "shotspeed": 750,
"thermload": 3.6, "thermload": 3.6
"type": "E"
}, },
{ {
"ammo": 120, "ammo": 120,
@@ -149,6 +159,9 @@
"clip": 12, "clip": 12,
"cost": 768600, "cost": 768600,
"damage": 7.5, "damage": 7.5,
"damagedist": {
"E": 1
},
"distdraw": 0.24, "distdraw": 0.24,
"edID": 128671344, "edID": 128671344,
"eddbID": 1480, "eddbID": 1480,
@@ -168,9 +181,8 @@
"reload": 5, "reload": 5,
"rof": 2, "rof": 2,
"roundspershot": 4, "roundspershot": 4,
"speed": 600, "shotspeed": 600,
"thermload": 3.6, "thermload": 3.6
"type": "E"
} }
] ]
} }

View File

@@ -9,6 +9,9 @@
"clip": 100, "clip": 100,
"cost": 9500, "cost": 9500,
"damage": 1.12, "damage": 1.12,
"damagedist": {
"K": 1
},
"distdraw": 0.06, "distdraw": 0.06,
"edID": 128049455, "edID": 128049455,
"eddbID": 867, "eddbID": 867,
@@ -24,9 +27,8 @@
"rating": "F", "rating": "F",
"reload": 4, "reload": 4,
"rof": 7.69, "rof": 7.69,
"speed": 1600, "shotspeed": 1600,
"thermload": 0.1, "thermload": 0.1
"type": "K"
}, },
{ {
"ammo": 2100, "ammo": 2100,
@@ -37,6 +39,9 @@
"clip": 90, "clip": 90,
"cost": 14250, "cost": 14250,
"damage": 0.82, "damage": 0.82,
"damagedist": {
"K": 1
},
"distdraw": 0.07, "distdraw": 0.07,
"edID": 128049459, "edID": 128049459,
"eddbID": 869, "eddbID": 869,
@@ -52,9 +57,8 @@
"rating": "G", "rating": "G",
"reload": 5, "reload": 5,
"rof": 8.33, "rof": 8.33,
"speed": 1600, "shotspeed": 1600,
"thermload": 0.1, "thermload": 0.1
"type": "K"
}, },
{ {
"ammo": 2100, "ammo": 2100,
@@ -65,6 +69,9 @@
"clip": 90, "clip": 90,
"cost": 81600, "cost": 81600,
"damage": 0.56, "damage": 0.56,
"damagedist": {
"K": 1
},
"distdraw": 0.03, "distdraw": 0.03,
"edID": 128049462, "edID": 128049462,
"eddbID": 871, "eddbID": 871,
@@ -80,9 +87,8 @@
"rating": "G", "rating": "G",
"reload": 4, "reload": 4,
"rof": 7.14, "rof": 7.14,
"speed": 1600, "shotspeed": 1600,
"thermload": 0, "thermload": 0
"type": "K"
}, },
{ {
"ammo": 1000, "ammo": 1000,
@@ -93,6 +99,9 @@
"clip": 60, "clip": 60,
"cost": 13980, "cost": 13980,
"damage": 2.9, "damage": 2.9,
"damagedist": {
"K": 1
},
"distdraw": 0.12, "distdraw": 0.12,
"eddbID": 1481, "eddbID": 1481,
"falloff": 1800, "falloff": 1800,
@@ -109,9 +118,8 @@
"rating": "F", "rating": "F",
"reload": 4, "reload": 4,
"rof": 4.3, "rof": 4.3,
"speed": 1800, "shotspeed": 1800,
"thermload": 0.2, "thermload": 0.2
"type": "K"
}, },
{ {
"ammo": 2100, "ammo": 2100,
@@ -122,6 +130,9 @@
"clip": 100, "clip": 100,
"cost": 38000, "cost": 38000,
"damage": 2.19, "damage": 2.19,
"damagedist": {
"K": 1
},
"distdraw": 0.11, "distdraw": 0.11,
"edID": 128049456, "edID": 128049456,
"eddbID": 868, "eddbID": 868,
@@ -137,9 +148,8 @@
"rating": "E", "rating": "E",
"reload": 4, "reload": 4,
"rof": 7.14, "rof": 7.14,
"speed": 1600, "shotspeed": 1600,
"thermload": 0.2, "thermload": 0.2
"type": "K"
}, },
{ {
"ammo": 2100, "ammo": 2100,
@@ -150,6 +160,9 @@
"clip": 90, "clip": 90,
"cost": 57000, "cost": 57000,
"damage": 1.64, "damage": 1.64,
"damagedist": {
"K": 1
},
"distdraw": 0.14, "distdraw": 0.14,
"edID": 128049460, "edID": 128049460,
"eddbID": 870, "eddbID": 870,
@@ -165,9 +178,8 @@
"rating": "F", "rating": "F",
"reload": 5, "reload": 5,
"rof": 7.69, "rof": 7.69,
"speed": 1600, "shotspeed": 1600,
"thermload": 0.2, "thermload": 0.2
"type": "K"
}, },
{ {
"ammo": 2100, "ammo": 2100,
@@ -178,6 +190,9 @@
"clip": 90, "clip": 90,
"cost": 1292800, "cost": 1292800,
"damage": 1.17, "damage": 1.17,
"damagedist": {
"K": 1
},
"distdraw": 0.06, "distdraw": 0.06,
"edID": 128049463, "edID": 128049463,
"eddbID": 872, "eddbID": 872,
@@ -193,9 +208,8 @@
"rating": "F", "rating": "F",
"reload": 4, "reload": 4,
"rof": 6.25, "rof": 6.25,
"speed": 1600, "shotspeed": 1600,
"thermload": 0.1, "thermload": 0.1
"type": "K"
}, },
{ {
"ammo": 2100, "ammo": 2100,
@@ -206,6 +220,9 @@
"clip": 100, "clip": 100,
"cost": 140400, "cost": 140400,
"damage": 3.93, "damage": 3.93,
"damagedist": {
"K": 1
},
"distdraw": 0.18, "distdraw": 0.18,
"edID": 128049457, "edID": 128049457,
"eddbID": 1541, "eddbID": 1541,
@@ -221,9 +238,8 @@
"rating": "C", "rating": "C",
"reload": 4, "reload": 4,
"rof": 5.88, "rof": 5.88,
"speed": 1600, "shotspeed": 1600,
"thermload": 0.3, "thermload": 0.3
"type": "K"
}, },
{ {
"ammo": 2100, "ammo": 2100,
@@ -234,6 +250,9 @@
"clip": 90, "clip": 90,
"cost": 578436, "cost": 578436,
"damage": 2.84, "damage": 2.84,
"damagedist": {
"K": 1
},
"distdraw": 0.25, "distdraw": 0.25,
"edID": 128049461, "edID": 128049461,
"eddbID": 1543, "eddbID": 1543,
@@ -249,9 +268,8 @@
"rating": "C", "rating": "C",
"reload": 5, "reload": 5,
"rof": 6.665, "rof": 6.665,
"speed": 1600, "shotspeed": 1600,
"thermload": 0.3, "thermload": 0.3
"type": "K"
}, },
{ {
"ammo": 2100, "ammo": 2100,
@@ -262,6 +280,9 @@
"clip": 100, "clip": 100,
"cost": 1177600, "cost": 1177600,
"damage": 4.62, "damage": 4.62,
"damagedist": {
"K": 1
},
"distdraw": 0.24, "distdraw": 0.24,
"edID": 128049458, "edID": 128049458,
"eddbID": 1542, "eddbID": 1542,
@@ -278,9 +299,8 @@
"reload": 4, "reload": 4,
"rof": 3.03, "rof": 3.03,
"roundspershot": 2, "roundspershot": 2,
"speed": 1600, "shotspeed": 1600,
"thermload": 0.4, "thermload": 0.4
"type": "K"
}, },
{ {
"ammo": 2100, "ammo": 2100,
@@ -291,6 +311,9 @@
"clip": 90, "clip": 90,
"cost": 6377600, "cost": 6377600,
"damage": 3.46, "damage": 3.46,
"damagedist": {
"K": 1
},
"distdraw": 0.37, "distdraw": 0.37,
"edID": 128681996, "edID": 128681996,
"eddbID": 1546, "eddbID": 1546,
@@ -307,9 +330,8 @@
"reload": 5, "reload": 5,
"rof": 3.365, "rof": 3.365,
"roundspershot": 2, "roundspershot": 2,
"speed": 1600, "shotspeed": 1600,
"thermload": 0.5, "thermload": 0.5
"type": "K"
} }
] ]
} }

View File

@@ -9,6 +9,11 @@
"clip": 5, "clip": 5,
"cost": 834200, "cost": 834200,
"damage": 54.3, "damage": 54.3,
"damagedist": {
"A": 0.6,
"K": 0.2,
"T": 0.2
},
"distdraw": 8.65, "distdraw": 8.65,
"edID": 128049465, "edID": 128049465,
"eddbID": 873, "eddbID": 873,
@@ -24,9 +29,8 @@
"rating": "C", "rating": "C",
"reload": 6, "reload": 6,
"rof": 0.33, "rof": 0.33,
"speed": 875, "shotspeed": 875,
"thermload": 15.6, "thermload": 15.6
"type": "A"
}, },
{ {
"ammo": 100, "ammo": 100,
@@ -37,6 +41,11 @@
"clip": 5, "clip": 5,
"cost": 3051200, "cost": 3051200,
"damage": 83.4, "damage": 83.4,
"damagedist": {
"A": 0.6,
"K": 0.2,
"T": 0.2
},
"distdraw": 13.6, "distdraw": 13.6,
"edID": 128049466, "edID": 128049466,
"eddbID": 874, "eddbID": 874,
@@ -52,9 +61,8 @@
"rating": "B", "rating": "B",
"reload": 6, "reload": 6,
"rof": 0.29, "rof": 0.29,
"speed": 875, "shotspeed": 875,
"thermload": 21.8, "thermload": 21.8
"type": "A"
}, },
{ {
"ammo": 300, "ammo": 300,
@@ -65,6 +73,11 @@
"clip": 20, "clip": 20,
"cost": 4119120, "cost": 4119120,
"damage": 34.5, "damage": 34.5,
"damagedist": {
"A": 0.6,
"K": 0.2,
"T": 0.2
},
"distdraw": 5.5, "distdraw": 5.5,
"edID": 128671339, "edID": 128671339,
"eddbID": 1482, "eddbID": 1482,
@@ -82,9 +95,8 @@
"rating": "B", "rating": "B",
"reload": 6, "reload": 6,
"rof": 0.8, "rof": 0.8,
"speed": 875, "shotspeed": 875,
"thermload": 11, "thermload": 11
"type": "A"
}, },
{ {
"ammo": 100, "ammo": 100,
@@ -95,6 +107,11 @@
"clip": 5, "clip": 5,
"cost": 13793600, "cost": 13793600,
"damage": 125.2, "damage": 125.2,
"damagedist": {
"A": 0.6,
"K": 0.2,
"T": 0.2
},
"distdraw": 21.04, "distdraw": 21.04,
"edID": 128049467, "edID": 128049467,
"eddbID": 875, "eddbID": 875,
@@ -110,9 +127,8 @@
"rating": "A", "rating": "A",
"reload": 6, "reload": 6,
"rof": 0.25, "rof": 0.25,
"speed": 875, "shotspeed": 875,
"thermload": 29.5, "thermload": 29.5
"type": "A"
} }
] ]
} }

View File

@@ -5,25 +5,28 @@
"burst": 4, "burst": 4,
"burstrof": 15, "burstrof": 15,
"class": 0, "class": 0,
"clip": 50, "clip": 12,
"cost": 18550, "cost": 18550,
"damage": 0.2,
"damagedist": {
"K": 1
},
"edID": 128049522, "edID": 128049522,
"eddbID": 887, "eddbID": 887,
"grp": "po", "grp": "po",
"id": "03", "id": "03",
"integrity": 30, "integrity": 30,
"jitter": 1.5, "jitter": 0.75,
"mass": 0.5, "mass": 0.5,
"name": "Point Defence", "name": "Point Defence",
"passive": 1, "passive": 1,
"power": 0.2, "power": 0.2,
"range": 2500, "range": 2500,
"rating": "I", "rating": "I",
"reload": 0, "reload": 0.4,
"rof": 10, "rof": 10,
"speed": 1000, "shotspeed": 1000,
"thermload": 0.1, "thermload": 0.1
"type": "K"
} }
] ]
} }

View File

@@ -7,6 +7,9 @@
"class": 1, "class": 1,
"cost": 2200, "cost": 2200,
"damage": 2.04, "damage": 2.04,
"damagedist": {
"T": 1
},
"distdraw": 0.30, "distdraw": 0.30,
"edID": 128049381, "edID": 128049381,
"eddbID": 823, "eddbID": 823,
@@ -21,8 +24,7 @@
"range": 3000, "range": 3000,
"rating": "F", "rating": "F",
"rof": 3.847, "rof": 3.847,
"thermload": 0.3, "thermload": 0.3
"type": "T"
}, },
{ {
"breachdmg": 1.3, "breachdmg": 1.3,
@@ -31,6 +33,9 @@
"class": 1, "class": 1,
"cost": 6600, "cost": 6600,
"damage": 1.56, "damage": 1.56,
"damagedist": {
"T": 1
},
"distdraw": 0.31, "distdraw": 0.31,
"edID": 128049385, "edID": 128049385,
"eddbID": 826, "eddbID": 826,
@@ -45,8 +50,7 @@
"range": 3000, "range": 3000,
"rating": "G", "rating": "G",
"rof": 3.987, "rof": 3.987,
"thermload": 0.3, "thermload": 0.3
"type": "T"
}, },
{ {
"breachdmg": 1, "breachdmg": 1,
@@ -55,6 +59,9 @@
"class": 1, "class": 1,
"cost": 26000, "cost": 26000,
"damage": 1.18, "damage": 1.18,
"damagedist": {
"T": 1
},
"distdraw": 0.19, "distdraw": 0.19,
"edID": 128049388, "edID": 128049388,
"eddbID": 829, "eddbID": 829,
@@ -69,8 +76,7 @@
"range": 3000, "range": 3000,
"rating": "G", "rating": "G",
"rof": 3.339, "rof": 3.339,
"thermload": 0.2, "thermload": 0.2
"type": "T"
}, },
{ {
"breachdmg": 3, "breachdmg": 3,
@@ -79,6 +85,9 @@
"class": 2, "class": 2,
"cost": 17600, "cost": 17600,
"damage": 3.49, "damage": 3.49,
"damagedist": {
"T": 1
},
"distdraw": 0.5, "distdraw": 0.5,
"edID": 128049382, "edID": 128049382,
"eddbID": 824, "eddbID": 824,
@@ -93,8 +102,7 @@
"range": 3000, "range": 3000,
"rating": "F", "rating": "F",
"rof": 3.448, "rof": 3.448,
"thermload": 0.6, "thermload": 0.6
"type": "T"
}, },
{ {
"breachdmg": 2.3, "breachdmg": 2.3,
@@ -103,6 +111,9 @@
"class": 2, "class": 2,
"cost": 35400, "cost": 35400,
"damage": 2.68, "damage": 2.68,
"damagedist": {
"T": 1
},
"distdraw": 0.54, "distdraw": 0.54,
"edID": 128049386, "edID": 128049386,
"eddbID": 827, "eddbID": 827,
@@ -117,8 +128,7 @@
"range": 3000, "range": 3000,
"rating": "F", "rating": "F",
"rof": 3.567, "rof": 3.567,
"thermload": 0.5, "thermload": 0.5
"type": "T"
}, },
{ {
"breachdmg": 1.7, "breachdmg": 1.7,
@@ -127,6 +137,9 @@
"class": 2, "class": 2,
"cost": 132800, "cost": 132800,
"damage": 2.04, "damage": 2.04,
"damagedist": {
"T": 1
},
"distdraw": 0.33, "distdraw": 0.33,
"edID": 128049389, "edID": 128049389,
"eddbID": 830, "eddbID": 830,
@@ -141,8 +154,7 @@
"range": 3000, "range": 3000,
"rating": "F", "rating": "F",
"rof": 3.037, "rof": 3.037,
"thermload": 0.3, "thermload": 0.3
"type": "T"
}, },
{ {
"breachdmg": 2.4, "breachdmg": 2.4,
@@ -151,6 +163,9 @@
"class": 2, "class": 2,
"cost": 26400, "cost": 26400,
"damage": 2.8, "damage": 2.8,
"damagedist": {
"T": 1
},
"distdraw": 0.9, "distdraw": 0.9,
"eddbID": 1483, "eddbID": 1483,
"falloff": 500, "falloff": 500,
@@ -165,8 +180,7 @@
"pp": "Felicia Winters", "pp": "Felicia Winters",
"rating": "E", "rating": "E",
"rof": 1.664, "rof": 1.664,
"thermload": 1, "thermload": 1
"type": "T"
}, },
{ {
"breachdmg": 5.1, "breachdmg": 5.1,
@@ -175,6 +189,9 @@
"class": 3, "class": 3,
"cost": 70400, "cost": 70400,
"damage": 5.98, "damage": 5.98,
"damagedist": {
"T": 1
},
"distdraw": 0.86, "distdraw": 0.86,
"edID": 128049383, "edID": 128049383,
"eddbID": 825, "eddbID": 825,
@@ -189,8 +206,7 @@
"range": 3000, "range": 3000,
"rating": "D", "rating": "D",
"rof": 3.3, "rof": 3.3,
"thermload": 1, "thermload": 1
"type": "T"
}, },
{ {
"breachdmg": 3.9, "breachdmg": 3.9,
@@ -199,6 +215,9 @@
"class": 3, "class": 3,
"cost": 140600, "cost": 140600,
"damage": 4.58, "damage": 4.58,
"damagedist": {
"T": 1
},
"distdraw": 0.92, "distdraw": 0.92,
"edID": 128049387, "edID": 128049387,
"eddbID": 828, "eddbID": 828,
@@ -213,8 +232,7 @@
"range": 3000, "range": 3000,
"rating": "E", "rating": "E",
"rof": 3.223, "rof": 3.223,
"thermload": 0.9, "thermload": 0.9
"type": "T"
}, },
{ {
"breachdmg": 3, "breachdmg": 3,
@@ -223,6 +241,9 @@
"class": 3, "class": 3,
"cost": 400400, "cost": 400400,
"damage": 3.49, "damage": 3.49,
"damagedist": {
"T": 1
},
"distdraw": 0.56, "distdraw": 0.56,
"edID": 128049390, "edID": 128049390,
"eddbID": 831, "eddbID": 831,
@@ -237,8 +258,7 @@
"range": 3000, "range": 3000,
"rating": "F", "rating": "F",
"rof": 2.705, "rof": 2.705,
"thermload": 0.6, "thermload": 0.6
"type": "T"
}, },
{ {
"breachdmg": 8.7, "breachdmg": 8.7,
@@ -247,6 +267,9 @@
"class": 4, "class": 4,
"cost": 177600, "cost": 177600,
"damage": 10.23, "damage": 10.23,
"damagedist": {
"T": 1
},
"distdraw": 1.48, "distdraw": 1.48,
"edID": 128049384, "edID": 128049384,
"eddbID": 1539, "eddbID": 1539,
@@ -261,8 +284,7 @@
"range": 3000, "range": 3000,
"rating": "A", "rating": "A",
"rof": 2.633, "rof": 2.633,
"thermload": 1.6, "thermload": 1.6
"type": "T"
}, },
{ {
"breachdmg": 6.6, "breachdmg": 6.6,
@@ -271,6 +293,9 @@
"class": 4, "class": 4,
"cost": 877600, "cost": 877600,
"damage": 7.82, "damage": 7.82,
"damagedist": {
"T": 1
},
"distdraw": 1.56, "distdraw": 1.56,
"edID": 128681995, "edID": 128681995,
"eddbID": 1545, "eddbID": 1545,
@@ -285,8 +310,7 @@
"range": 3000, "range": 3000,
"rating": "A", "rating": "A",
"rof": 2.777, "rof": 2.777,
"thermload": 1.6, "thermload": 1.6
"type": "T"
} }
] ]
} }

View File

@@ -9,6 +9,10 @@
"clip": 1, "clip": 1,
"cost": 51600, "cost": 51600,
"damage": 23.3, "damage": 23.3,
"damagedist": {
"K": 0.5,
"T": 0.5
},
"distdraw": 2.69, "distdraw": 2.69,
"edID": 128049488, "edID": 128049488,
"eddbID": 876, "eddbID": 876,
@@ -24,8 +28,7 @@
"rating": "D", "rating": "D",
"reload": 1, "reload": 1,
"rof": 1.6, "rof": 1.6,
"thermload": 17.8, "thermload": 17.8
"type": "KT"
}, },
{ {
"ammo": 80, "ammo": 80,
@@ -36,6 +39,10 @@
"clip": 1, "clip": 1,
"cost": 412800, "cost": 412800,
"damage": 41.5, "damage": 41.5,
"damagedist": {
"K": 0.5,
"T": 0.5
},
"distdraw": 5.11, "distdraw": 5.11,
"edID": 128049489, "edID": 128049489,
"eddbID": 877, "eddbID": 877,
@@ -51,8 +58,7 @@
"rating": "B", "rating": "B",
"reload": 1, "reload": 1,
"rof": 1.2, "rof": 1.2,
"thermload": 30, "thermload": 30
"type": "KT"
}, },
{ {
"ammo": 90, "ammo": 90,
@@ -65,6 +71,10 @@
"clip": 3, "clip": 3,
"cost": 619200, "cost": 619200,
"damage": 15, "damage": 15,
"damagedist": {
"K": 0.5,
"T": 0.5
},
"distdraw": 2, "distdraw": 2,
"edID": 128671341, "edID": 128671341,
"eddbID": 1484, "eddbID": 1484,
@@ -82,8 +92,7 @@
"rating": "B", "rating": "B",
"reload": 1, "reload": 1,
"rof": 4.1, "rof": 4.1,
"thermload": 16, "thermload": 16
"type": "KT"
} }
] ]
} }

View File

@@ -9,6 +9,9 @@
"clip": 1, "clip": 1,
"cost": 11200, "cost": 11200,
"damage": 120, "damage": 120,
"damagedist": {
"E": 1
},
"distdraw": 0, "distdraw": 0,
"edID": 128049509, "edID": 128049509,
"eddbID": 882, "eddbID": 882,
@@ -23,9 +26,8 @@
"rating": "I", "rating": "I",
"reload": 5, "reload": 5,
"rof": 1, "rof": 1,
"speed": 250, "shotspeed": 250,
"thermload": 45, "thermload": 45
"type": "E"
}, },
{ {
"ammo": 2, "ammo": 2,
@@ -36,6 +38,9 @@
"clip": 1, "clip": 1,
"cost": 44800, "cost": 44800,
"damage": 120, "damage": 120,
"damagedist": {
"E": 1
},
"distdraw": 0, "distdraw": 0,
"edID": 128049510, "edID": 128049510,
"eddbID": 883, "eddbID": 883,
@@ -50,9 +55,8 @@
"rating": "I", "rating": "I",
"reload": 5, "reload": 5,
"rof": 1, "rof": 1,
"speed": 250, "shotspeed": 250,
"thermload": 50, "thermload": 50
"type": "E"
} }
] ]
} }

View File

@@ -48,7 +48,7 @@
"id": "2i", "id": "2i",
"mass": 1.3, "mass": 1.3,
"name": "Detailed Surface Scanner", "name": "Detailed Surface Scanner",
"power": 0.6, "power": 0,
"rating": "C" "rating": "C"
} }
] ]

View File

@@ -1,6 +1,6 @@
{ {
"name": "coriolis-data", "name": "coriolis-data",
"version": "2.2.9", "version": "2.2.10",
"repository": { "repository": {
"type": "git", "type": "git",
"url": "https://github.com/EDCD/coriolis-data" "url": "https://github.com/EDCD/coriolis-data"
@@ -9,7 +9,7 @@
"homepage": "https://coriolis.edcd.io", "homepage": "https://coriolis.edcd.io",
"bugs": "https://github.com/EDCD/coriolis/issues", "bugs": "https://github.com/EDCD/coriolis/issues",
"private": true, "private": true,
"engine": "node >= 0.12.2", "engine": "node >= 4.0.0",
"license": "MIT", "license": "MIT",
"scripts": { "scripts": {
"lint": "eslint --plugin json --ext .json modules ships dist", "lint": "eslint --plugin json --ext .json modules ships dist",
@@ -19,9 +19,9 @@
"start": "node generate_distribution.js" "start": "node generate_distribution.js"
}, },
"devDependencies": { "devDependencies": {
"eslint": "^1.10.3", "eslint": "^2.2.0",
"eslint-plugin-json": "^1.1.0", "eslint-plugin-json": "^1.1.0",
"jasmine-node": "^1.14.5", "jasmine-node": "^1.14.5",
"uglify-js": "^2.6.1" "uglify-js": "^2.7.5"
} }
} }

View File

@@ -10,7 +10,7 @@
"speed": 200, "speed": 200,
"boost": 260, "boost": 260,
"boostEnergy": 27, "boostEnergy": 27,
"baseShieldStrength": 610.5, "baseShieldStrength": 555,
"baseArmour": 370, "baseArmour": 370,
"hardness": 70, "hardness": 70,
"hullMass": 900, "hullMass": 900,

View File

@@ -9,7 +9,7 @@
"speed": 200, "speed": 200,
"boost": 320, "boost": 320,
"boostEnergy": 23, "boostEnergy": 23,
"baseShieldStrength": 690, "baseShieldStrength": 600,
"baseArmour": 400, "baseArmour": 400,
"hardness": 70, "hardness": 70,
"hullMass": 1100, "hullMass": 1100,

View File

@@ -41,9 +41,9 @@ describe('JSON Data', function() {
expect(ids[id]).toBeFalsy('ID already exists: ' + id); expect(ids[id]).toBeFalsy('ID already exists: ' + id);
expect(group[i].edID > 0).toBeTruthy('Standard module ' + id + ' is missing E:D ID'); expect(group[i].edID > 0).toBeTruthy('Standard module ' + id + ' is missing E:D ID');
expect(group[i].eddbID > 0 || group[i].pp).toBeTruthy('Standard module ' + id + ' is missing EDDB ID'); expect(group[i].eddbID > 0 || group[i].pp).toBeTruthy('Standard module ' + id + ' is missing EDDB ID');
if (s != 'ft' && s != 'pas' ) { if (s != 'ft' && s != 'pas' ) {
expect(group[i].integrity).toBeDefined('Standard module ' + id + ' is missing integrity'); expect(group[i].integrity).toBeDefined('Standard module ' + id + ' is missing integrity');
} }
expect(group[i].grp).toBeDefined(`No group defined, Type: ${s}, ID: ${id}, Index: ${i}`); expect(group[i].grp).toBeDefined(`No group defined, Type: ${s}, ID: ${id}, Index: ${i}`);
expect(eddbIDs[group[i].eddbID]).toBeFalsy(`EDDB ID [${group[i].eddbID}] already exists for ID: ${id}, Index: ${i}`); expect(eddbIDs[group[i].eddbID]).toBeFalsy(`EDDB ID [${group[i].eddbID}] already exists for ID: ${id}, Index: ${i}`);
expect(edIDs[group[i].edID]).toBeFalsy(`E:D ID [${group[i].edID}] already exists for ID: ${id}, Index: ${i}`); expect(edIDs[group[i].edID]).toBeFalsy(`E:D ID [${group[i].edID}] already exists for ID: ${id}, Index: ${i}`);
@@ -79,19 +79,22 @@ describe('JSON Data', function() {
if (group[i].edID) { if (group[i].edID) {
edIDs[group[i].edID] = true; edIDs[group[i].edID] = true;
} }
if (group[i].damage) { if (group[i].damage) {
expect(group[i].damage).toBeDefined(`Hardpoint ${group[i].grp}:${id} ${group[i].name ? group[i].name : ''} is missing damage`); expect(group[i].damage).toBeDefined(`Hardpoint ${group[i].grp}:${id} ${group[i].name ? group[i].name : ''} is missing damage`);
expect(group[i].damagedist).toBeDefined(`Hardpoint ${group[i].grp}:${id} ${group[i].name ? group[i].name : ''} is missing damage distribution`);
if (group[i].grp != 'po') {
expect(group[i].thermload).toBeDefined(`Hardpoint ${group[i].grp}:${id} ${group[i].name ? group[i].name : ''} is missing thermload`);
expect(group[i].breachmin).toBeDefined(`Hardpoint ${group[i].grp}:${id} ${group[i].name ? group[i].name : ''} is missing breachmin`); expect(group[i].breachmin).toBeDefined(`Hardpoint ${group[i].grp}:${id} ${group[i].name ? group[i].name : ''} is missing breachmin`);
expect(group[i].breachmax).toBeDefined(`Hardpoint ${group[i].grp}:${id} ${group[i].name ? group[i].name : ''} is missing breachmax`); expect(group[i].breachmax).toBeDefined(`Hardpoint ${group[i].grp}:${id} ${group[i].name ? group[i].name : ''} is missing breachmax`);
expect(group[i].breachdmg).toBeDefined(`Hardpoint ${group[i].grp}:${id} ${group[i].name ? group[i].name : ''} is missing breachdmg`); expect(group[i].breachdmg).toBeDefined(`Hardpoint ${group[i].grp}:${id} ${group[i].name ? group[i].name : ''} is missing breachdmg`);
expect(group[i].piercing).toBeDefined(`Hardpoint ${group[i].grp}:${id} ${group[i].name ? group[i].name : ''} is missing piercing`); expect(group[i].piercing).toBeDefined(`Hardpoint ${group[i].grp}:${id} ${group[i].name ? group[i].name : ''} is missing piercing`);
expect(group[i].thermload).toBeDefined(`Hardpoint ${group[i].grp}:${id} ${group[i].name ? group[i].name : ''} is missing thermload`);
expect(group[i].distdraw).toBeDefined(`Hardpoint ${group[i].grp}:${id} ${group[i].name ? group[i].name : ''} is missing distdraw`); expect(group[i].distdraw).toBeDefined(`Hardpoint ${group[i].grp}:${id} ${group[i].name ? group[i].name : ''} is missing distdraw`);
}
} }
if ((group[i].ammo || group[i].reload || group[i].clip) && g != 'hs' && g != 'ec') { if ((group[i].ammo || group[i].reload || group[i].clip) && g != 'hs' && g != 'ec') {
expect(group[i].ammo).toBeDefined(`Hardpoint ${group[i].grp}:${id} ${group[i].name ? group[i].name : ''} is missing ammo`); expect(group[i].ammo).toBeDefined(`Hardpoint ${group[i].grp}:${id} ${group[i].name ? group[i].name : ''} is missing ammo`);
expect(group[i].clip).toBeDefined(`Hardpoint ${group[i].grp}:${id} ${group[i].name ? group[i].name : ''} is missing clip`); expect(group[i].clip).toBeDefined(`Hardpoint ${group[i].grp}:${id} ${group[i].name ? group[i].name : ''} is missing clip`);
expect(group[i].reload).toBeDefined(`Hardpoint ${group[i].grp}:${id} ${group[i].name ? group[i].name : ''} is missing reload`); expect(group[i].reload).toBeDefined(`Hardpoint ${group[i].grp}:${id} ${group[i].name ? group[i].name : ''} is missing reload`);
} }
ids[id] = true; ids[id] = true;
} }
@@ -171,6 +174,17 @@ describe('JSON Data', function() {
const blueprint = Modifications.blueprints[k]; const blueprint = Modifications.blueprints[k];
expect(ids[blueprint.id]).toBeFalsy('ID already exists: ' + blueprint.id); expect(ids[blueprint.id]).toBeFalsy('ID already exists: ' + blueprint.id);
expect(blueprint.name).toBeDefined('Blueprint has no name, ID:' + blueprint.id); expect(blueprint.name).toBeDefined('Blueprint has no name, ID:' + blueprint.id);
for (var x in blueprint.features) {
var b = blueprint.features[x];
var bfs = {};
for (var bf in b) {
expect(bfs[bf]).toBeFalsy(`Blueprint feature [${bf}] already exists: ${blueprint.name}`);
expect(Modifications.modifications[bf]).toBeDefined(`Blueprint feature [${bf}] uknown: ${blueprint.name}`);
bfs[bf] = true;
}
}
ids[blueprint.id] = true; ids[blueprint.id] = true;
} }
}); });
@@ -186,6 +200,7 @@ describe('JSON Data', function() {
expect(modification.method).toBeDefined('Modification has no method, ID:' + modification.id); expect(modification.method).toBeDefined('Modification has no method, ID:' + modification.id);
ids[modification.id] = true; ids[modification.id] = true;
} }
}); });
it('has valid specials', function() { it('has valid specials', function() {