Exemplo n.º 1
0
 internal void AddMember(NwCreature creature)
 {
     faction.AddMember(creature);
 }
Exemplo n.º 2
0
 public static InternalVariableInt DamageLevelOverride(NwCreature creature) => creature.GetObjectVariable <InternalVariableInt>("DAMAGE_LEVEL");
Exemplo n.º 3
0
 /// <summary>
 /// Adjusts how this faction feels about the specified creature.
 /// </summary>
 /// <param name="creature">The target creature for the reputation change.</param>
 /// <param name="adjustment">The adjustment in reputation to make.</param>
 public void AdjustReputation(NwCreature creature, int adjustment)
 {
     creature.Creature.AdjustReputation(faction.m_nFactionId, adjustment);
 }
Exemplo n.º 4
0
 internal CreatureLevelInfo(NwCreature creature, CNWLevelStats levelStats)
 {
     this.creature   = creature;
     this.levelStats = levelStats;
 }