Valens-AIO/config/ts/ammo.ts
VforValens 065c5098b9 v1.4.0 Changelog
* Bugfixes for non-working features
* Code Refactor, and cleanup
* Separated out all instances of the config files to their own separate entities. DebugMode is the only entity existing within the original config.json which will enable logging in the server for every feature enabled.
* Removed Progression from the AIO and separated it out to its own individual modification.

New Features
* Added SMG In Holsters to Weapons.json
* Added Skill Progression/Fatigue rates to Skills.json
* Added Remove Discard Limit, and Remove Item Restrictions to Items.json
* Reworked Insurance, and added minHr, maxHr, and storageMaxHr alongside the previously existing priceCoefficient, and returnChance in Insurance.json
* Added Armor Materials to Armor.json
2022-08-17 17:51:28 -04:00

32 lines
551 B
TypeScript

export interface AmmoConfig
{
stacks: Ammo
}
export interface Ammo
{
grenades: number
a338Lapua: number
a127x55: number
a762x54: number
a762x51: number
a9x39: number
a366TKM: number
a762x39: number
a762x35: number
a556x45: number
a545x39: number
a57x28: number
a46x30: number
a357Mag: number
a1143x23ACP: number
a762x25: number
a9x21: number
a9x19: number
a9x18: number
a23x75: number
a12Gauge: number
a20Gauge: number
a30x29: number
a26x75: number
}