Difference between revisions of "Potion Script"

From the CreationKit Wiki
Jump to navigation Jump to search
imported>2857107966
imported>Palingard
 
(11 intermediate revisions by 4 users not shown)
Line 30: Line 30:
:'''Bool [[IsFood - Potion|IsFood]]()'''
:'''Bool [[IsFood - Potion|IsFood]]()'''
:*Returns whether the potion is considered food.
:*Returns whether the potion is considered food.
:'''Bool [[IsPoison- Potion|IsPoison]]()'''
:*Returns whether the potion is considered Poison.


:'''Int [[GetNumEffects - Potion|GetNumEffects]]()'''
:'''Int [[GetNumEffects - Potion|GetNumEffects]]()'''
Line 49: Line 52:
:*Returns which effect of the potion has the highest cost.
:*Returns which effect of the potion has the highest cost.


:'''[[SetNthEffectMagnitude - Spell|SetNthEffectMagnitude]](Int ''index'', Float ''value'')'''
:'''[[SetNthEffectMagnitude - Potion|SetNthEffectMagnitude]](Int ''index'', Float ''value'')'''
:*Sets the magnitude of the specified effect.
:*Sets the magnitude of the specified effect.


:'''[[SetNthEffectArea - Spell|SetNthEffectArea]](Int ''index'', Int ''value'')'''
:'''[[SetNthEffectArea - Potion|SetNthEffectArea]](Int ''index'', Int ''value'')'''
:*Sets the area of the specified effect.
:*Sets the area of the specified effect.


:'''[[SetNthEffectDuration - Spell|SetNthEffectDuration]](Int ''index'', Int ''value'')'''
:'''[[SetNthEffectDuration - Potion|SetNthEffectDuration]](Int ''index'', Int ''value'')'''
:*Sets the duration of the specified effect.
:*Sets the duration of the specified effect.


:'''Bool [[IsPoison- Potion|IsPoison]]()'''
:'''SoundDescriptor [[GetUseSound- Potion|GetUseSound]]()'''
:*Returns whether the potion is considered potion .
:*Returns the [[Sound Descriptor|sound descriptor]] of this potion as a form id.
 
:'''Float[] [[GetEffectMagnitudes - Potion|GetEffectMagnitudes]]()'''
:*Returns all the magnitudes of this object in order.
 
:'''Int[] [[GetEffectAreas- Potion|GetEffectAreas]]()'''
:*Returns all the areas of this object in order.
 
:'''Int[] [[GetEffectDurations - Potion|GetEffectDurations]]()'''
:*Returns all the durations of this object in order.


:'''SoundDescriptor [[GetUseSound- Potion|GetUseSound]]()'''
:'''MagicEffect[] [[GetMagicEffects- Potion|GetMagicEffects]]()'''
:*Returns the use sound of this potion.
:*Returns all the magic effects of this object in order.


== Events ==
== Events ==
None
None

Latest revision as of 08:37, 23 September 2016


Extends: Form Script

Script that represents an alchemy potion.

Definition[edit | edit source]

ScriptName Potion extends Form

Properties[edit | edit source]

None

Global Functions[edit | edit source]

None

Member Functions[edit | edit source]

Bool IsHostile()
  • Returns whether this potion is considered hostile or not.


SKSE Member Functions[edit | edit source]

Bool IsFood()
  • Returns whether the potion is considered food.
Bool IsPoison()
  • Returns whether the potion is considered Poison.
Int GetNumEffects()
  • Returns the number of effects on this potion.
Float GetNthEffectMagnitude(Int index)
  • Returns the magnitude of the specified effect of this potion.
Int GetNthEffectArea(Int index)
  • Returns the area of the specified effect of this potion.
Int GetNthEffectDuration(Int index)
  • Returns the duration of the specified effect of this potion.
MagicEffect GetNthEffectMagicEffect(Int index)
  • Returns the MagicEffect of the specified effect of this potion.
Int GetCostliestEffectIndex()
  • Returns which effect of the potion has the highest cost.
SetNthEffectMagnitude(Int index, Float value)
  • Sets the magnitude of the specified effect.
SetNthEffectArea(Int index, Int value)
  • Sets the area of the specified effect.
SetNthEffectDuration(Int index, Int value)
  • Sets the duration of the specified effect.
SoundDescriptor GetUseSound()
Float[] GetEffectMagnitudes()
  • Returns all the magnitudes of this object in order.
Int[] GetEffectAreas()
  • Returns all the areas of this object in order.
Int[] GetEffectDurations()
  • Returns all the durations of this object in order.
MagicEffect[] GetMagicEffects()
  • Returns all the magic effects of this object in order.

Events[edit | edit source]

None