root/trunk/AE-go_GameServer/src/com/aionemu/gameserver/skillengine/model/SkillTemplate.java

13741511
72
    protected int duration;
72
    protected int duration;
73
    @XmlAttribute
73
    @XmlAttribute
74
    protected Integer cooldown;
74
    protected Integer cooldown;
75
    @XmlAttribute(name = "penalty_skill_id")
76
    protected int penaltySkillId;
75
77
76
    /**
78
    /**
77
	 * @return the initProperties
79
	 * @return the initProperties
...
...
282
        }
284
        }
283
    }
285
    }
284
286
287
	/**
288
	 * @return the penaltySkillId
289
	 */
290
	public int getPenaltySkillId()
291
	{
292
		return penaltySkillId;
293
	}
294
285
}
295
}