class QuenchableFireSpecialAction extends SpecialAction<QuenchableFireSpecialAction> {
public QuenchableFireSpecialAction(UUID effectId) {
this.addCost(new ManaCostsImpl("{U}"));
this.addEffect(new RemoveDelayedTriggeredAbilityEffect(effectId));
this.addEffect(new RemoveSpecialActionEffect(this.getId()));
}