XML
XML
=====================================================================
=====================================================================
=====================================================================
File: BLOCKS.XML
Use of "Extends" in blocks.xml:
Farming / Harvest yield of farmed crops.
Trees growing to variable sizes depending on the soil.
Upgrade and hit sounds
Upgrade and hit sounds from textures
Transparent / cutout meshes and frame blocks
Global UV for dummies (A16)
Blocks and light and plants.
Textures and the map.
Block default placement: Place + HandleFace
Upgrading and downgrading to random block targets.
(A17) SortOrder / Sort Order on the Creative menu.
<property name="EconomicValue" value="xxx" /> (integer)
File: LOOT.XML
Optional attributes of a lootcontainer:
File: ITEMS.XML
UMA Slots
GENERAL computational order for determining effects and their magnitude, order of
operations (OOO)
Weather survival / temperature rebalance
Items can be excluded from underwater use.
How armor works in A19
(Weapon) Degradation rate:
Ballistic weapons with bullet drop.
File: RECIPES.XML
File: PROGRESSION.XML
File: BUFFS.XML
Icons usable for buffs:
File: BIOMES.XML
Icons for blocks and items:
Armor value templates:
File: SOUNDS.XML
File: ENTITYCLASSES.XML
Wandering Hordes / Gamestage
Imposters / Distant POI
Sleepers
(A17) Stealth
(A17) ISS - Integrated Survival System
(A17) Weapons / mods
(A17) Computational order for generating damage:
(A17) Falling block / falling blocks damage / cave ins
(A17) Screen effects and particles
<!-- Template for adding a new shape to main building blocks
=====================================================================
=====================================================================
What this does is that the creative menu can display different sets of blocks in
"player" and "dev/level builder" view mode.
"Test" items are only enabled in the Unity editor AND if the Dev button is active
in the creative menu.
If you turn on the "dev button" on the creative menu you always see both "dev" and
"player".
"None" means no display ever. Like for master blocks that are not to be used
directly.
The property itself is not inherited by "Extends" so all child blocks / items
remain visible.
=====================================================================
=====================================================================
File: BLOCKS.XML
The block naming convention for "basic" blocks (with interchangeable textures) is
[material|look|texture] [shape] [extra properties if needed]
Example
awningRedBlock
rebarFrameRamp
rConcreteCNRFull
rConcretePlate
curtainBottomSheet01
sandTRN
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NOTE: This plan was implemented only partially (tree, cnt) - maybe some day... or
another system will be used.
I'll leave it in for future reference. Gazz
[Type]:
This allows you to filter by categories, such as "find me all trees". It doesn't
break the full text search.
Example
MDLdrwSteelDoor1_v1
MDLfntSchooldesk
MDLcntCooler
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
If you extend a wooden door that is repaired with wood, then use that to make a
metal door...
the metal door will require the wood in addition to the metal repair materials you
assign.
Blocks using extends now do give the resources from the parent's destroy event.
If a block is using extends, but has its own destroy event, it will use that one
instead.
Sure, you can do it but then the texture atlas cannot be baked because the block
inherits properties that it shouldn't.
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Selective "Extends"
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
A placed bedroll ("your" bedroll, not any that exists) works like a claim stone.
It blocks zombie spawns in a rectangular area of 31x31 meters from bedrock to sky.
(that's 15 + 1 + 15m)
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
count="min,max" specifies the min/max count, prob="x" specifies if ANY are dropped
with this probability.
This is only applied to the very last destroy event on a block.
It cannot be used on a harvest event as here the total amount has to be fixed.
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Either completely avoid blocks falling "as themselves" or assign a stick chance <1
so it would eventually give up and poof.
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Collision masks
These are functionally identical. Only the start of the string is checked.
Personal preference:
In *my* opinion you should be allowed to shoot arrows through those if bullets fit.
If you agree you can remove all occurrences of this with one search&replace.
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Butcher tools are currently not supported in blocks.
Maybe later. Not a priority.
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Disassembling (wrench)
Both harvest and destroy events can be limited to only fire if the correct tool is
used.
Note that you do NOT get the "disassemble" animation with just a destroy event.
You need to do it this way:
<drop event="Harvest" name="" count="0" tool_category="Disassemble" />
<drop event="Destroy" name="workbench" count="1"
tool_category="Disassemble" />
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Unfortunately it was a bit short on the max duration so couldn't actually be used
for anything.
Now, when using PlantGrowing.IsRandom the max value for PlantGrowing.GrowthRate has
been increased to 63.
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
(A15) On destruction, blocks with "MultiBlockDim" are properly cleaned up, leaving
no invisible support blocks in mid-air. (Sorry! =)
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
When you upgrade a block then the tool plays a sound on every hit.
This sound is from the material value of the upgrade RESOURCE.
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
If one is given, the sound attached to the texture in blocktextures (and baked into
that other file I cant remember)
WILL play when this block is hit, overriding the block's material assignment.
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
This marks the block as a frame so in the code it sends a multiplier to the inside
rendering to either happen or not.
If the property is there then it will render the back faces of the geo, shrink it
slightly (so z-fighting doesn't happen), and flip the normals to point inside.
Related:
*Changed: Defaulted transparent blocks to have no backface culling per Joel�s
request for glass blocks.
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
WTF is that?
It means that if a texture is "global", the block texture will ALWAYS display with
the same side up
even if the block is rotated in a way that would display this side upside down or
to the right.
On some faces (the steps of stairs) this is not desired because they would look
wrong in some rotations. There you set it to local.
A16 features all new UV code so in principle it does not matter at all which "side"
is actually facing which way.
The only blocks that were set to local UV are those that do NOT match any adjacent
(other) blocks that they might touch.
Like poles, supports or pillars.
Their texture would never "continue on an adjacent block" and for diagonal polesthe
wood texture might as well "run the right way".
So these use the local override on the block.
PS: Normal people don't need to know any of these weird graphics shenanigans so
don't worry about it.
I'm only documenting this for a handful of crazies.
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
While
\Assets\Textures\Blocks\blocktextures.xml
controls the setup (global/local) per texture, it does not directly affect the
game.
and *that* file is what makes the textures use a default of local/global ingame.
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
This means the corn will not get any "AO light" at the base of the trunk and thus
"die" instantly after planting.
Also, a block uses the higher LightOpacity value of MATERIAL and SHAPE
...and Shape="new" always has LightOpacity="255".
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
If the light is reduced by traveling through a block with LightOpacity="6" then the
light value below this block is 9.
Every square that light has to travel "sideways" to reach the block subtracts 1.
There may also be a max distance that light can travel horizontally.
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
The "top" face of a block determines the pixel colour that it displays on the map
UI.
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Place overrides HandleFace so you can only have one or the other.
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
We changed the display order on the creative menu from "blindfold and dartboard" to
something more organised.
The reason for this split is that major groups like "brick blocks" can extend their
SortOrder1 from the master material block.
Individual shapes have their own specific SortOrder2.
That makes the system modular and gives me fewer headaches.
1. Category:
<property name="SortOrder1" value="A0003"/>
This is the "main group" and material.
t Wood Frames
u Scrap Frames
v Rebar Frames
f terrain: stone
h terrain: ores / clay
k terrain: dirt
m terrain: snow / sand / sandstone
o terrain: radiated / destroyed / debris / bedrock
3 decals
6 Doors & Hatches
8 Windows / curtains
a Lighting / Hardware
c cables
e control panels, fuse boxes
g Traps
i Workstations
k Furniture / faucets
m Fences, railings, road railings
o sandbags
s Signs
t Specific Navezgane signs
2 Tool
4 Weapons Melee
6 Weapons Bow
8 Weapons Ranged
a Ammo
c Thrown/Explosives
e Armor Light
f Armor Heavy
h Clothing
j Food
l Drink
n Medical
p Workstation upgrades like Cooking Pot
r Skill unlock books like painting
t Special
v (Weapon) Parts
x Resource
2. Category:
<property name="SortOrder2" value="A0003"/>
This is the "sub group". Could be the block SHAPE or a clothing TYPE like
shirt vs pants.
Sort order for standard building shapes:
0050 cube
0051 cube with 1 broken tile on top
0053 cube with 1 baseboard
0054 cube with 4 baseboard
0055 cube with 1 chair rail, cornerstones
0056 cube with 4 chair rail
00561 cube_trim_half_split
00562 cube_trim_half_split_diagonal
00563 cube_trim_half_split_4sided
00564 cube_trim_quarter_edge
00565 cube_trim_quarter_edge_twosided
00566 cube_trim_quarter_corner_inside
00566 cube_trim_quarter_corner_inside_triangle
00567 cube_trim_quarter_corner_outside
00568 cube_trim_quarter_corner_outside_twosided
00569 cube_trim_quarter_corner_outside_triangle
0060 half
0060 half ctr
0061 HalfRampStairs50
0062 HalfRampStairs50Filler
0063 woodHalfCNRInside2
0064 cube_half_trim_half_split
0070 quarter
0071 CTRQuarter
0080 q corner
0090 q 3way
0091 Half3Quarter, half_inside_corner
0092 QuarterCNRQuarterPlate, wedge_tip_stairs_quarter_pole
0110 q T S Sctr
0110 q T ctr
0140 1/8
0142 1/8 CTR
0150 plate
0150 Plate_pole
0151 corner_round_plate
0152 plate_corner, 2PlateCorner
0160 ctr plate
0170 half plate
0171 plate offset
0180 sheet / billboard
0181-0184 bent sheets
0200 ramp
0201 ramp incline
0202 ramp incline fillers & corners
0204 cube_trim_quarter_ramp
0210 full corner
0220 inside corner
0230 ramp corner cnrramp
0240 ramp cnr filler
0250 gable
0255 gable_inverted_half
0260 pyramid
0265 gable_pyramid
0280 wedgetip
0290 wedge
0300 wedge full corner bott
0310 top
0320 steep crnn base
0330 top
0340 wedge inside corner bott
0350 top
0360 wedge steep inside crnr base
0370 top
0371 Wedge Incline Corner Top
0375 Wedge Narrow 1 Tip 11.25�
0376 Wedge Narrow 2 Low
0377 Wedge Narrow 3 Mid
0378 Wedge Narrow 4 High
0390 GableQuarter
0391 Gable3Quarter
0400 g inverted quarter
0410 gable 1m
0420 g inverted steep
0430 pyramid 1m
0440 wedge incline
0520 WindowArch3MCNR
0521 WindowArch3MCTR
0522 WindowArch3MTip
0530 stairs 25
0540 rail left
0550 rail right
0560 corner
0570 wedge stairs bottom
0580 top
0590 Stairs50
0610 StairsBoard
0620 StairsBoardRailing
0640 Catwalk
0650 CatwalkRailing
0660 CatwalkRailingCNR
0670 CatwalkWedge
0680 CatwalkWedgeRailing
0690 Railing
0700-0705 Trussing Block
0710 IBeams
0780 pole
0790 ctr pole
0800 pole S ctr
0860 cross
0870 cross ctr
=====================================================================
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Block Attributes:
"count"
"event"
"id"
"name"
"prob"
"stick_chance"
"tool_category"
Keys:
"ActionSkillGroup"
"ActiveRadiusEffects"
"BigDecorationRadius"
"BuffsWhenWalkedOn"
"CanDecorateOnSlopes"
"CanMobsSpawnOn"
"CanPickup"
"CanPlayersSpawnOn"
"Class"
"Collide"
"Count"
"CraftComponentExpValue"
"CraftComponentTimeValue"
"CraftingSkillGroup"
"CustomIcon"
"Density"
"DescriptionKey"
"DestroyExpValue"
"DowngradeBlock"
"EconomicValue"
"EconomicBundleSize"
"Extends"
"FallDamage"
"FuelValue"
"Group"
"HeatMapFrequency"
"HeatMapStrength"
"HeatMapTime"
"IndexName"
"IsDeveloper"
"IsPlant"
"IsTerrainDecoration"
"LPHardnessScale"
"Light"
"LightOpacity"
"LootExpValue"
"Map.Color"
"Map.Color2"
"Map.ElevMinMax"
"Map.Specular"
"MaxDamage"
"Mesh"
"MovementFactor"
"MultiBlockDim"
"MultiBlockLayer"
"PickupSource"
"PickupTarget"
"Place"
"PlaceAltBlockValue"
"PlaceExpValue"
"PlacementWireframe"
"RepairItems"
"RotationAllowed"
"Shape"
"ShapeMinBB"
"ShowModelOnFall"
"SiblingBlock"
"SmallDecorationRadius"
"StabilitySupport"
"Stacknumber"
"Tag"
"Texture"
"UpgradeBlock.ToBlock"
"UpgradeExpValue"
"Weight"
=====================================================================
=====================================================================
<property name="EconomicValue" value="xxx" /> (integer)
"EconomicBundleSize" :
Was put in because the coder did not want a float there. =)
A trader will trade this many items as the smallest bundle. You won't be able to
sell a single small rock.
The "EconomicValue" applies to the bundle.
The price of an assembled item (gun) is equal to the sum of it's parts.
First step was to figure out *some* rules to get some consistency into this and not
having to reinvent the wheel for every item.
Forge required.
Resource value x 1.2
Common tool required. Cooking pot or grill - essentially free with a forge so does
not stack with that bonus.
Resource value x 1.2
5 brassScrap
.5 paper
.005 rockSmall
.005 crushedSand
.002 clay / dirtFragment
.05 unitIron
.2 unitLead
1 unitBrass
.25 ironScrap
.6 forgedIron
1.6 forgedSteel
1 leadScrap
.005 yuccaFibers
.4 coal
.4 potassiumNitratePowder
1.5 bulletCasing
.24 bulletTip
1.6 gunPowder
.48 buckshot
.0072 cement
.25 cloth
3.5 ductTape
.3 emptyJar
1.5 bottledWater
1.5 femur
24 for 100 gasCan
1 animalFat
1.5 bioFuel
1.2 tallow
2.4 grainAlcohol
.1 feather
1 rawMeat
1 egg
.1 corn / potato / blueberry / goldenrod / cotton
.5 mushrooms
1 animalHide
1.1 leather
5 oil
.11 ironArrowHead
.37 steelArrowHead
12 spring
12 headlight
=====================================================================
=====================================================================
File: LOOT.XML
A loot container defines a list of items and/or lootgroups, a count, and a size
configuration.
The size configuration is the strict limit on the what the container can hold, and
this limit can be reached even if
your container specifies a much smaller count value.
The loot containers count value specified how many if the items in the containers
loot list should be selected randomly.
NOTE: that the same item could be chosen more than one time.
If the chosen item is an item then the item is spawned into the conatiner according
to its count.
However if the chosen item is a lootgroup then a lootgroup is spawned into the
container.
Loot Groups:
The above example would spawn the contents of group1 8 times. Here's why:
The container is told to spawn 2 items, since there's only 1 item in the container
it will choose group1
2 times. Each time group1 is chosen, the container <item group="group1" count="2">
line specifies that
the contents of group1 should be spawned 2 times. So on the first iteration of the
container group1 is spawned
2 times, and then again on the second iteration.
The group1 lootgroup specifies that each time it is spawned (recall 4 times in the
example) that is should
select 2 items from its list.
NOTE: it is safe to specify groups and counts that exceed the containers capacity.
If the containers space
is exceeded excess items will not be spawned, and items will automatically stack to
fill the container.
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Adjusting gun accuracy / spread (way obsolete in A17+)
Ranges measured at a FOV of 72. (only noobs use the default of 50)
For FOV 50 multiply them by about 1.5.
gunRocketLauncher
s0.095, 8.5m, 1m spread
gunSawedOffPumpShotgun / blunderbuss
s0.74, 6m, 1m spread
gunPumpShotgun
s0.835, 11m, 1m spread (shell) = 5.2�
s0.605, 25m, 1m spread (slug) = 2.29�
A zombie standing inside a 1m spread cone covers 55% of the whole cone.
=====================================================================
=====================================================================
File: ITEMS.XML
Keys:
"Active"
"Armor"
"Candrop"
"Canhold"
"Class"
"Concussive"
"Degradation"
"DegradationBreaksAfter"
"DegradationFloor"
"DropMeshfile"
"EconomicValue"
"EconomicBundleSize"
"Extends"
"HandMeshfile"
"HoldType"
"ImageEffectOnActive"
"Material"
"Meshfile"
"Pos"
"Preview"
"Puncture"
"RepairAmount"
"RepairTime"
"RepairTools"
"Rot"
"Stacknumber"
"Zoom"
Attributes:
"belt_range"
"belt_strength"
"duration"
"heat_map_strength"
"heat_map_time"
"holster"
"id"
"muffled_when_crouched"
"name"
"newmodel"
"prio"
"range"
"ray_cast"
"ray_cast_moving"
"speed"
"strength"
"time"
"two_handed"
"unholster"
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Material types
material="wood|metal|organic|bullet"
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
---
For the "Eat" (and probably "UseOther") action:
- This timer is started when you click / use an item.
- You cannot switch toolbelt slots while this timer is running. (to not mess up the
animation)
- When THIS timer has run out, any item effects and buffs are applied on an "eat"
action.
- It does not prevent you from spam-clicking the item.
Doing so while the timer is running, both animation and timer start over.
The item effects/buffs are not applied until you stop clicking and let the
timer run to completion.
---
For a pistol this timer has no discernible effect.
---
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
UMA Slots
Layer: This defines the index of the mesh that will be placed.
0 = base mesh layer, where the nude underwear model resides. any item put on
with a layer of 0 will remove the mesh already in that Equipment slot.
1 = First overlay layer, this will lay over top of anything on layer 0 in the
same EquipSlot.
2 = Second overlay layer, this will lay over top of anything on layer 0 or
layer 1 in the same EquipSlot
UISlot: This defines the slot in the character screen that this clothing
belongs to and any slots that may need disabled.
Headgear, Eyewear, Face, Shirt, Jacket, ChestArmor, Gloves, Backpack, Pants,
Footwear, LegArmor
<property class="Attributes">
<property name="MeleeProtection" value="0.1, 0.5" />
<property name="BulletProtection" value="0.1, 0.3" />
<property name="PunctureProtection" value="0.1, 0.3" />
<property name="BluntProtection" value="0.15, 0.35" />
<property name="ExplosiveProtection" value="0.05,0.15" />
<property name="DegradationMin" value="0.1,0.5" />
</property>
WEAPON ATTACHABLES
Add the following property to a item to define it as a weapon attachable:
<property name="IsWeaponAttachment" value="true" />
Action Experience
<property name="ActionExp" value="1" /> (default value = 2)
<property name="ActionExpBonusMultiplier" value="2" /> (default value = 10)
And for the repair and upgrade actions, each swing for repair or upgrade will give
ActionExp amount
of skill/playerExp, the action bonus multiplier is applied when fully upgading a
block to it's next level.
In the case of a recipe book, when first learned the multiplier is applied and
after then
only the action exp is applied but it's applied for EACH item in the book.
Also, you only get "reading XP" for items that have a
<property name="ActionSkillGroup" value="Science"/>
defined.
You get XP to THIS group, not the crafting group of the item.
Then the recipe skill gain and craft time will be calculated internally
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Face and eye slot items offer a little damage protection but have zero effect on
temperature or wetness.
General clothing items like pants and shirts warm you from +1 to +5. HazMat 6.
Some clothing items that cool you are t-shirts (-5) or cowboy hats (-10).
The poncho is -20. Because Clint Eastwood looked good in it.
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Unlocking a recipe:
<property class="Action1">
<property name="Recipes_to_learn"
value="gunRocketLauncher,rocket,rocketCasing,rocketTip" />
<property name="ActionExp" value="50"/>
</property>
Instead of unlocking a list of recipes you can now learn / unlock a list of skills
and perks.
1 point or level per book and skill.
<property class="Action1">
<property name="Class" value="GainSkill" />
<property name="Skills_to_gain" value="Treasure Hunter,Blunt
Weapons" />
</property>
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Note that item IDs CAN be moved around without icons, descriptions, or any
references to them breaking.
All but one. "handPlayer" must remain on ID 70. Because.
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
All items have a "Stacknumber" and tags for batch-modding: (you're welcome)
<!-- STK ammo -->
<!-- STK book -->
<!-- STK explosives -->
<!-- STK food -->
<!-- STK drink -->
<!-- STK loot -->
<!-- STK medical -->
<!-- STK repairKit -->
<!-- STK resource -->
<!-- STK torch -->
and you have adjusted everything that is used for crafting and does
nothing useful (like healing or eating) beyond that.
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
"CritChance" listed is the base chance and can fluctuate up and down a bit
depending on your current stamina.
So with
"Buff_chance" and "CritChance" both at 0.3
you have an average chance of about 0.09 to ACTUALLY apply the buff.
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
This is useful to trigger random food effects, rarely getting an infection from
a dirty needle on a blood draw kit... use the nasty side of your imagination.
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
misc.xml:
<hold_type id="22" newmodel="false" ray_cast="0.5" holster="0"
unholster="0.2" /> <!-- 22 sham -->
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
"Stacknumber"
If an item has
<property class="Attributes">
</property>
or
<property class="Parts">
</property>
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
I collated and translated that into pseudocode... mostly so I'd have something
compact to reference. =)
=====================================================================
=====================================================================
General balancing rule for tools: Iron should be 2x as good as stone, and steel
1.5x as good as iron. Steel to have great durability.
Weapons:
In general, the low end damage of a weapon will be 40% of the max damage.
For "newbie" weapons, the low end damage may be higher because these weapons are
supposed to be replaced "soon" anyway.
Armor:
In general, the low end armor will be 40% of the max armor.
Maxed out armor skills will ADD 20% on top of item armor values. They no longer
multiply the armor value.
If accumulated armor values + skill buff exceeds 100% the player becomes
invulnerable.
Don't do that. Unless you want to. Then go nuts.
Skills *can* multiply armor skills but this is a terrible idea because light armor
will always suck and if you push the values, leather will be OP.
I switched to adding flat protection from skill which is much easier to balance and
let me make clothing or hide armor *work* as armor.
Light armor at high QL and skill can actually be decent protection now which may
just be useful in a snow biome.
Heavy armor (+ max skill, +rare armor at max QL) can get up to 95% melee
protection.
Getting that is not realistic so hey... keep making those first aid kits.
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
If equipment slots are empty but you *are* wearing a full suit of armor, hits can
go through without impacting armor.
If you wear armor (or anything), the AVERAGE protection value of all "connected"
slots
(chest armor, overcoat, shirt) applies. Wearing a shirt kind of halves the value of
your iron chest armor. Because of reasons.
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
We are not doing localised damage. All armor pieces get hit simultaneously.
If you get hit for 30 damage and your armor absorbs 12 of that then your armor is
hit for 12 durability damage.
If you wear 5 armor pieces then the damage is split among them, so 2.4 (rounded up
to 3) per piece.
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
A14:
Durability for firearms and motor tools has been increased roughly x10.
As a result it is now possible to largely balance durability (how many shots until
broken) and
cost (how many repairKits for a full repair) independently! (how cool is that?)
A weapon with 4 parts and 6000 durability each can cost 6000 points or 3 repair
kits to fully repair.
In both cases the repair cost remains constant. That is a Big Deal for balancing.
Now you have a choice. Use a low quality bargain-bin gun that is cheaper to
maintain... or use the
high-tech-chrome-plated-with-cherries-on-top version and deal with the maintenance
cost.
I'm evil like that.
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Experimented with and while it works technically it was canned due to...
circumstances.
<item id="153" name="762mmBulletFMJ">
<property name="Meshfile"
value="Items/Weapons/Ranged/HuntingRifle/762mm_bulletPrefab" />
<property name="Material" value="brass" />
<property name="HoldType" value="21" />
<property name="Stacknumber" value="500" /> <!-- STK ammo -->
<property name="CraftingSkillGroup" value="Gun Smithing"/>
<property name="EconomicValue" value="200" />
<property name="Group" value="Ammo/Weapons" />
<property class="Action1">
<property name="Class" value="Projectile" />
<property name="Explosion.ParticleIndex" value="0" />
<property name="Velocity" value="700" />
<property name="FlyTime" value="0" />
<property name="LifeTime" value="3" />
</property>
</item>
By entering roughly the real muzzle velocity of a weapon you get a decent starting
point.
This was for a bullet drop of roughly 1 head at 100m.
Not using that because the headshot mod then needs to be on the projectile and if I
don't want to redo the balancing
it means splitting the ammo types into .308 / 7.62x51 / 7.62x39... for even more
inventory clutter.
Note that a simple raycast gun ("Class" value="Ranged") can actually use a ("Class"
value="Projectile") as ammo so you could
have the sniper rifle have bullet drop but handwave it on the shorter-ranged AK
where the recoil makes it largely irrelevant.
=====================================================================
=====================================================================
File: RECIPES.XML
Usable craft areas ( = block name of the crafting station) and tools:
Note that (almost) all recipes have been changed to only output 1 unit.
This is because the UI still does not tell you how many units would be
produced and it was easier to just juggle the recipes.
=====================================================================
=====================================================================
File: PROGRESSION.XML
Good:
<multiply skill_level="1,5" value="1,1.04" />
<multiply skill_level="5,11" value="1.04,1.07" />
<multiply skill_level="11,19" value="1.07,1.1" />
Bad:
<multiply skill_level="1,5" value="1,1.04" />
<multiply skill_level="6,11" value="1.05,1.07" />
<multiply skill_level="12,19" value="1.08,1.1" />
Do NOT "skip" any skill levels. The code does not like it. You want to make the
code happy.
Unhappy code may want to use you as reactor shielding.
Repair balancing
Club at QL 600:
no skills: 100 QL loss, max skills: 10 QL loss and no loss at QL 119 and below.
QL is multiplied.
Temporary workaround: Set all assembled items to "Gun smithing" and fudge the
numbers to work out.
=====================================================================
=====================================================================
File: BUFFS.XML
General info:
Buffs are not executed by "going down the list". Their order in the XML is
irrelevant.
Buffs do stuff all the time in an order that is complex and depends on a lot of
things.
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
A "BuffsWhenWalkedOn" with a normal duration will flicker on/off as it is reapplied
because such a buff DOES end.
To have a proper display without tooltip spam you need to make the DISPLAYED buff
work without a duration.
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TBH, I don't *quite* trust this, yet. If you manage to break this in a reproducible
fashion, speak up! =)
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Custom variables:
All by itself this never triggers unless something else changes the variable.
If you want to start any processes on player characters you need to trigger this
off a variable that
you know will change such as
buffif="coretemp lequal 300"
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
FYI: actions="damage()"
is currently bugged and does not affect zombies.
I reworded the remaining buffs that should affect them to use "modify" instead.
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Checkmark.tga
map_poi_editor.png
map_spawn.png
map_static_spawner_editor.png
server_icon_vac.tga
star 1.png
star.png
ui_game_filled_circle.tga
ui_game_header_fill.tga
ui_game_header_fill_gradient.tga
ui_game_header_insert.tga
ui_game_panel_header.tga
ui_game_popup.tga
ui_game_select_row.tga
ui_game_shape_arch.tga
ui_game_shape_cone1m.tga
ui_game_shape_corner_round_1m.tga
ui_game_shape_corner_rounded.tga
ui_game_shape_cube.tga
ui_game_shape_cube_half.tga
ui_game_shape_cube_quarter.tga
ui_game_shape_plate.tga
ui_game_shape_plate_25cm.tga
ui_game_shape_plate_wall.tga
ui_game_shape_pole_0.5m.tga
ui_game_shape_pole_1m.tga
ui_game_shape_pole_square.tga
ui_game_shape_ramp.tga
ui_game_shape_ramp_corner_filler.tga
ui_game_shape_ramp_inside_corner.tga
ui_game_shape_ramp_outside_corner.tga
ui_game_shape_stairs.tga
ui_game_shape_stairs_filled.tga
ui_game_shape_stairs_filled_corner.tga
ui_game_shape_wedge60.tga
ui_game_shape_wedge60_tip.tga
ui_game_shape_wedge60_tip_corner.tga
ui_game_shape_wedged_corner.tga
ui_game_stat_bar_health.tga
ui_game_stat_bar_stamina.tga
ui_game_symbol_add.tga
ui_game_symbol_airdrop.tga
ui_game_symbol_all_blocks.tga
ui_game_symbol_allies.tga
ui_game_symbol_archery.tga
ui_game_symbol_armor_iron.tga
ui_game_symbol_armor_leather.tga
ui_game_symbol_arrow_left.tga
ui_game_symbol_arrow_max.tga
ui_game_symbol_arrow_right.tga
ui_game_symbol_assemble.tga
ui_game_symbol_backpack.tga
ui_game_symbol_battery.tga
ui_game_symbol_beer.tga
ui_game_symbol_block_damage.tga
ui_game_symbol_block_repair.tga
ui_game_symbol_block_upgrade.tga
ui_game_symbol_book.tga
ui_game_symbol_brokenbone.tga
ui_game_symbol_bullet_point.tga
ui_game_symbol_campfire.tga
ui_game_symbol_cement.tga
ui_game_symbol_chair.tga
ui_game_symbol_character.tga
ui_game_symbol_check.tga
ui_game_symbol_chemistry.tga
ui_game_symbol_climb.tga
ui_game_symbol_clock.tga
ui_game_symbol_club.tga
ui_game_symbol_coffee.tga
ui_game_symbol_coin.tga
ui_game_symbol_cold.tga
ui_game_symbol_compass.tga
ui_game_symbol_computer.tga
ui_game_symbol_cookware.tga
ui_game_symbol_critical.tga
ui_game_symbol_death.tga
ui_game_symbol_defense.tga
ui_game_symbol_diamond.tga
ui_game_symbol_door.tga
ui_game_symbol_drive.tga
ui_game_symbol_drop.tga
ui_game_symbol_drunk.tga
ui_game_symbol_dysentery.tga
ui_game_symbol_electric_generator.tga
ui_game_symbol_electric_max_power.tga
ui_game_symbol_electric_outlet.tga
ui_game_symbol_electric_plugin.tga
ui_game_symbol_electric_power.tga
ui_game_symbol_electric_solar.tga
ui_game_symbol_electric_switch.tga
ui_game_symbol_electric_turret.tga
ui_game_symbol_fire.tga
ui_game_symbol_food_poisoning.tga
ui_game_symbol_forge.tga
ui_game_symbol_fork.tga
ui_game_symbol_gas.tga
ui_game_symbol_gunsmithing.tga
ui_game_symbol_hammer.tga
ui_game_symbol_hand.tga
ui_game_symbol_horn.tga
ui_game_symbol_hot.tga
ui_game_symbol_hunger.tga
ui_game_symbol_infection.tga
ui_game_symbol_invite.tga
ui_game_symbol_keypad.tga
ui_game_symbol_knife.tga
ui_game_symbol_light_armor.tga
ui_game_symbol_lightbulb.tga
ui_game_symbol_lock.tga
ui_game_symbol_loot_sack.tga
ui_game_symbol_map.tga
ui_game_symbol_map_bed.tga
ui_game_symbol_map_cabin.tga
ui_game_symbol_map_campsite.tga
ui_game_symbol_map_cave.tga
ui_game_symbol_map_city.tga
ui_game_symbol_map_civil.tga
ui_game_symbol_map_cursor.tga
ui_game_symbol_map_fortress.tga
ui_game_symbol_map_house.tga
ui_game_symbol_map_player_arrow.tga
ui_game_symbol_map_town.tga
ui_game_symbol_map_trader.tga
ui_game_symbol_map_waypoint_remove.tga
ui_game_symbol_map_waypoint_set.tga
ui_game_symbol_medical.tga
ui_game_symbol_mic.tga
ui_game_symbol_minibike.tga
ui_game_symbol_mining.tga
ui_game_symbol_misc_crafting.tga
ui_game_symbol_muscle.tga
ui_game_symbol_natural_healing.tga
ui_game_symbol_noise.tga
ui_game_symbol_oxygen.tga
ui_game_symbol_paint_allsides.tga
ui_game_symbol_paint_brush.tga
ui_game_symbol_paint_bucket.tga
ui_game_symbol_paint_copy_block.tga
ui_game_symbol_paint_eyedropper.tga
ui_game_symbol_paint_roller.tga
ui_game_symbol_paint_spraygun.tga
ui_game_symbol_pen.tga
ui_game_symbol_percent.tga
ui_game_symbol_perk.tga
ui_game_symbol_pills.tga
ui_game_symbol_ping.tga
ui_game_symbol_pistol.tga
ui_game_symbol_player.tga
ui_game_symbol_players.tga
ui_game_symbol_quality_joe.tga
ui_game_symbol_quest.tga
ui_game_symbol_quest_remove.tga
ui_game_symbol_radiation.tga
ui_game_symbol_resource.tga
ui_game_symbol_rifle.tga
ui_game_symbol_rotate_advanced.tga
ui_game_symbol_rotate_auto.tga
ui_game_symbol_rotate_on_face.tga
ui_game_symbol_rotate_simple.tga
ui_game_symbol_run.tga
ui_game_symbol_safe.tga
ui_game_symbol_science.tga
ui_game_symbol_scrap.tga
ui_game_symbol_search.tga
ui_game_symbol_seats.tga
ui_game_symbol_service.tga
ui_game_symbol_shirt.tga
ui_game_symbol_shopping_cart.tga
ui_game_symbol_shotgun.tga
ui_game_symbol_skills.tga
ui_game_symbol_skull.tga
ui_game_symbol_sledge.tga
ui_game_symbol_smell.tga
ui_game_symbol_spatula.tga
ui_game_symbol_speed.tga
ui_game_symbol_splint.tga
ui_game_symbol_star.tga
ui_game_symbol_stunned.tga
ui_game_symbol_subtract.tga
ui_game_symbol_tailoring.tga
ui_game_symbol_talk.tga
ui_game_symbol_tea.tga
ui_game_symbol_temperature.tga
ui_game_symbol_thirst.tga
ui_game_symbol_tool.tga
ui_game_symbol_tool_smithing.tga
ui_game_symbol_treasure.tga
ui_game_symbol_trophy.tga
ui_game_symbol_unlock.tga
ui_game_symbol_vending.tga
ui_game_symbol_water.tga
ui_game_symbol_weapon_smithing.tga
ui_game_symbol_weight.tga
ui_game_symbol_wet.tga
ui_game_symbol_wind.tga
ui_game_symbol_workbench.tga
ui_game_symbol_wrench.tga
ui_game_symbol_x.tga
ui_game_symbol_zombie.tga
wedge_tip_half.tga
=====================================================================
=====================================================================
File: BIOMES.XML
Ore distribution:
The terrain blending shader can only blend 3 textures so if you add more than 3
types it ends up having hard lines and looks horrible.
This is the technical reason why ores are so strictly limited per biome.
The gameplay reason is to promote some travel instead of staying in one spot all
game long, looting the same town over and over.
You can still stagger different layers with different ores / distributions.
If you make layers varied, small and plentiful you will get more seam lines where
4+ textures interact. Your choice.
Another possibility is to generate subbiomes that look the same on the surface but
have a different layer setup.
This may or may not become a feature.
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
=====================================================================
=====================================================================
=====================================================================
=====================================================================
=====================================================================
=====================================================================
A15 stuff
Weeeell, you may occasionally see the odd "A15" comment here and there.
Some things just did not get done in time. It's real life's way to show you the
finger.
If you choose to "mod in" those totally-absolutely-not-QA-approved features or not
is up to you.
They may destroy your game or blow up planet Earth. I'm not saying it's likely
but...
=====================================================================
=====================================================================
File: SOUNDS.XML
Attributes:
"crouchVolume"
"localCrouchVolume"
"localVolume"
"maxvoices"
"priority"
"rate"
"volume"
=====================================================================
=====================================================================
File: ENTITYCLASSES.XML
EntityAnimalBear
EntityAnimalRabbit
EntityAnimalStag
EntityCar
EntityEnemy
EntityFallingBlock
EntityFallingTree
EntityItem
EntityNPC
EntityPlayer
EntitySupplyCrate
EntitySupplyPlane
EntityVehicle
=====================================================================
=====================================================================
Wandering hordes will use the player's gamestage... but wrap around at 50.
If you are GS 57 you get the "07" wandering horde.
This is kinda hacky but the best we got for now. Stay tuned for A17.
To test them:
shownexthordetime
settime to that
see the spawns on the console or ingame
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
maxAlive
values in gamestages.xml are now per player, not per party.
=====================================================================
=====================================================================
(prefab.xml)
<property name="DistantPOIOverride" value="hotel_ostrich" />
If your custom-built prefab HAS no baked imposter you can choose to display
any of the EXISTING .mesh files in the prefab folder.
It will obviously be the wrong building... but you can see that there is
SOMETHING over yonder instead of nothing.
(prefab.xml)
<property name="DistantPOIYOffset" value="0" />
Move the imposter up/down to deal with zfighting with the ground or the
actual blocks.
In the level editor use console command "prefab bulk" to generate all imposters.
(A17)
To update a single prefab's imposter in the level editor,
open the Level Tools 2 page and click Update Imposter.
=====================================================================
=====================================================================
Sleepers
<property name="SleeperVolumeGroup"
value="S_ZomUtilityWorker_L,S_ZomUtilityWorker_L,S_BikerBar_Med,S_GhostTown_Med,S_L
ootRoom_XS,S_ZomUtilityWorker_Med,S_LootRoom_L,S_ZomUtilityWorker_L,S_LootRoom_XS,S
_LootRoom_XS" />
See gamestages.xml
<property name="SleeperIsLootVolume"
value="False,False,True,False,False,False,True,False,True,True" />
A loot volume is a sleeper volume that CAN intersect with ONE other non-loot
volume.
No other kind of intersecting volumes is allowed. (it may not crash but
zombies will not know where they belong)
(A17)
Sleeper spawner blocks:
ID= a completely bogus parameter that the game does not even read. I put that in to
more easily sort sounds into buckets.
The sound volume emitted by the player. Sorted by volume. Loudest is 100%, next
added at 60%, next at 36%...
OLD:
If the player currently has 3 active sounds (ticking down their duration) of range
3 + 3 + 12 then zombies can hear that at a range of 18.
Clamp means that the sound will be ignored if the meter is above this value.
If you don't specify a clamp or it's 0 (default) then the sound will always add to
the meter.
If footsteps have a clamp of 10 and you are firing an AK then the footsteps are
inconsequential" and would not make your sound emission any greater.
=====================================================================
=====================================================================
(A17) Stealth (pretty identical to A16)
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
1. Light/Vision-based detection
Awake zombies:
<property name="SightLightThreshold" value="-2,150"/> How well lit you have to
be for the awake zombie to see you at min,max range.
At range 30 you'd need a light level of
150 to be seen by this zombie.
Sleeper zombies:
<property name="SleeperWakeupSightDetectionMin" value="-40,5"/> <!--
Indiv.Random. sight capability - "I see you" light value at point blank -->
<property name="SleeperWakeupSightDetectionMax" value="340,480"/> <!--
Indiv.Random. "I see you" light value at "SightRange" -->
<property name="SleeperSenseSightDetectionMin" value="-10,0"/> <!-- same for
groaning, not waking -->
<property name="SleeperSenseSightDetectionMax" value="200,300"/>
Just like for awake zombies, this scales across SightRange so the Min
value applies to 0m and the Max value to 30m.
SleeperSense CAN trigger a little groan sound but does not wake up the
sleeper.
If your light level > what the zombie CAN see at the current range, the
relevant state is triggered.
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
2. Sound-based detection
Sound generates a volume around the player with a RANGE. Multiple sound
events stack/add up to increase that range.
Sound events remain separate. If one decays, all other events stay in place
and their numbers add up to a new current total.
All sounds are generated on the player. The sound source moves with the
player.
Thrown distractions are local and make zombies seek out the distraction for a
while.
OLD: range="7" This sound ADDS 7 to your noise range which is basically
also a volume.
OLD: clamp="11" This sound is NOT ADDED to your noise range when your
noise range is already 11.
That's how minor sounds like footsteps can be prevented to
add up to extreme noise values or add
to the overall racket when such a minor sound wouldn't be
adible at all.
time="4" Every sound is active on your for so long. Then this sound
finishes and no longer goes into the calculation.
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
3. Stealth UI
The bar/number is a potpourri value for light+sound.
It does not give you any definite information about either.
The main use is to tell you THAT an action increases or lowers your
stealth... by an unknown amount.
F3 Debug Info:
For Sleepers:
Light 15/40 (30), Sound 20/27 (17)
=====================================================================
=====================================================================
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Now this part is going to get messy and beautifully simple because it's a complete
overhaul of what you're
used to and a unification of the effects on items / buffs / skills as well as the
use of cvars.
For the most part it makes no difference whatsoever if you're attaching an effect
to an item / buff / skill.
Same syntax and everything.
Obviously there are differences in scope because a buff would not have a
primary/secondary action.
Starting somewhere:
<effect_group name="Base Effects"> the name property is meaningless and only there
for readability.
Any passive effect that changes a stat/variable does so using the chosen operation
and value.
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
GENERAL computational order for determining effects and their magnitude, order of
operations (OOO)
=====================================================================
BONUS DAMAGE such as for headshots or attacking specific block materials (see
below)(A17)
That for instance, will take in the damage amount after all other calcs but
before the difficulty multiplier and
before the armor check and at level one it'll be damage * 1.75.
=====================================================================
=====================================================================
damage = (Utils.FastMin(block.blockMaterial.Hardness.Value *
block.blockMaterial.Mass.Value * fallTimeInTicks/Constants.cTicksPerSecond
*.6f ,40));
=====================================================================
=====================================================================
Blur
Bright
Cold
Dark
Dead (no intensity)
Distortion
Drunk
Dying (no intensity)
Hot
Posterize
Underwater
Vibrant
VibrantDeSat
<triggered_effect trigger="onSelfBuffStart"
action="AttachParticleEffectToEntity" target="self" particle="p_electric_shock"
local_offset="0,0.75,0"/>
<triggered_effect trigger="onSelfDied"
action="RemoveParticleEffectFromEntity" target="self"
particle="p_electric_shock" />
burntZombieSmoke.prefab
light_bullet_impact.prefab
MinibikeParticles.prefab
p_big_smoke.prefab
p_blockdestroy_boulder.prefab
p_blockdestroy_cloth.prefab
p_blockdestroy_earth.prefab
p_blockdestroy_glass.prefab
p_blockdestroy_metal.prefab
p_blockdestroy_organic.prefab
p_blockdestroy_plant.prefab
p_blockdestroy_snow.prefab
p_blockdestroy_stone.prefab
p_blockdestroy_water.prefab
p_blockdestroy_wood.prefab
p_blockdestroy_xt_leaves1.prefab
p_blockdestroy_xt_leaves2.prefab
p_blockdestroy_xt_leaves3.prefab
p_blockdestroy_xt_tallgrass.prefab
p_blood_death.prefab
p_blood_decapitation.prefab
p_blood_impact.prefab
p_breath.prefab
p_breath_thirdperson.prefab
p_burning_barrel.prefab
p_campfire.prefab
p_candleWall_flame.prefab
p_candle_flame.prefab
p_chemistryStation.prefab
p_critical.prefab
p_distanceTest.prefab
p_electric_fence_sparks.prefab
p_electric_shock.prefab
p_fat_cop_explosion.prefab
p_fire_small.prefab
p_forge.prefab
p_generator.prefab
p_hotembers.prefab
p_hotembersZombie.prefab
p_impact_bullet_on_cloth.prefab
p_impact_bullet_on_earth.prefab
p_impact_bullet_on_glass.prefab
p_impact_bullet_on_metal.prefab
p_impact_bullet_on_organic.prefab
p_impact_bullet_on_plant.prefab
p_impact_bullet_on_snow.prefab
p_impact_bullet_on_stone.prefab
p_impact_bullet_on_water.prefab
p_impact_bullet_on_wood.prefab
p_impact_bullet_on_xt_tallgrass.prefab
p_impact_metal_on_cloth.prefab
p_impact_metal_on_earth.prefab
p_impact_metal_on_glass.prefab
p_impact_metal_on_metal.prefab
p_impact_metal_on_metal_harvest.prefab
p_impact_metal_on_metal_repair.prefab
p_impact_metal_on_organic.prefab
p_impact_metal_on_plant.prefab
p_impact_metal_on_snow.prefab
p_impact_metal_on_stone.prefab
p_impact_metal_on_water.prefab
p_impact_metal_on_wood.prefab
p_impact_metal_on_xt_tallgrass.prefab
p_impact_organic_on_cloth.prefab
p_impact_organic_on_earth.prefab
p_impact_organic_on_glass.prefab
p_impact_organic_on_metal.prefab
p_impact_organic_on_organic.prefab
p_impact_organic_on_plant.prefab
p_impact_organic_on_snow.prefab
p_impact_organic_on_stone.prefab
p_impact_organic_on_water.prefab
p_impact_organic_on_wood.prefab
p_impact_organic_on_xt_tallgrass.prefab
p_impact_stone_on_cloth.prefab
p_impact_stone_on_earth.prefab
p_impact_stone_on_glass.prefab
p_impact_stone_on_metal.prefab
p_impact_stone_on_organic.prefab
p_impact_stone_on_plant.prefab
p_impact_stone_on_snow.prefab
p_impact_stone_on_stone.prefab
p_impact_stone_on_water.prefab
p_impact_stone_on_wood.prefab
p_impact_stone_on_xt_tallgrass.prefab
p_impact_wood_on_cloth.prefab
p_impact_wood_on_earth.prefab
p_impact_wood_on_glass.prefab
p_impact_wood_on_metal.prefab
p_impact_wood_on_organic.prefab
p_impact_wood_on_plant.prefab
p_impact_wood_on_snow.prefab
p_impact_wood_on_stone.prefab
p_impact_wood_on_water.prefab
p_impact_wood_on_wood.prefab
p_impact_wood_on_xt_tallgrass.prefab
p_nailgunfire.prefab
p_nozzleflash.prefab
p_nozzleflashuzi.prefab
p_nozzleflash_ak.prefab
p_nozzleflash_m136.prefab
p_nozzleflash_shotgun.prefab
p_nozzlesmoke.prefab
p_nozzlesmokeuzi.prefab
p_nozzlesmoke_chainsaw.prefab
p_nozzlesmoke_m136.prefab
p_onFire.prefab
p_paint_block.prefab
p_paint_splash.prefab
p_paint_splash2.prefab
p_rocketLauncherFire.prefab
p_sandstorm.prefab
p_signal_flarePrefab.prefab
p_smoke.prefab
p_smokestorm.prefab
p_snowstorm1.prefab
p_supply_crate_gib_Prefab.prefab
p_supply_crate_impact.prefab
p_tiresmoke.prefab
p_torch_wall.prefab
p_treefall.prefab
p_treeGib_birch.prefab
p_treeGib_birch_15m.prefab
p_treeGib_birch_6m.prefab
p_treeGib_birch_small.prefab
p_treeGib_burnt.prefab
p_treeGib_burnt_55m.prefab
p_treeGib_burnt_75m.prefab
p_treeGib_burnt_small.prefab
p_treeGib_dead_01.prefab
p_treeGib_dead_02.prefab
p_treeGib_maple_13m.prefab
p_treeGib_maple_15m.prefab
p_treeGib_maple_17m.prefab
p_treeGib_sapling.prefab
p_treeGib_small_dust.prefab
p_treeGib_winter01.prefab
p_treeGib_winter02.prefab
p_treeGib_winter03.prefab
p_treeGib_winter_small.prefab
p_vomitMouth.prefab
p_wire_tool_dust.prefab
p_wire_tool_sparks.prefab
RadiatedParticlesOnMesh.prefab
Smoke_Unlit.prefab
=====================================================================
=====================================================================
<!-- Template for adding a new shape to main building blocks
here with a default description for the entire group.
<block name="woodFrameNewBlockID">
<property name="Extends" value="woodFrameMaster" />
<property name="CreativeMode" value="Player"/>
<property name="Shape" value="New" />
<property name="Model" value="newBlockModel" /> <property name="Place"
value="TowardsPlacerInverted" />
<property name="SortOrder2" value="NewShapeIndex"/> <!-- SortShape -->
<property name="CanPickup" value="true" />
<property class="UpgradeBlock"> <property name="ToBlock"
value="woodNewBlockID" /> </property>
<property name="DescriptionKey" value="shapeNewBlockIDGroupDesc"/>
</block>
<block name="solidWoodFrameNewBlockID">
<property name="Extends" value="woodFrameNewBlockID" />
<property name="CreativeMode" value="Dev"/>
<property name="CustomIcon" value="woodFrameNewBlockID" />
<property name="CanPickup" value="false" />
</block>
<block name="woodNewBlockID">
<property name="Extends" value="woodMaster" />
<property name="Shape" value="New" />
<property name="Model" value="newBlockModel" /> <property name="Place"
value="TowardsPlacerInverted" />
<property name="SortOrder2" value="NewShapeIndex"/> <!-- SortShape -->
<property class="UpgradeBlock"> <property name="ToBlock"
value="rWoodNewBlockID" /> </property>
<property name="DowngradeBlock" value="solidWoodFrameNewBlockID" />
<property name="DescriptionKey" value="shapeNewBlockIDGroupDesc"/>
</block>
<block name="rWoodNewBlockID">
<property name="Extends" value="rWoodMaster" />
<property name="Shape" value="New" />
<property name="Model" value="newBlockModel" /> <property name="Place"
value="TowardsPlacerInverted" />
<property name="SortOrder2" value="NewShapeIndex"/> <!-- SortShape -->
<property class="UpgradeBlock"> <property name="ToBlock"
value="cobblestoneNewBlockID" /> </property>
<property name="DowngradeBlock" value="woodNewBlockID" />
<property name="DescriptionKey" value="shapeNewBlockIDGroupDesc"/>
</block>
<block name="scrapIronFrameNewBlockID">
<property name="Extends" value="scrapIronFrameMaster" />
<property name="CreativeMode" value="Player"/>
<property name="Shape" value="New" />
<property name="Model" value="newBlockModel" /> <property name="Place"
value="TowardsPlacerInverted" />
<property name="SortOrder2" value="NewShapeIndex"/> <!-- SortShape -->
<property name="CanPickup" value="true" />
<property class="UpgradeBlock"> <property name="ToBlock"
value="scrapIronNewBlockID" /> </property>
<property name="DescriptionKey" value="shapeNewBlockIDGroupDesc"/>
</block>
<block name="solidScrapIronFrameNewBlockID">
<property name="Extends" value="scrapIronFrameNewBlockID" />
<property name="CreativeMode" value="Dev"/>
<property name="CustomIcon" value="scrapIronFrameNewBlockID" />
<property name="CanPickup" value="false" />
</block>
<block name="scrapIronNewBlockID">
<property name="Extends" value="scrapIronMaster" />
<property name="Shape" value="New" />
<property name="Model" value="newBlockModel" /> <property name="Place"
value="TowardsPlacerInverted" />
<property name="SortOrder2" value="NewShapeIndex"/> <!-- SortShape -->
<property class="UpgradeBlock"> <property name="ToBlock"
value="rScrapIronNewBlockID" /> </property>
<property name="DowngradeBlock" value="solidScrapIronFrameNewBlockID" />
<property name="DescriptionKey" value="shapeNewBlockIDGroupDesc"/>
</block>
<block name="rScrapIronNewBlockID">
<property name="Extends" value="rScrapIronMaster" />
<property name="Shape" value="New" />
<property name="Model" value="newBlockModel" /> <property name="Place"
value="TowardsPlacerInverted" />
<property name="SortOrder2" value="NewShapeIndex"/> <!-- SortShape -->
<property class="UpgradeBlock"> <property name="ToBlock"
value="pouredConcreteNewBlockID" /> </property>
<property name="DowngradeBlock" value="scrapIronNewBlockID" />
<property name="DescriptionKey" value="shapeNewBlockIDGroupDesc"/>
</block>
<block name="pouredConcreteNewBlockID">
<property name="Extends" value="pouredConcreteMaster" />
<property name="CreativeMode" value="Player"/>
<property name="Shape" value="New" />
<property name="Model" value="newBlockModel" /> <property name="Place"
value="TowardsPlacerInverted" />
<property name="SortOrder2" value="NewShapeIndex"/> <!-- SortShape -->
<property name="UpgradeRated.ToBlock" value="concreteNewBlockID" />
<property name="DescriptionKey" value="shapeNewBlockIDGroupDesc"/>
</block>
<block name="concreteNewBlockID">
<property name="Extends" value="concreteMaster" />
<property name="Shape" value="New" />
<property name="Model" value="newBlockModel" /> <property name="Place"
value="TowardsPlacerInverted" />
<property name="SortOrder2" value="NewShapeIndex"/> <!-- SortShape -->
<property class="UpgradeBlock"> <property name="ToBlock"
value="pouredRConcreteNewBlockID" /> </property>
<property name="DescriptionKey" value="shapeNewBlockIDGroupDesc"/>
</block>
<block name="pouredRConcreteNewBlockID">
<property name="Extends" value="pouredRConcreteMaster" />
<property name="CreativeMode" value="None"/>
<property name="CustomIcon" value="pouredConcreteNewBlockID" />
<property name="Shape" value="New" />
<property name="Model" value="newBlockModel" /> <property name="Place"
value="TowardsPlacerInverted" />
<property name="SortOrder2" value="NewShapeIndex"/> <!-- SortShape -->
<property name="UpgradeRated.ToBlock" value="rConcreteNewBlockID" />
<property name="DescriptionKey" value="shapeNewBlockIDGroupDesc"/>
</block>
<block name="rConcreteNewBlockID">
<property name="Extends" value="rConcreteMaster" />
<property name="Shape" value="New" />
<property name="Model" value="newBlockModel" /> <property name="Place"
value="TowardsPlacerInverted" />
<property name="SortOrder2" value="NewShapeIndex"/> <!-- SortShape -->
<property class="UpgradeBlock"> <property name="ToBlock"
value="steelNewBlockID" /> </property>
<property name="DescriptionKey" value="shapeNewBlockIDGroupDesc"/>
</block>
<block name="steelNewBlockID">
<property name="Extends" value="steelMaster" />
<property name="Shape" value="New" />
<property name="Model" value="newBlockModel" /> <property name="Place"
value="TowardsPlacerInverted" />
<property name="SortOrder2" value="NewShapeIndex"/> <!-- SortShape -->
<property name="DowngradeBlock" value="rConcreteNewBlockID" />
<property name="DescriptionKey" value="shapeNewBlockIDGroupDesc"/>
</block>
<block name="stainlessSteelNewBlockID">
<property name="Extends" value="stainlessSteelMaster" />
<property name="Shape" value="New" />
<property name="Model" value="newBlockModel" /> <property name="Place"
value="TowardsPlacerInverted" />
<property name="SortOrder2" value="NewShapeIndex"/> <!-- SortShape -->
<property name="DowngradeBlock" value="rConcreteNewBlockID" />
<property name="DescriptionKey" value="shapeNewBlockIDGroupDesc"/>
</block>
<block name="brickNewBlockID">
<property name="Extends" value="brickMaster" />
<property name="Shape" value="New" />
<property name="Model" value="newBlockModel" /> <property name="Place"
value="TowardsPlacerInverted" />
<property name="SortOrder2" value="NewShapeIndex"/> <!-- SortShape -->
<property class="UpgradeBlock"> <property name="ToBlock"
value="pouredConcreteNewBlockID" /> </property>
<property name="DescriptionKey" value="shapeNewBlockIDGroupDesc"/>
</block>
<block name="flagstoneNewBlockID">
<property name="Extends" value="flagstoneMaster"/>
<property name="Shape" value="New"/>
<property name="Model" value="newBlockModel" /> <property name="Place"
value="TowardsPlacerInverted" />
<property name="SortOrder2" value="NewShapeIndex"/> <!-- SortShape -->
<property class="UpgradeBlock"> <property name="ToBlock"
value="cobblestoneNewBlockID"/> </property>
<property name="DescriptionKey" value="shapeNewBlockIDGroupDesc"/>
</block>
<block name="cobblestoneNewBlockID">
<property name="Extends" value="cobblestoneMaster" />
<property name="Shape" value="New" />
<property name="Model" value="newBlockModel" /> <property name="Place"
value="TowardsPlacerInverted" />
<property name="SortOrder2" value="NewShapeIndex"/> <!-- SortShape -->
<property class="UpgradeBlock"> <property name="ToBlock"
value="pouredConcreteNewBlockID" /> </property>
<property name="DescriptionKey" value="shapeNewBlockIDGroupDesc"/>
</block>
=====================================================================
=====================================================================
<block name="woodFrameNewBlockID">
<property name="Extends" value="woodFrameMaster" />
<property name="CreativeMode" value="Player"/>
<property name="Shape" value="New" />
<property name="Model" value="newBlockModel" /> <property name="Place"
value="TowardsPlacerInverted" />
<property name="SortOrder2" value="NewShapeIndex"/> <!-- SortShape -->
<property name="CanPickup" value="true" />
<property class="UpgradeBlock"> <property name="ToBlock"
value="woodNewBlockID" /> </property>
</block>
<block name="solidWoodFrameNewBlockID">
<property name="Extends" value="woodFrameNewBlockID" />
<property name="CreativeMode" value="Dev"/>
<property name="CustomIcon" value="woodFrameNewBlockID" />
<property name="CanPickup" value="false" />
</block>
<block name="woodNewBlockID">
<property name="Extends" value="woodMaster" />
<property name="Shape" value="New" />
<property name="Model" value="newBlockModel" /> <property name="Place"
value="TowardsPlacerInverted" />
<property name="SortOrder2" value="NewShapeIndex"/> <!-- SortShape -->
<property class="UpgradeBlock"> <property name="ToBlock"
value="rWoodNewBlockID" /> </property>
<property name="DowngradeBlock" value="solidWoodFrameNewBlockID" />
</block>
<block name="rWoodNewBlockID">
<property name="Extends" value="rWoodMaster" />
<property name="Shape" value="New" />
<property name="Model" value="newBlockModel" /> <property name="Place"
value="TowardsPlacerInverted" />
<property name="SortOrder2" value="NewShapeIndex"/> <!-- SortShape -->
<property class="UpgradeBlock"> <property name="ToBlock"
value="cobblestoneNewBlockID" /> </property>
<property name="DowngradeBlock" value="woodNewBlockID" />
</block>
<block name="scrapIronFrameNewBlockID">
<property name="Extends" value="scrapIronFrameMaster" />
<property name="CreativeMode" value="Player"/>
<property name="Shape" value="New" />
<property name="Model" value="newBlockModel" /> <property name="Place"
value="TowardsPlacerInverted" />
<property name="SortOrder2" value="NewShapeIndex"/> <!-- SortShape -->
<property name="CanPickup" value="true" />
<property class="UpgradeBlock"> <property name="ToBlock"
value="scrapIronNewBlockID" /> </property>
</block>
<block name="solidScrapIronFrameNewBlockID">
<property name="Extends" value="scrapIronFrameNewBlockID" />
<property name="CreativeMode" value="Dev"/>
<property name="CustomIcon" value="scrapIronFrameNewBlockID" />
<property name="CanPickup" value="false" />
</block>
<block name="scrapIronNewBlockID">
<property name="Extends" value="scrapIronMaster" />
<property name="Shape" value="New" />
<property name="Model" value="newBlockModel" /> <property name="Place"
value="TowardsPlacerInverted" />
<property name="SortOrder2" value="NewShapeIndex"/> <!-- SortShape -->
<property class="UpgradeBlock"> <property name="ToBlock"
value="rScrapIronNewBlockID" /> </property>
<property name="DowngradeBlock" value="solidScrapIronFrameNewBlockID" />
</block>
<block name="rScrapIronNewBlockID">
<property name="Extends" value="rScrapIronMaster" />
<property name="Shape" value="New" />
<property name="Model" value="newBlockModel" /> <property name="Place"
value="TowardsPlacerInverted" />
<property name="SortOrder2" value="NewShapeIndex"/> <!-- SortShape -->
<property class="UpgradeBlock"> <property name="ToBlock"
value="pouredConcreteNewBlockID" /> </property>
<property name="DowngradeBlock" value="scrapIronNewBlockID" />
</block>
<block name="pouredConcreteNewBlockID">
<property name="Extends" value="pouredConcreteMaster" />
<property name="CreativeMode" value="Player"/>
<property name="Shape" value="New" />
<property name="Model" value="newBlockModel" /> <property name="Place"
value="TowardsPlacerInverted" />
<property name="SortOrder2" value="NewShapeIndex"/> <!-- SortShape -->
<property name="UpgradeRated.ToBlock" value="concreteNewBlockID" />
</block>
<block name="concreteNewBlockID">
<property name="Extends" value="concreteMaster" />
<property name="Shape" value="New" />
<property name="Model" value="newBlockModel" /> <property name="Place"
value="TowardsPlacerInverted" />
<property name="SortOrder2" value="NewShapeIndex"/> <!-- SortShape -->
<property class="UpgradeBlock"> <property name="ToBlock"
value="pouredRConcreteNewBlockID" /> </property>
</block>
<block name="pouredRConcreteNewBlockID">
<property name="Extends" value="pouredRConcreteMaster" />
<property name="CreativeMode" value="None"/>
<property name="CustomIcon" value="pouredConcreteNewBlockID" />
<property name="Shape" value="New" />
<property name="Model" value="newBlockModel" /> <property name="Place"
value="TowardsPlacerInverted" />
<property name="SortOrder2" value="NewShapeIndex"/> <!-- SortShape -->
<property name="UpgradeRated.ToBlock" value="rConcreteNewBlockID" />
</block>
<block name="rConcreteNewBlockID">
<property name="Extends" value="rConcreteMaster" />
<property name="Shape" value="New" />
<property name="Model" value="newBlockModel" /> <property name="Place"
value="TowardsPlacerInverted" />
<property name="SortOrder2" value="NewShapeIndex"/> <!-- SortShape -->
<property class="UpgradeBlock"> <property name="ToBlock"
value="steelNewBlockID" /> </property>
</block>
<block name="steelNewBlockID">
<property name="Extends" value="steelMaster" />
<property name="Shape" value="New" />
<property name="Model" value="newBlockModel" /> <property name="Place"
value="TowardsPlacerInverted" />
<property name="SortOrder2" value="NewShapeIndex"/> <!-- SortShape -->
<property name="Texture" value="356" />
<property name="DowngradeBlock" value="rConcreteNewBlockID" />
</block>
<block name="stainlessSteelNewBlockID">
<property name="Extends" value="stainlessSteelMaster" />
<property name="Shape" value="New" />
<property name="Model" value="newBlockModel" /> <property name="Place"
value="TowardsPlacerInverted" />
<property name="SortOrder2" value="NewShapeIndex"/> <!-- SortShape -->
<property name="DowngradeBlock" value="rConcreteNewBlockID" />
</block>
<block name="brickNewBlockID">
<property name="Extends" value="brickMaster" />
<property name="Shape" value="New" />
<property name="Model" value="newBlockModel" /> <property name="Place"
value="TowardsPlacerInverted" />
<property name="SortOrder2" value="NewShapeIndex"/> <!-- SortShape -->
<property class="UpgradeBlock"> <property name="ToBlock"
value="pouredConcreteNewBlockID" /> </property>
</block>
<block name="flagstoneNewBlockID">
<property name="Extends" value="flagstoneMaster"/>
<property name="Shape" value="New"/>
<property name="Model" value="newBlockModel" /> <property name="Place"
value="TowardsPlacerInverted" />
<property name="SortOrder2" value="NewShapeIndex"/> <!-- SortShape -->
<property class="UpgradeBlock"> <property name="ToBlock"
value="cobblestoneNewBlockID"/> </property>
</block>
<block name="cobblestoneNewBlockID">
<property name="Extends" value="cobblestoneMaster" />
<property name="Shape" value="New" />
<property name="Model" value="newBlockModel" /> <property name="Place"
value="TowardsPlacerInverted" />
<property name="SortOrder2" value="NewShapeIndex"/> <!-- SortShape -->
<property class="UpgradeBlock"> <property name="ToBlock"
value="pouredConcreteNewBlockID" /> </property>
</block>
=====================================================================
=====================================================================
<block name="woodNewBlockID">
<property name="Extends" value="woodNoUpgradeMaster" />
<property name="Shape" value="New" />
<property name="Model" value="newBlockModel" /> <property name="Place"
value="TowardsPlacerInverted" />
<property name="SortOrder2" value="NewShapeIndex"/> <!-- SortShape -->
<property name="DescriptionKey" value="shapeNewBlockIDGroupDesc"/>
</block>
<block name="brickNewBlockID">
<property name="Extends" value="brickNoUpgradeMaster" />
<property name="Shape" value="New" />
<property name="Model" value="newBlockModel" /> <property name="Place"
value="TowardsPlacerInverted" />
<property name="SortOrder2" value="NewShapeIndex"/> <!-- SortShape -->
<property name="DescriptionKey" value="shapeNewBlockIDGroupDesc"/>
</block>
<block name="concreteNewBlockID">
<property name="Extends" value="concreteNoUpgradeMaster" />
<property name="Shape" value="New" />
<property name="Model" value="newBlockModel" /> <property name="Place"
value="TowardsPlacerInverted" />
<property name="SortOrder2" value="NewShapeIndex"/> <!-- SortShape -->
<property name="DescriptionKey" value="shapeNewBlockIDGroupDesc"/>
</block>
<block name="corrugatedMetalNewBlockID">
<property name="Extends" value="corrugatedMetalNoUpgradeMaster" />
<property name="Shape" value="New" />
<property name="Model" value="newBlockModel" /> <property name="Place"
value="TowardsPlacerInverted" />
<property name="SortOrder2" value="NewShapeIndex"/> <!-- SortShape -->
<property name="DescriptionKey" value="shapeNewBlockIDGroupDesc"/>
</block>