public void SetSpellcastingFeature(FeatureDefinitionCastSpell spellcastingFeature)
 {
     Traverse.Create(power).Field("spellcastingFeature").SetValue(spellcastingFeature);
 }
 public static T SetSpellcastingFeature <T>(this T entity, FeatureDefinitionCastSpell value)
     where T : FeatureDefinitionPower
 {
     entity.SetField("spellcastingFeature", value);
     return(entity);
 }