-
Notifications
You must be signed in to change notification settings - Fork 259
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #3101 from SaltyKarl/VFEPVI-fix
VFE- Pirate crypto cannon damage fix.
- Loading branch information
Showing
1 changed file
with
10 additions
and
7 deletions.
There are no files selected for viewing
17 changes: 10 additions & 7 deletions
17
... Factions Expanded - Pirates/Defs/Vanilla Factions Expanded - Pirates/Ammo/DamageDefs.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,30 +1,33 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<Defs> | ||
|
||
<!-- | ||
While these Defs are only used conditionally with other mods active, | ||
they don't actually do anything by themselves, so there's no harm loading them. | ||
--> | ||
<!-- While these Defs are only used conditionally with other mods active, they don't actually do anything by themselves, so there's no harm loading them. --> | ||
|
||
<DamageDef ParentName="Bullet"> | ||
<DamageDef ParentName="Frostbite"> | ||
<defName>CE_Cryptofuel</defName> | ||
<label>Crypto Burn</label> | ||
<hediff>Frostbite</hediff> | ||
<workerClass>DamageWorker_AddInjury</workerClass> | ||
<additionalHediffs> | ||
<li> | ||
<hediff>Hypothermia</hediff> | ||
<severityPerDamageDealt>0.01</severityPerDamageDealt> | ||
</li> | ||
</additionalHediffs> | ||
<hasForcefulImpact>true</hasForcefulImpact> | ||
<makesBlood>false</makesBlood> | ||
<canInterruptJobs>true</canInterruptJobs> | ||
<externalViolence>true</externalViolence> | ||
<deathMessage>{0} has been frozen to death.</deathMessage> | ||
<armorCategory>Heat</armorCategory> | ||
<minDamageToFragment>15</minDamageToFragment> | ||
<defaultArmorPenetration>0</defaultArmorPenetration> | ||
<defaultArmorPenetration>0.5</defaultArmorPenetration> | ||
<explosionHeatEnergyPerCell>-20</explosionHeatEnergyPerCell> | ||
<soundExplosion>Explosion_Stun</soundExplosion> | ||
<combatLogRules>Damage_Flame</combatLogRules> | ||
<canUseDeflectMetalEffect>false</canUseDeflectMetalEffect> | ||
<explosionColorCenter>(0,1,1,1)</explosionColorCenter> | ||
<explosionColorEdge>(0,0.70,1,1)</explosionColorEdge> | ||
</DamageDef> | ||
|
||
</Defs> |