Clear out experimental .35 files

Clear out experimental .35 files
This commit is contained in:
Jaysyn904
2024-02-11 13:04:14 -05:00
parent 2112b92e24
commit 618cd42b82
22356 changed files with 0 additions and 1248956 deletions

View File

@@ -1,24 +0,0 @@
//:://////////////////////////////////////////////
//:: Poison: 2d6 Dexterity damage
//:: poison_2d6_dex
//:://////////////////////////////////////////////
/** @file
This is one of the scripts that implement causing
poison ability damage using the ApplyAbilityDamage()
wrapper.
*/
//:://////////////////////////////////////////////
//:: Created By: Ornedan
//:: Created On: 01.08.2005
//:://////////////////////////////////////////////
#include "inc_abil_damage"
void main()
{
object oTarget = OBJECT_SELF;
int nDamage = d6(2);
int nAbility = ABILITY_DEXTERITY;
ApplyAbilityDamage(oTarget, nAbility, nDamage, DURATION_TYPE_TEMPORARY, TRUE, -1.0f);
}