Initial
This commit is contained in:
124
files/custom/README.md
Normal file
124
files/custom/README.md
Normal file
@@ -0,0 +1,124 @@
|
||||
# Custom Server Changes
|
||||
|
||||
## These are the custom integrations possible with dayzdockerserver
|
||||
|
||||
### Lowered login/logout time
|
||||
|
||||
To lower the login/logout time from the default 15 seconds.
|
||||
|
||||
Go into the server container:
|
||||
|
||||
```shell
|
||||
docker compose exec server bash
|
||||
```
|
||||
|
||||
Make a new directory in /profiles/custom called login and go into it:
|
||||
|
||||
```shell
|
||||
mkdir -p /profiles/custom/login
|
||||
cd /profiles/custom/login
|
||||
```
|
||||
|
||||
Generate a globals.xml with the changed values:
|
||||
|
||||
```shell
|
||||
cat > globals.xml << EOF
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||||
<variables>
|
||||
<var name="TimeLogin" type="0" value="1"/>
|
||||
<var name="TimeLogout" type="0" value="1"/>
|
||||
</variables>
|
||||
EOF
|
||||
```
|
||||
|
||||
Restart the server.
|
||||
|
||||
### No food
|
||||
|
||||
For a more survival-oriented experience, one can prevent food from spawning in the world, forcing players to hunt and fish for food.
|
||||
|
||||
Food still spawns on the infected and in containers. Any other mod that adds food will also be unaffected.
|
||||
|
||||
Go into the server container:
|
||||
|
||||
```shell
|
||||
docker compose exec server bash
|
||||
```
|
||||
|
||||
Make a new directory in /profiles/custom called no-food and go into it:
|
||||
|
||||
```shell
|
||||
mkdir -p /profiles/custom/no-food
|
||||
cd /profiles/custom/no-food
|
||||
```
|
||||
|
||||
Generate the types.xml override file from your current mpmissions type.xml (presumes dayzOffline.chernarusplus):
|
||||
|
||||
```shell
|
||||
xmlstarlet ed \
|
||||
-s / -t elem -n food \
|
||||
-m "/types/type[category[contains(@name, 'food')]]" "/food" \
|
||||
-d /types \
|
||||
-r food -v types \
|
||||
-u //nominal -v 0 \
|
||||
/serverfiles/mpmissions/dayzOffline.chernarusplus/db/types.xml \
|
||||
> types.xml
|
||||
```
|
||||
|
||||
Always lint any XML file that is created/merged (Any output from this command means there is a problem. No output means the XML file is valid):
|
||||
|
||||
```shell
|
||||
xmllint --noout types.xml
|
||||
```
|
||||
|
||||
Restart the server for the changes to take effect.
|
||||
|
||||
Explanation:
|
||||
* Start xmlstarlet in edit mode
|
||||
* Add a new XML node at the root named "food"
|
||||
* Move all `<type>` nodes where `<category name="...` has the word "food" in it to the new /food node
|
||||
* Delete the remaining `<types>` root node
|
||||
* Rename `<food>` to `<types>`
|
||||
* Set all remaining nodes to have `<nominal>0</nominal>`
|
||||
* Do this for every mpmissions types.xml file (dayzOffline.chernarusplus shown here)
|
||||
* Save it to a new types.xml file in the current directory, the one we made above.
|
||||
|
||||
This file will now serve as a types.xml override for all food items when the server starts!
|
||||
|
||||
Every directory under /profiles/custom will be added as a new Economy Core entry when the server is started.
|
||||
|
||||
### Change starting gear
|
||||
|
||||
To change player starting gear, using examples from [the BI DayZ Wiki](https://community.bistudio.com/wiki/DayZ:Spawning_Gear_Configuration):
|
||||
|
||||
Go into the server container:
|
||||
|
||||
```shell
|
||||
docker compose exec server bash
|
||||
```
|
||||
|
||||
Copy the custom integration directory:
|
||||
|
||||
```shell
|
||||
mkdir -p /profiles/custom
|
||||
cp -a /files/custom/starting-gear /profiles/custom/
|
||||
```
|
||||
|
||||
Restart the server.
|
||||
|
||||
### No personal light
|
||||
|
||||
The personal light is usually configured using the `disablePersonalLight` setting in [serverDZ.cfg](../serverDZ.cfg), but if a cfggameplay.json file is present, which is the default being employed for this project, that setting must be overridden there. To configure the personal light:
|
||||
|
||||
```shell
|
||||
mkdir -p /profiles/custom
|
||||
cp -a /files/custom/no-personal-light /profiles/custom
|
||||
```
|
||||
|
||||
Restart the server.
|
||||
|
||||
### References
|
||||
|
||||
[BI DayZ Wiki - Spawning Gear Configuration](https://community.bistudio.com/wiki/DayZ:Spawning_Gear_Configuration)
|
||||
|
||||
[BI DayZ Wiki - Central Economy Mission Files Modding](ttps://community.bistudio.com/wiki/DayZ:Central_Economy_mission_files_modding)
|
||||
5
files/custom/no-personal-light/cfggameplay.json
Normal file
5
files/custom/no-personal-light/cfggameplay.json
Normal file
@@ -0,0 +1,5 @@
|
||||
{
|
||||
"PlayerData": {
|
||||
"disablePersonalLight": true
|
||||
}
|
||||
}
|
||||
9
files/custom/starting-gear/cfggameplay.json
Normal file
9
files/custom/starting-gear/cfggameplay.json
Normal file
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"PlayerData":{
|
||||
"spawnGearPresetFiles": [
|
||||
"custom_starting-gear/medic.json",
|
||||
"custom_starting-gear/military.json",
|
||||
"custom_starting-gear/vanilla.json"
|
||||
]
|
||||
}
|
||||
}
|
||||
209
files/custom/starting-gear/medic.json
Normal file
209
files/custom/starting-gear/medic.json
Normal file
@@ -0,0 +1,209 @@
|
||||
{
|
||||
"spawnWeight": 1,
|
||||
"name": "medic",
|
||||
"attachmentSlotItemSets": [
|
||||
{
|
||||
"slotName": "shoulderR",
|
||||
"discreteItemSets": [
|
||||
{
|
||||
"itemType": "PipeWrench",
|
||||
"spawnWeight": 2,
|
||||
"attributes": {
|
||||
"healthMin": 0.5,
|
||||
"healthMax": 0.8,
|
||||
"quantityMin": 1.0,
|
||||
"quantityMax": 1.0
|
||||
},
|
||||
"quickBarSlot": 2
|
||||
},
|
||||
{
|
||||
"itemType": "Crowbar",
|
||||
"spawnWeight": 1,
|
||||
"attributes": {
|
||||
"healthMin": 0.5,
|
||||
"healthMax": 0.8
|
||||
},
|
||||
"quickBarSlot": 2
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"slotName": "Vest",
|
||||
"discreteItemSets": [
|
||||
{
|
||||
"itemType": "PressVest_LightBlue",
|
||||
"spawnWeight": 1,
|
||||
"attributes": {
|
||||
"healthMin": 1.0,
|
||||
"healthMax": 1.0,
|
||||
"quantityMin": 1.0,
|
||||
"quantityMax": 1.0
|
||||
},
|
||||
"quickBarSlot": -1
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"slotName": "Back",
|
||||
"discreteItemSets": [
|
||||
{
|
||||
"itemType": "TortillaBag",
|
||||
"spawnWeight": 1,
|
||||
"attributes": {
|
||||
"healthMin": 0.5,
|
||||
"healthMax": 0.8,
|
||||
"quantityMin": 1.0,
|
||||
"quantityMax": 1.0
|
||||
},
|
||||
"quickBarSlot": 1
|
||||
},
|
||||
{
|
||||
"itemType": "CoyoteBag_Green",
|
||||
"spawnWeight": 1,
|
||||
"attributes": {
|
||||
"healthMin": 0.5,
|
||||
"healthMax": 0.8,
|
||||
"quantityMin": 1.0,
|
||||
"quantityMax": 1.0
|
||||
},
|
||||
"quickBarSlot": 1
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"slotName": "Eyewear",
|
||||
"discreteItemSets": [
|
||||
{
|
||||
"itemType": "ThinFramesGlasses",
|
||||
"spawnWeight": 1,
|
||||
"attributes": {
|
||||
"healthMin": 1.0,
|
||||
"healthMax": 1.0,
|
||||
"quantityMin": 1.0,
|
||||
"quantityMax": 1.0
|
||||
},
|
||||
"quickBarSlot": -1
|
||||
},
|
||||
{
|
||||
"itemType": "",
|
||||
"spawnWeight": 1
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"slotName": "Body",
|
||||
"discreteItemSets": [
|
||||
{
|
||||
"itemType": "MedicalScrubsShirt_Blue",
|
||||
"spawnWeight": 1,
|
||||
"attributes": {
|
||||
"healthMin": 1.0,
|
||||
"healthMax": 1.0,
|
||||
"quantityMin": 1.0,
|
||||
"quantityMax": 1.0
|
||||
},
|
||||
"quickBarSlot": -1
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"slotName": "Legs",
|
||||
"discreteItemSets": [
|
||||
{
|
||||
"itemType": "MedicalScrubsPants_Blue",
|
||||
"spawnWeight": 1,
|
||||
"attributes": {
|
||||
"healthMin": 1.0,
|
||||
"healthMax": 1.0,
|
||||
"quantityMin": 1.0,
|
||||
"quantityMax": 1.0
|
||||
},
|
||||
"quickBarSlot": -1
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"slotName": "Feet",
|
||||
"discreteItemSets": [
|
||||
{
|
||||
"itemType": "WorkingBoots_Yellow",
|
||||
"spawnWeight": 1,
|
||||
"attributes": {
|
||||
"healthMin": 1.0,
|
||||
"healthMax": 1.0,
|
||||
"quantityMin": 1.0,
|
||||
"quantityMax": 1.0
|
||||
},
|
||||
"quickBarSlot": -1
|
||||
}
|
||||
]
|
||||
}
|
||||
],
|
||||
"discreteUnsortedItemSets": [
|
||||
{
|
||||
"name": "Medic Cargo 1",
|
||||
"spawnWeight": 1,
|
||||
"attributes": {
|
||||
"healthMin": 0.5,
|
||||
"healthMax": 1.0,
|
||||
"quantityMin": 0.6,
|
||||
"quantityMax": 0.8
|
||||
},
|
||||
"complexChildrenTypes": [
|
||||
{
|
||||
"itemType": "FirstAidKit",
|
||||
"attributes": {
|
||||
"healthMin": 0.7,
|
||||
"healthMax": 0.8,
|
||||
"quantityMin": 0.05,
|
||||
"quantityMax": 0.1
|
||||
},
|
||||
"quickBarSlot": 3,
|
||||
"simpleChildrenUseDefaultAttributes": false,
|
||||
"simpleChildrenTypes": [
|
||||
"BloodBagIV",
|
||||
"BandageDressing"
|
||||
]
|
||||
}
|
||||
],
|
||||
"simpleChildrenUseDefaultAttributes": false,
|
||||
"simpleChildrenTypes": [
|
||||
"Rag",
|
||||
"SheepSteakMeat"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "Medic Cargo 2",
|
||||
"spawnWeight": 1,
|
||||
"attributes": {
|
||||
"healthMin": 0.5,
|
||||
"healthMax": 1.0,
|
||||
"quantityMin": 0.6,
|
||||
"quantityMax": 0.8
|
||||
},
|
||||
"complexChildrenTypes": [
|
||||
{
|
||||
"itemType": "FirstAidKit",
|
||||
"attributes": {
|
||||
"healthMin": 0.7,
|
||||
"healthMax": 0.8,
|
||||
"quantityMin": 0.05,
|
||||
"quantityMax": 0.1
|
||||
},
|
||||
"quickBarSlot": 3,
|
||||
"simpleChildrenUseDefaultAttributes": false,
|
||||
"simpleChildrenTypes": [
|
||||
"TetracyclineAntibiotics",
|
||||
"BandageDressing"
|
||||
]
|
||||
}
|
||||
],
|
||||
"simpleChildrenUseDefaultAttributes": false,
|
||||
"simpleChildrenTypes": [
|
||||
"Canteen",
|
||||
"Rag",
|
||||
"Apple"
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
337
files/custom/starting-gear/military.json
Normal file
337
files/custom/starting-gear/military.json
Normal file
@@ -0,0 +1,337 @@
|
||||
{
|
||||
"spawnWeight": 1,
|
||||
"name": "Military - AKM",
|
||||
"characterTypes": [
|
||||
"SurvivorF_Judy",
|
||||
"SurvivorM_Lewis"
|
||||
],
|
||||
"attachmentSlotItemSets": [
|
||||
{
|
||||
"slotName": "shoulderL",
|
||||
"discreteItemSets": [
|
||||
{
|
||||
"itemType": "AKM",
|
||||
"spawnWeight": 3,
|
||||
"attributes": {
|
||||
"healthMin": 0.5,
|
||||
"healthMax": 1.0,
|
||||
"quantityMin": 1.0,
|
||||
"quantityMax": 1.0
|
||||
},
|
||||
"quickBarSlot": 1,
|
||||
"complexChildrenTypes": [
|
||||
{
|
||||
"itemType": "AK_PlasticBttstck",
|
||||
"attributes": {
|
||||
"healthMin": 0.4,
|
||||
"healthMax": 0.6,
|
||||
"quantityMin": 1.0,
|
||||
"quantityMax": 1.0
|
||||
},
|
||||
"quickBarSlot": -1
|
||||
},
|
||||
{
|
||||
"itemType": "PSO1Optic",
|
||||
"attributes": {
|
||||
"healthMin": 0.1,
|
||||
"healthMax": 0.2,
|
||||
"quantityMin": 1.0,
|
||||
"quantityMax": 1.0
|
||||
},
|
||||
"quickBarSlot": -1,
|
||||
"simpleChildrenUseDefaultAttributes": true,
|
||||
"simpleChildrenTypes": [
|
||||
"Battery9V"
|
||||
]
|
||||
},
|
||||
{
|
||||
"itemType": "Mag_AKM_30Rnd",
|
||||
"attributes": {
|
||||
"healthMin": 0.5,
|
||||
"healthMax": 0.5,
|
||||
"quantityMin": 1.0,
|
||||
"quantityMax": 1.0
|
||||
},
|
||||
"quickBarSlot": -1
|
||||
}
|
||||
],
|
||||
"simpleChildrenUseDefaultAttributes": false,
|
||||
"simpleChildrenTypes": [
|
||||
"AK_PlasticHndgrd",
|
||||
"AK_Bayonet"
|
||||
]
|
||||
},
|
||||
{
|
||||
"itemType": "AKM",
|
||||
"spawnWeight": 1,
|
||||
"attributes": {
|
||||
"healthMin": 1.0,
|
||||
"healthMax": 1.0,
|
||||
"quantityMin": 1.0,
|
||||
"quantityMax": 1.0
|
||||
},
|
||||
"quickBarSlot": 1,
|
||||
"complexChildrenTypes": [
|
||||
{
|
||||
"itemType": "AK_WoodBttstck",
|
||||
"attributes": {
|
||||
"healthMin": 1.0,
|
||||
"healthMax": 1.0,
|
||||
"quantityMin": 1.0,
|
||||
"quantityMax": 1.0
|
||||
},
|
||||
"quickBarSlot": -1
|
||||
},
|
||||
{
|
||||
"itemType": "PSO11Optic",
|
||||
"attributes": {
|
||||
"healthMin": 1.0,
|
||||
"healthMax": 1.0,
|
||||
"quantityMin": 1.0,
|
||||
"quantityMax": 1.0
|
||||
},
|
||||
"quickBarSlot": -1,
|
||||
"simpleChildrenUseDefaultAttributes": true,
|
||||
"simpleChildrenTypes": [
|
||||
"Battery9V"
|
||||
]
|
||||
},
|
||||
{
|
||||
"itemType": "Mag_AKM_30Rnd",
|
||||
"attributes": {
|
||||
"healthMin": 1.0,
|
||||
"healthMax": 1.0,
|
||||
"quantityMin": 1.0,
|
||||
"quantityMax": 1.0
|
||||
},
|
||||
"quickBarSlot": -1
|
||||
}
|
||||
],
|
||||
"simpleChildrenUseDefaultAttributes": false,
|
||||
"simpleChildrenTypes": [
|
||||
"AK_WoodHndgrd",
|
||||
"AK_Bayonet"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"slotName": "shoulderR",
|
||||
"discreteItemSets": [
|
||||
{
|
||||
"itemType": "BaseballBat",
|
||||
"spawnWeight": 2,
|
||||
"attributes": {
|
||||
"healthMin": 0.5,
|
||||
"healthMax": 0.8,
|
||||
"quantityMin": 1.0,
|
||||
"quantityMax": 1.0
|
||||
},
|
||||
"quickBarSlot": 2
|
||||
},
|
||||
{
|
||||
"itemType": "Shovel",
|
||||
"spawnWeight": 1,
|
||||
"attributes": {
|
||||
"healthMin": 0.5,
|
||||
"healthMax": 0.8
|
||||
},
|
||||
"quickBarSlot": 2
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"slotName": "Vest",
|
||||
"discreteItemSets": [
|
||||
{
|
||||
"itemType": "PlateCarrierVest",
|
||||
"spawnWeight": 1,
|
||||
"attributes": {
|
||||
"healthMin": 1.0,
|
||||
"healthMax": 1.0,
|
||||
"quantityMin": 1.0,
|
||||
"quantityMax": 1.0
|
||||
},
|
||||
"quickBarSlot": -1,
|
||||
"simpleChildrenUseDefaultAttributes": false,
|
||||
"simpleChildrenTypes": [
|
||||
"PlateCarrierHolster"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"slotName": "Back",
|
||||
"discreteItemSets": [
|
||||
{
|
||||
"itemType": "TaloonBag_Blue",
|
||||
"spawnWeight": 1,
|
||||
"attributes": {
|
||||
"healthMin": 0.5,
|
||||
"healthMax": 0.8,
|
||||
"quantityMin": 1.0,
|
||||
"quantityMax": 1.0
|
||||
},
|
||||
"quickBarSlot": 3,
|
||||
"simpleChildrenUseDefaultAttributes": false,
|
||||
"simpleChildrenTypes": [
|
||||
"Mag_AKM_Drum75Rnd"
|
||||
]
|
||||
},
|
||||
{
|
||||
"itemType": "TaloonBag_Orange",
|
||||
"spawnWeight": 1,
|
||||
"attributes": {
|
||||
"healthMin": 0.5,
|
||||
"healthMax": 0.8,
|
||||
"quantityMin": 1.0,
|
||||
"quantityMax": 1.0
|
||||
},
|
||||
"quickBarSlot": 3,
|
||||
"simpleChildrenUseDefaultAttributes": true,
|
||||
"simpleChildrenTypes": [
|
||||
"Mag_AKM_30Rnd",
|
||||
"Mag_AKM_30Rnd"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"slotName": "Eyewear",
|
||||
"discreteItemSets": [
|
||||
{
|
||||
"itemType": "AviatorGlasses",
|
||||
"spawnWeight": 1,
|
||||
"attributes": {
|
||||
"healthMin": 1.0,
|
||||
"healthMax": 1.0,
|
||||
"quantityMin": 1.0,
|
||||
"quantityMax": 1.0
|
||||
},
|
||||
"quickBarSlot": -1
|
||||
},
|
||||
{
|
||||
"itemType": "",
|
||||
"spawnWeight": 1
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"slotName": "Body",
|
||||
"discreteItemSets": [
|
||||
{
|
||||
"itemType": "GorkaEJacket_Flat",
|
||||
"spawnWeight": 1,
|
||||
"attributes": {
|
||||
"healthMin": 1.0,
|
||||
"healthMax": 1.0,
|
||||
"quantityMin": 1.0,
|
||||
"quantityMax": 1.0
|
||||
},
|
||||
"quickBarSlot": -1
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"slotName": "Legs",
|
||||
"discreteItemSets": [
|
||||
{
|
||||
"itemType": "GorkaPants_Flat",
|
||||
"spawnWeight": 1,
|
||||
"attributes": {
|
||||
"healthMin": 1.0,
|
||||
"healthMax": 1.0,
|
||||
"quantityMin": 1.0,
|
||||
"quantityMax": 1.0
|
||||
},
|
||||
"quickBarSlot": -1
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"slotName": "Feet",
|
||||
"discreteItemSets": [
|
||||
{
|
||||
"itemType": "MilitaryBoots_Bluerock",
|
||||
"spawnWeight": 1,
|
||||
"attributes": {
|
||||
"healthMin": 1.0,
|
||||
"healthMax": 1.0,
|
||||
"quantityMin": 1.0,
|
||||
"quantityMax": 1.0
|
||||
},
|
||||
"quickBarSlot": -1
|
||||
}
|
||||
]
|
||||
}
|
||||
],
|
||||
"discreteUnsortedItemSets": [
|
||||
{
|
||||
"name": "Obelix",
|
||||
"spawnWeight": 1,
|
||||
"attributes": {
|
||||
"healthMin": 0.5,
|
||||
"healthMax": 1.0,
|
||||
"quantityMin": 0.6,
|
||||
"quantityMax": 0.8
|
||||
},
|
||||
"complexChildrenTypes": [
|
||||
{
|
||||
"itemType": "Pot",
|
||||
"attributes": {
|
||||
"healthMin": 0.1,
|
||||
"healthMax": 0.8,
|
||||
"quantityMin": 0.1,
|
||||
"quantityMax": 0.1
|
||||
},
|
||||
"quickBarSlot": -1,
|
||||
"simpleChildrenUseDefaultAttributes": false,
|
||||
"simpleChildrenTypes": [
|
||||
"BoarSteakMeat",
|
||||
"BoarSteakMeat"
|
||||
]
|
||||
},
|
||||
{
|
||||
"itemType": "Mag_AKM_30Rnd",
|
||||
"attributes": {
|
||||
"healthMin": 0.1,
|
||||
"healthMax": 0.8,
|
||||
"quantityMin": 1.0,
|
||||
"quantityMax": 1.0
|
||||
},
|
||||
"quickBarSlot": -1
|
||||
}
|
||||
],
|
||||
"simpleChildrenUseDefaultAttributes": false,
|
||||
"simpleChildrenTypes": [
|
||||
"Rag",
|
||||
"BoarSteakMeat",
|
||||
"BoarSteakMeat",
|
||||
"BoarSteakMeat",
|
||||
"FNX45",
|
||||
"Mag_FNX45_15Rnd",
|
||||
"AmmoBox_45ACP_25rnd"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "Asterix",
|
||||
"spawnWeight": 1,
|
||||
"attributes": {
|
||||
"healthMin": 0.5,
|
||||
"healthMax": 1.0,
|
||||
"quantityMin": 0.6,
|
||||
"quantityMax": 0.8
|
||||
},
|
||||
"simpleChildrenUseDefaultAttributes": false,
|
||||
"simpleChildrenTypes": [
|
||||
"Canteen",
|
||||
"Rag",
|
||||
"Apple",
|
||||
"AmmoBox_762x39_20Rnd",
|
||||
"CZ75",
|
||||
"Mag_CZ75_15Rnd",
|
||||
"AmmoBox_9x19_25rnd"
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
769
files/custom/starting-gear/vanilla.json
Normal file
769
files/custom/starting-gear/vanilla.json
Normal file
@@ -0,0 +1,769 @@
|
||||
{
|
||||
"spawnWeight": 1,
|
||||
"name": "Player",
|
||||
"characterTypes": [
|
||||
"SurvivorM_Mirek",
|
||||
"SurvivorM_Boris",
|
||||
"SurvivorM_Cyril",
|
||||
"SurvivorM_Denis",
|
||||
"SurvivorM_Elias",
|
||||
"SurvivorM_Francis",
|
||||
"SurvivorM_Guo",
|
||||
"SurvivorM_Hassan",
|
||||
"SurvivorM_Indar",
|
||||
"SurvivorM_Jose",
|
||||
"SurvivorM_Kaito",
|
||||
"SurvivorM_Lewis",
|
||||
"SurvivorM_Manua",
|
||||
"SurvivorM_Niki",
|
||||
"SurvivorM_Oliver",
|
||||
"SurvivorM_Peter",
|
||||
"SurvivorM_Quinn",
|
||||
"SurvivorM_Rolf",
|
||||
"SurvivorM_Seth",
|
||||
"SurvivorM_Taiki",
|
||||
"SurvivorF_Eva",
|
||||
"SurvivorF_Frida",
|
||||
"SurvivorF_Gabi",
|
||||
"SurvivorF_Helga",
|
||||
"SurvivorF_Irena",
|
||||
"SurvivorF_Judy",
|
||||
"SurvivorF_Keiko",
|
||||
"SurvivorF_Linda",
|
||||
"SurvivorF_Maria",
|
||||
"SurvivorF_Naomi",
|
||||
"SurvivorF_Baty"
|
||||
],
|
||||
"attachmentSlotItemSets": [
|
||||
{
|
||||
"slotName": "Body",
|
||||
"discreteItemSets": [
|
||||
{
|
||||
"itemType": "TShirt_Beige",
|
||||
"spawnWeight": 1,
|
||||
"attributes": {
|
||||
"healthMin": 0.45,
|
||||
"healthMax": 0.65,
|
||||
"quantityMin": 1.0,
|
||||
"quantityMax": 1.0
|
||||
},
|
||||
"quickBarSlot": -1
|
||||
},
|
||||
{
|
||||
"itemType": "TShirt_Black",
|
||||
"spawnWeight": 1,
|
||||
"attributes": {
|
||||
"healthMin": 0.45,
|
||||
"healthMax": 0.65,
|
||||
"quantityMin": 1.0,
|
||||
"quantityMax": 1.0
|
||||
},
|
||||
"quickBarSlot": -1
|
||||
},
|
||||
{
|
||||
"itemType": "TShirt_Blue",
|
||||
"spawnWeight": 1,
|
||||
"attributes": {
|
||||
"healthMin": 0.45,
|
||||
"healthMax": 0.65,
|
||||
"quantityMin": 1.0,
|
||||
"quantityMax": 1.0
|
||||
},
|
||||
"quickBarSlot": -1
|
||||
},
|
||||
{
|
||||
"itemType": "TShirt_Green",
|
||||
"spawnWeight": 1,
|
||||
"attributes": {
|
||||
"healthMin": 0.45,
|
||||
"healthMax": 0.65,
|
||||
"quantityMin": 1.0,
|
||||
"quantityMax": 1.0
|
||||
},
|
||||
"quickBarSlot": -1
|
||||
},
|
||||
{
|
||||
"itemType": "TShirt_OrangeWhiteStripes",
|
||||
"spawnWeight": 1,
|
||||
"attributes": {
|
||||
"healthMin": 0.45,
|
||||
"healthMax": 0.65,
|
||||
"quantityMin": 1.0,
|
||||
"quantityMax": 1.0
|
||||
},
|
||||
"quickBarSlot": -1
|
||||
},
|
||||
{
|
||||
"itemType": "TShirt_Red",
|
||||
"spawnWeight": 1,
|
||||
"attributes": {
|
||||
"healthMin": 0.45,
|
||||
"healthMax": 0.65,
|
||||
"quantityMin": 1.0,
|
||||
"quantityMax": 1.0
|
||||
},
|
||||
"quickBarSlot": -1
|
||||
},
|
||||
{
|
||||
"itemType": "TShirt_RedBlackStripes",
|
||||
"spawnWeight": 1,
|
||||
"attributes": {
|
||||
"healthMin": 0.45,
|
||||
"healthMax": 0.65,
|
||||
"quantityMin": 1.0,
|
||||
"quantityMax": 1.0
|
||||
},
|
||||
"quickBarSlot": -1
|
||||
},
|
||||
{
|
||||
"itemType": "TShirt_White",
|
||||
"spawnWeight": 1,
|
||||
"attributes": {
|
||||
"healthMin": 0.45,
|
||||
"healthMax": 0.65,
|
||||
"quantityMin": 1.0,
|
||||
"quantityMax": 1.0
|
||||
},
|
||||
"quickBarSlot": -1
|
||||
},
|
||||
{
|
||||
"itemType": "TShirt_Grey",
|
||||
"spawnWeight": 1,
|
||||
"attributes": {
|
||||
"healthMin": 0.45,
|
||||
"healthMax": 0.65,
|
||||
"quantityMin": 1.0,
|
||||
"quantityMax": 1.0
|
||||
},
|
||||
"quickBarSlot": -1
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"slotName": "Legs",
|
||||
"discreteItemSets": [
|
||||
{
|
||||
"itemType": "CanvasPantsMidi_Beige",
|
||||
"spawnWeight": 1,
|
||||
"attributes": {
|
||||
"healthMin": 0.45,
|
||||
"healthMax": 0.65,
|
||||
"quantityMin": 1.0,
|
||||
"quantityMax": 1.0
|
||||
},
|
||||
"quickBarSlot": -1
|
||||
},
|
||||
{
|
||||
"itemType": "CanvasPantsMidi_Blue",
|
||||
"spawnWeight": 1,
|
||||
"attributes": {
|
||||
"healthMin": 0.45,
|
||||
"healthMax": 0.65,
|
||||
"quantityMin": 1.0,
|
||||
"quantityMax": 1.0
|
||||
},
|
||||
"quickBarSlot": -1
|
||||
},
|
||||
{
|
||||
"itemType": "CanvasPantsMidi_Grey",
|
||||
"spawnWeight": 1,
|
||||
"attributes": {
|
||||
"healthMin": 0.45,
|
||||
"healthMax": 0.65,
|
||||
"quantityMin": 1.0,
|
||||
"quantityMax": 1.0
|
||||
},
|
||||
"quickBarSlot": -1
|
||||
},
|
||||
{
|
||||
"itemType": "CanvasPantsMidi_Red",
|
||||
"spawnWeight": 1,
|
||||
"attributes": {
|
||||
"healthMin": 0.45,
|
||||
"healthMax": 0.65,
|
||||
"quantityMin": 1.0,
|
||||
"quantityMax": 1.0
|
||||
},
|
||||
"quickBarSlot": -1
|
||||
},
|
||||
{
|
||||
"itemType": "CanvasPantsMidi_Violet",
|
||||
"spawnWeight": 1,
|
||||
"attributes": {
|
||||
"healthMin": 0.45,
|
||||
"healthMax": 0.65,
|
||||
"quantityMin": 1.0,
|
||||
"quantityMax": 1.0
|
||||
},
|
||||
"quickBarSlot": -1
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"slotName": "Feet",
|
||||
"discreteItemSets": [
|
||||
{
|
||||
"itemType": "AthleticShoes_Black",
|
||||
"spawnWeight": 1,
|
||||
"attributes": {
|
||||
"healthMin": 0.45,
|
||||
"healthMax": 0.65,
|
||||
"quantityMin": 1.0,
|
||||
"quantityMax": 1.0
|
||||
},
|
||||
"quickBarSlot": -1
|
||||
},
|
||||
{
|
||||
"itemType": "AthleticShoes_Blue",
|
||||
"spawnWeight": 1,
|
||||
"attributes": {
|
||||
"healthMin": 0.45,
|
||||
"healthMax": 0.65,
|
||||
"quantityMin": 1.0,
|
||||
"quantityMax": 1.0
|
||||
},
|
||||
"quickBarSlot": -1
|
||||
},
|
||||
{
|
||||
"itemType": "AthleticShoes_Brown",
|
||||
"spawnWeight": 1,
|
||||
"attributes": {
|
||||
"healthMin": 0.45,
|
||||
"healthMax": 0.65,
|
||||
"quantityMin": 1.0,
|
||||
"quantityMax": 1.0
|
||||
},
|
||||
"quickBarSlot": -1
|
||||
},
|
||||
{
|
||||
"itemType": "AthleticShoes_Green",
|
||||
"spawnWeight": 1,
|
||||
"attributes": {
|
||||
"healthMin": 0.45,
|
||||
"healthMax": 0.65,
|
||||
"quantityMin": 1.0,
|
||||
"quantityMax": 1.0
|
||||
},
|
||||
"quickBarSlot": -1
|
||||
},
|
||||
{
|
||||
"itemType": "AthleticShoes_Grey",
|
||||
"spawnWeight": 1,
|
||||
"attributes": {
|
||||
"healthMin": 0.45,
|
||||
"healthMax": 0.65,
|
||||
"quantityMin": 1.0,
|
||||
"quantityMax": 1.0
|
||||
},
|
||||
"quickBarSlot": -1
|
||||
}
|
||||
]
|
||||
}
|
||||
],
|
||||
"discreteUnsortedItemSets": [
|
||||
{
|
||||
"name": "Cargo1",
|
||||
"spawnWeight": 1,
|
||||
"attributes": {
|
||||
"healthMin": 1.0,
|
||||
"healthMax": 1.0,
|
||||
"quantityMin": 1.0,
|
||||
"quantityMax": 1.0
|
||||
},
|
||||
"complexChildrenTypes": [
|
||||
{
|
||||
"itemType": "BandageDressing",
|
||||
"attributes": {
|
||||
"healthMin": 1.0,
|
||||
"healthMax": 1.0,
|
||||
"quantityMin": 1.0,
|
||||
"quantityMax": 1.0
|
||||
},
|
||||
"quickBarSlot": 2
|
||||
},
|
||||
{
|
||||
"itemType": "Chemlight_Red",
|
||||
"attributes": {
|
||||
"healthMin": 1.0,
|
||||
"healthMax": 1.0,
|
||||
"quantityMin": 1.0,
|
||||
"quantityMax": 1.0
|
||||
},
|
||||
"quickBarSlot": 1
|
||||
},
|
||||
{
|
||||
"itemType": "Pear",
|
||||
"attributes": {
|
||||
"healthMin": 1.0,
|
||||
"healthMax": 1.0,
|
||||
"quantityMin": 1.0,
|
||||
"quantityMax": 1.0
|
||||
},
|
||||
"quickBarSlot": 3
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "Cargo2",
|
||||
"spawnWeight": 1,
|
||||
"attributes": {
|
||||
"healthMin": 1.0,
|
||||
"healthMax": 1.0,
|
||||
"quantityMin": 1.0,
|
||||
"quantityMax": 1.0
|
||||
},
|
||||
"complexChildrenTypes": [
|
||||
{
|
||||
"itemType": "BandageDressing",
|
||||
"attributes": {
|
||||
"healthMin": 1.0,
|
||||
"healthMax": 1.0,
|
||||
"quantityMin": 1.0,
|
||||
"quantityMax": 1.0
|
||||
},
|
||||
"quickBarSlot": 2
|
||||
},
|
||||
{
|
||||
"itemType": "Chemlight_Green",
|
||||
"attributes": {
|
||||
"healthMin": 1.0,
|
||||
"healthMax": 1.0,
|
||||
"quantityMin": 1.0,
|
||||
"quantityMax": 1.0
|
||||
},
|
||||
"quickBarSlot": 1
|
||||
},
|
||||
{
|
||||
"itemType": "Pear",
|
||||
"attributes": {
|
||||
"healthMin": 1.0,
|
||||
"healthMax": 1.0,
|
||||
"quantityMin": 1.0,
|
||||
"quantityMax": 1.0
|
||||
},
|
||||
"quickBarSlot": 3
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "Cargo3",
|
||||
"spawnWeight": 1,
|
||||
"attributes": {
|
||||
"healthMin": 1.0,
|
||||
"healthMax": 1.0,
|
||||
"quantityMin": 1.0,
|
||||
"quantityMax": 1.0
|
||||
},
|
||||
"complexChildrenTypes": [
|
||||
{
|
||||
"itemType": "BandageDressing",
|
||||
"attributes": {
|
||||
"healthMin": 1.0,
|
||||
"healthMax": 1.0,
|
||||
"quantityMin": 1.0,
|
||||
"quantityMax": 1.0
|
||||
},
|
||||
"quickBarSlot": 2
|
||||
},
|
||||
{
|
||||
"itemType": "Chemlight_Yellow",
|
||||
"attributes": {
|
||||
"healthMin": 1.0,
|
||||
"healthMax": 1.0,
|
||||
"quantityMin": 1.0,
|
||||
"quantityMax": 1.0
|
||||
},
|
||||
"quickBarSlot": 1
|
||||
},
|
||||
{
|
||||
"itemType": "Pear",
|
||||
"attributes": {
|
||||
"healthMin": 1.0,
|
||||
"healthMax": 1.0,
|
||||
"quantityMin": 1.0,
|
||||
"quantityMax": 1.0
|
||||
},
|
||||
"quickBarSlot": 3
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "Cargo4",
|
||||
"spawnWeight": 1,
|
||||
"attributes": {
|
||||
"healthMin": 1.0,
|
||||
"healthMax": 1.0,
|
||||
"quantityMin": 1.0,
|
||||
"quantityMax": 1.0
|
||||
},
|
||||
"complexChildrenTypes": [
|
||||
{
|
||||
"itemType": "BandageDressing",
|
||||
"attributes": {
|
||||
"healthMin": 1.0,
|
||||
"healthMax": 1.0,
|
||||
"quantityMin": 1.0,
|
||||
"quantityMax": 1.0
|
||||
},
|
||||
"quickBarSlot": 2
|
||||
},
|
||||
{
|
||||
"itemType": "Chemlight_White",
|
||||
"attributes": {
|
||||
"healthMin": 1.0,
|
||||
"healthMax": 1.0,
|
||||
"quantityMin": 1.0,
|
||||
"quantityMax": 1.0
|
||||
},
|
||||
"quickBarSlot": 1
|
||||
},
|
||||
{
|
||||
"itemType": "Pear",
|
||||
"attributes": {
|
||||
"healthMin": 1.0,
|
||||
"healthMax": 1.0,
|
||||
"quantityMin": 1.0,
|
||||
"quantityMax": 1.0
|
||||
},
|
||||
"quickBarSlot": 3
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "Cargo5",
|
||||
"spawnWeight": 1,
|
||||
"attributes": {
|
||||
"healthMin": 1.0,
|
||||
"healthMax": 1.0,
|
||||
"quantityMin": 1.0,
|
||||
"quantityMax": 1.0
|
||||
},
|
||||
"complexChildrenTypes": [
|
||||
{
|
||||
"itemType": "BandageDressing",
|
||||
"attributes": {
|
||||
"healthMin": 1.0,
|
||||
"healthMax": 1.0,
|
||||
"quantityMin": 1.0,
|
||||
"quantityMax": 1.0
|
||||
},
|
||||
"quickBarSlot": 2
|
||||
},
|
||||
{
|
||||
"itemType": "Chemlight_Red",
|
||||
"attributes": {
|
||||
"healthMin": 1.0,
|
||||
"healthMax": 1.0,
|
||||
"quantityMin": 1.0,
|
||||
"quantityMax": 1.0
|
||||
},
|
||||
"quickBarSlot": 1
|
||||
},
|
||||
{
|
||||
"itemType": "Plum",
|
||||
"attributes": {
|
||||
"healthMin": 1.0,
|
||||
"healthMax": 1.0,
|
||||
"quantityMin": 1.0,
|
||||
"quantityMax": 1.0
|
||||
},
|
||||
"quickBarSlot": 3
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "Cargo6",
|
||||
"spawnWeight": 1,
|
||||
"attributes": {
|
||||
"healthMin": 1.0,
|
||||
"healthMax": 1.0,
|
||||
"quantityMin": 1.0,
|
||||
"quantityMax": 1.0
|
||||
},
|
||||
"complexChildrenTypes": [
|
||||
{
|
||||
"itemType": "BandageDressing",
|
||||
"attributes": {
|
||||
"healthMin": 1.0,
|
||||
"healthMax": 1.0,
|
||||
"quantityMin": 1.0,
|
||||
"quantityMax": 1.0
|
||||
},
|
||||
"quickBarSlot": 2
|
||||
},
|
||||
{
|
||||
"itemType": "Chemlight_Green",
|
||||
"attributes": {
|
||||
"healthMin": 1.0,
|
||||
"healthMax": 1.0,
|
||||
"quantityMin": 1.0,
|
||||
"quantityMax": 1.0
|
||||
},
|
||||
"quickBarSlot": 1
|
||||
},
|
||||
{
|
||||
"itemType": "Plum",
|
||||
"attributes": {
|
||||
"healthMin": 1.0,
|
||||
"healthMax": 1.0,
|
||||
"quantityMin": 1.0,
|
||||
"quantityMax": 1.0
|
||||
},
|
||||
"quickBarSlot": 3
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "Cargo7",
|
||||
"spawnWeight": 1,
|
||||
"attributes": {
|
||||
"healthMin": 1.0,
|
||||
"healthMax": 1.0,
|
||||
"quantityMin": 1.0,
|
||||
"quantityMax": 1.0
|
||||
},
|
||||
"complexChildrenTypes": [
|
||||
{
|
||||
"itemType": "BandageDressing",
|
||||
"attributes": {
|
||||
"healthMin": 1.0,
|
||||
"healthMax": 1.0,
|
||||
"quantityMin": 1.0,
|
||||
"quantityMax": 1.0
|
||||
},
|
||||
"quickBarSlot": 2
|
||||
},
|
||||
{
|
||||
"itemType": "Chemlight_Yellow",
|
||||
"attributes": {
|
||||
"healthMin": 1.0,
|
||||
"healthMax": 1.0,
|
||||
"quantityMin": 1.0,
|
||||
"quantityMax": 1.0
|
||||
},
|
||||
"quickBarSlot": 1
|
||||
},
|
||||
{
|
||||
"itemType": "Plum",
|
||||
"attributes": {
|
||||
"healthMin": 1.0,
|
||||
"healthMax": 1.0,
|
||||
"quantityMin": 1.0,
|
||||
"quantityMax": 1.0
|
||||
},
|
||||
"quickBarSlot": 3
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "Cargo8",
|
||||
"spawnWeight": 1,
|
||||
"attributes": {
|
||||
"healthMin": 1.0,
|
||||
"healthMax": 1.0,
|
||||
"quantityMin": 1.0,
|
||||
"quantityMax": 1.0
|
||||
},
|
||||
"complexChildrenTypes": [
|
||||
{
|
||||
"itemType": "BandageDressing",
|
||||
"attributes": {
|
||||
"healthMin": 1.0,
|
||||
"healthMax": 1.0,
|
||||
"quantityMin": 1.0,
|
||||
"quantityMax": 1.0
|
||||
},
|
||||
"quickBarSlot": 2
|
||||
},
|
||||
{
|
||||
"itemType": "Chemlight_White",
|
||||
"attributes": {
|
||||
"healthMin": 1.0,
|
||||
"healthMax": 1.0,
|
||||
"quantityMin": 1.0,
|
||||
"quantityMax": 1.0
|
||||
},
|
||||
"quickBarSlot": 1
|
||||
},
|
||||
{
|
||||
"itemType": "Plum",
|
||||
"attributes": {
|
||||
"healthMin": 1.0,
|
||||
"healthMax": 1.0,
|
||||
"quantityMin": 1.0,
|
||||
"quantityMax": 1.0
|
||||
},
|
||||
"quickBarSlot": 3
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "Cargo9",
|
||||
"spawnWeight": 1,
|
||||
"attributes": {
|
||||
"healthMin": 1.0,
|
||||
"healthMax": 1.0,
|
||||
"quantityMin": 1.0,
|
||||
"quantityMax": 1.0
|
||||
},
|
||||
"complexChildrenTypes": [
|
||||
{
|
||||
"itemType": "BandageDressing",
|
||||
"attributes": {
|
||||
"healthMin": 1.0,
|
||||
"healthMax": 1.0,
|
||||
"quantityMin": 1.0,
|
||||
"quantityMax": 1.0
|
||||
},
|
||||
"quickBarSlot": 2
|
||||
},
|
||||
{
|
||||
"itemType": "Chemlight_Red",
|
||||
"attributes": {
|
||||
"healthMin": 1.0,
|
||||
"healthMax": 1.0,
|
||||
"quantityMin": 1.0,
|
||||
"quantityMax": 1.0
|
||||
},
|
||||
"quickBarSlot": 1
|
||||
},
|
||||
{
|
||||
"itemType": "Apple",
|
||||
"attributes": {
|
||||
"healthMin": 1.0,
|
||||
"healthMax": 1.0,
|
||||
"quantityMin": 1.0,
|
||||
"quantityMax": 1.0
|
||||
},
|
||||
"quickBarSlot": 3
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "Cargo10",
|
||||
"spawnWeight": 1,
|
||||
"attributes": {
|
||||
"healthMin": 1.0,
|
||||
"healthMax": 1.0,
|
||||
"quantityMin": 1.0,
|
||||
"quantityMax": 1.0
|
||||
},
|
||||
"complexChildrenTypes": [
|
||||
{
|
||||
"itemType": "BandageDressing",
|
||||
"attributes": {
|
||||
"healthMin": 1.0,
|
||||
"healthMax": 1.0,
|
||||
"quantityMin": 1.0,
|
||||
"quantityMax": 1.0
|
||||
},
|
||||
"quickBarSlot": 2
|
||||
},
|
||||
{
|
||||
"itemType": "Chemlight_Green",
|
||||
"attributes": {
|
||||
"healthMin": 1.0,
|
||||
"healthMax": 1.0,
|
||||
"quantityMin": 1.0,
|
||||
"quantityMax": 1.0
|
||||
},
|
||||
"quickBarSlot": 1
|
||||
},
|
||||
{
|
||||
"itemType": "Apple",
|
||||
"attributes": {
|
||||
"healthMin": 1.0,
|
||||
"healthMax": 1.0,
|
||||
"quantityMin": 1.0,
|
||||
"quantityMax": 1.0
|
||||
},
|
||||
"quickBarSlot": 3
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "Cargo11",
|
||||
"spawnWeight": 1,
|
||||
"attributes": {
|
||||
"healthMin": 1.0,
|
||||
"healthMax": 1.0,
|
||||
"quantityMin": 1.0,
|
||||
"quantityMax": 1.0
|
||||
},
|
||||
"complexChildrenTypes": [
|
||||
{
|
||||
"itemType": "BandageDressing",
|
||||
"attributes": {
|
||||
"healthMin": 1.0,
|
||||
"healthMax": 1.0,
|
||||
"quantityMin": 1.0,
|
||||
"quantityMax": 1.0
|
||||
},
|
||||
"quickBarSlot": 2
|
||||
},
|
||||
{
|
||||
"itemType": "Chemlight_Yellow",
|
||||
"attributes": {
|
||||
"healthMin": 1.0,
|
||||
"healthMax": 1.0,
|
||||
"quantityMin": 1.0,
|
||||
"quantityMax": 1.0
|
||||
},
|
||||
"quickBarSlot": 1
|
||||
},
|
||||
{
|
||||
"itemType": "Apple",
|
||||
"attributes": {
|
||||
"healthMin": 1.0,
|
||||
"healthMax": 1.0,
|
||||
"quantityMin": 1.0,
|
||||
"quantityMax": 1.0
|
||||
},
|
||||
"quickBarSlot": 3
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "Cargo12",
|
||||
"spawnWeight": 1,
|
||||
"attributes": {
|
||||
"healthMin": 1.0,
|
||||
"healthMax": 1.0,
|
||||
"quantityMin": 1.0,
|
||||
"quantityMax": 1.0
|
||||
},
|
||||
"complexChildrenTypes": [
|
||||
{
|
||||
"itemType": "BandageDressing",
|
||||
"attributes": {
|
||||
"healthMin": 1.0,
|
||||
"healthMax": 1.0,
|
||||
"quantityMin": 1.0,
|
||||
"quantityMax": 1.0
|
||||
},
|
||||
"quickBarSlot": 2
|
||||
},
|
||||
{
|
||||
"itemType": "Chemlight_White",
|
||||
"attributes": {
|
||||
"healthMin": 1.0,
|
||||
"healthMax": 1.0,
|
||||
"quantityMin": 1.0,
|
||||
"quantityMax": 1.0
|
||||
},
|
||||
"quickBarSlot": 1
|
||||
},
|
||||
{
|
||||
"itemType": "Apple",
|
||||
"attributes": {
|
||||
"healthMin": 1.0,
|
||||
"healthMax": 1.0,
|
||||
"quantityMin": 1.0,
|
||||
"quantityMax": 1.0
|
||||
},
|
||||
"quickBarSlot": 3
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
Reference in New Issue
Block a user