ItemPropertyDamageBonusVsRace(int, int, int)

Sets a "damage bonus versus racial type" itemproperty.

itemproperty ItemPropertyDamageBonusVsRace(
    int nRace,
    int nDamageType,
    int nDamage
);

Parameters

nRace

IP_CONST_RACIALTYPE_*

nDamageType

IP_CONST_DAMAGETYPE_*

nDamage

IP_CONST_DAMAGEBONUS_*


Description

Sets item property Damage bonus vs. specific race. You must specify the racial group constant (IP_CONST_RACIALTYPE_*), the damage type constant (IP_CONST_DAMAGETYPE_*) and the amount of damage constant (IP_CONST_DAMAGEBONUS_*).

NOTE: not all the damage types will work; use only the following: Acid, Bludgeoning, Cold, Electrical, Fire, Piercing, Slashing, Sonic.



Remarks

The itemproperty commands are special constructors - they construct an itemproperty "object" which can then be applied to an item using the AddItemProperty command, much like effects need to be first constructed, then applied with ApplyEffectToObject.

It will often be a good idea to remove similar itemproperties from the item first. There's a command in the "x2_inc_itemprop" include file called IPSafeAddItemProperty which will do that for you. Check IPSafeAddItemProperty for current bug report.

The IP_CONST_RACIALTYPE_* constant can be retrieved off this type of item property using GetItemPropertySubType. The IP_CONST_DAMAGEBONUS_* constant can be retrieved using GetItemPropertCostTableValue. The IP_CONST_DAMAGETYPE_* constant can be retrieved using GetItemPropertyParam1Value.


Version

1.61

Example

#include "x2_inc_itemprop"
//The include is for the IPSafeAddItemProperty function

//Makes the PC speaker's onhand weapon deal 2d8 additional fire damage against giants
void main()
{
object oPC=GetPCSpeaker();
object oItem = GetItemInSlot(INVENTORY_SLOT_RIGHTHAND, oPC);
int nRace = IP_CONST_RACIALTYPE_GIANT;
int nDamageType = IP_CONST_DAMAGETYPE_FIRE;
int nDamage = IP_CONST_DAMAGEBONUS_2d8;

if (!GetIsObjectValid(oItem)) return; //stop if no weapon

itemproperty ipAdd = ItemPropertyDamageBonusVsAlign( nRace, nDamageType, nDamage);

IPSafeAddItemProperty(oItem, ipAdd);
}

See Also

functions: AddItemProperty | IPSafeAddItemProperty
categories: Item Creation Functions
constants: IP_CONST_DAMAGEBONUS_* Constants | IP_CONST_DAMAGETYPE_* Constants | IP_CONST_RACIALTYPE_* Constants


 author: Lilac Soul, editor: Peter Busby