Updated AMS marker feats. Removed arcane & divine marker feats. Updated Dread Necromancer for epic progression. Updated weapon baseitem models. Updated new weapons for crafting & npc equip. Updated prefix. Updated release archive.
15 lines
256 B
Plaintext
15 lines
256 B
Plaintext
/*
|
|
Minotaur does an extra 1d6 damage over the
|
|
3d6+6 of its normal attack
|
|
*/
|
|
|
|
#include "prc_inc_combmove"
|
|
|
|
void main()
|
|
{
|
|
object oPC = OBJECT_SELF;
|
|
object oTarget = PRCGetSpellTargetObject();
|
|
|
|
DoCharge(oPC, oTarget, TRUE, TRUE, d6());
|
|
}
|