示例#1
0
 public void stack()
 {
     if (subject.getBurningEffect() != null)
     {
         subject.beginBurning(source);
         subject.beginWounded(source);
     }
 }
示例#2
0
    public override bool activate(ObjectActor self, ObjectCombatable target, out string message)
    {
        ObjectActor actor = (ObjectActor)target;

        if (actor != null)
        {
            actor.beginBleeding(self);
            actor.beginBurning(self);
            actor.beginChilled(self);
            actor.beginConcussed(self);
            actor.beginCrippled(self);
            actor.beginExhausted(self);
            actor.beginPoisoned(self);
            actor.beginScarred(self);
            actor.beginShattered(self);
            actor.beginWeakened(self);
            actor.beginWounded(self);
        }
        message = "";
        return(false);
    }