Final Fantasy Wiki
m (enemy templates split)
Tag: sourceedit
m (Bot: Changing template: Enemy-stub)
(14 intermediate revisions by 3 users not shown)
Line 1: Line 1:
{{sideicon|FFIX}}
+
{{sideicon|prime=FFIX|FFAB|FFRK}}
  +
{{DISPLAYTITLE:Nymph (''Final Fantasy IX'')}}
{{Enemy
 
  +
{{infobox enemy
 
| release = FFIX
 
| release = FFIX
 
|name = Nymph
 
|name = Nymph
Line 10: Line 11:
 
</gallery>
 
</gallery>
 
|location = Grassy areas North and West of the Vube Desert; Pualei Planes
 
|location = Grassy areas North and West of the Vube Desert; Pualei Planes
  +
|aiscript=true
 
}}
 
}}
 
The '''Nymph''' is an enemy from ''[[Final Fantasy IX]]'' found in the grassy areas North and West of Cleyra on the [[Mist Continent]]. She uses [[Blu Mag (Final Fantasy IX)#Night|Night]] to put the entire party to [[Sleep (status)|Sleep]], which Quina can learn by eating a Nymph. Otherwise, she is not very strong.
 
The '''Nymph''' is an enemy from ''[[Final Fantasy IX]]'' found in the grassy areas North and West of Cleyra on the [[Mist Continent]]. She uses [[Blu Mag (Final Fantasy IX)#Night|Night]] to put the entire party to [[Sleep (status)|Sleep]], which Quina can learn by eating a Nymph. Otherwise, she is not very strong.
   
A [[friendly enemies|friendly]] Nymph can also be encountered as part of a side quest in the forest on Pualei Plains on the [[Outer Continent]]. She will ask for three [[List of Final Fantasy IX jewels#Ore|Ores]] and will reward the party with 30 AP for such action.
+
A [[friendly monsters|friendly]] Nymph can also be encountered as part of a side quest in the forest on Pualei Plains on the [[Outer Continent]]. She will ask for three [[Final Fantasy IX jewels#Ore|Ores]] and will reward the party with 30 AP for such action.
   
 
==Stats==
 
==Stats==
  +
{{infobox enemy stats FFIX
{{FFIX Enemy Stats
 
 
| name = Nymph
 
| name = Nymph
 
| 1 location = Grassy areas North and West of the Vube Desert
 
| 1 location = Grassy areas North and West of the Vube Desert
Line 46: Line 48:
 
| 1 defend = Immune
 
| 1 defend = Immune
 
| 1 vanish = Immune
 
| 1 vanish = Immune
| 1 drop 2 = [[List of Final Fantasy IX items#Potion|Potion]]
+
| 1 drop 2 = [[Final Fantasy IX items#Potion|Potion]]
| 1 drop 3 = [[List of Final Fantasy IX items#Annoyntment|Annoyntment]]
+
| 1 drop 3 = [[Final Fantasy IX items#Annoyntment|Annoyntment]]
| 1 drop 4 = [[List of Final Fantasy IX items#Ether|Ether]]
+
| 1 drop 4 = [[Final Fantasy IX items#Ether|Ether]]
| 1 steal 1 = [[List of Final Fantasy IX items#Echo Screen|Echo Screen]]
+
| 1 steal 1 = [[Final Fantasy IX items#Echo Screen|Echo Screen]]
| 1 steal 2 = [[List of Final Fantasy IX items#Ore|Ore]]
+
| 1 steal 2 = [[Final Fantasy IX items#Ore|Ore]]
| 1 steal 3 = [[List of Final Fantasy IX items#Hi-Potion|Hi-Potion]]
+
| 1 steal 3 = [[Final Fantasy IX items#Hi-Potion|Hi-Potion]]
| 1 steal 4 = [[List of Final Fantasy IX items#Phoenix Pinion|Phoenix Pinion]]
+
| 1 steal 4 = [[Final Fantasy IX items#Phoenix Pinion|Phoenix Pinion]]
 
| 1 card = Nymph
 
| 1 card = Nymph
 
| 1 blue magic = Night
 
| 1 blue magic = Night
| 1 abilities = [[List of Final Fantasy IX enemy abilities#Silent Kiss|Silent Kiss]], [[List of Final Fantasy IX enemy abilities#Fira|Fira]], [[List of Final Fantasy IX enemy abilities#Night|Night]]
+
| 1 abilities = [[Final Fantasy IX enemy abilities#Silent Kiss|Silent Kiss]], [[Final Fantasy IX enemy abilities#Fira|Fira]], [[Final Fantasy IX enemy abilities#Night|Night]]
 
| 1 ap = 1 - 2
 
| 1 ap = 1 - 2
 
| sec 2 = Friendly
 
| sec 2 = Friendly
Line 100: Line 102:
 
| 2 mini = Immune
 
| 2 mini = Immune
 
| 2 gradual petrify = Immune
 
| 2 gradual petrify = Immune
| 2 drop 1 = [[List of Final Fantasy IX jewels#Emerald|Emerald]]
+
| 2 drop 1 = [[Final Fantasy IX jewels#Emerald|Emerald]]
 
| 2 card = Nymph
 
| 2 card = Nymph
| 2 info = Characters do not [[Victory pose|pose on victory]]. Give 3 [[List of Final Fantasy IX jewels#Ore|Ores]] for 30 AP.
+
| 2 info = Characters do not [[Victory pose|pose on victory]]. Give 3 [[Final Fantasy IX jewels#Ore|Ores]] for 30 AP.
  +
}}
  +
  +
== AI script ==
  +
{{AI FFIX|code=
  +
Using global variable nightflag
  +
  +
Function Nymph_Init
  +
:set attacklist = [ Silent Kiss ; Silent Kiss ; Fira ; Fira ; Night ]
  +
  +
  +
Function Nymph_ATB
  +
:set silentkisstarget = RandomInTeam( NotMatching(SV_PlayerTeam[STATUS_CURRENT], PETRIFY │ DEATH │ JUMP │ SILENCE) )
  +
:if ( !( #silentkisstarget ) )
  +
::set silentkisstarget = RandomInTeam(SV_PlayerTeam)
  +
:set selectedattack = <abbr title="Picking a random attack is actually not as simple as a single call. If SV_Target is set to 0 (no target) or if the enemy doesn't have enough MP, another random attack is picked.">RandomAttack</abbr>( attacklist )
  +
:if ( selectedattack == Silent Kiss )
  +
::set SV_Target = silentkisstarget
  +
:elseif ( selectedattack == Silent Kiss )
  +
::set SV_Target = silentkisstarget
  +
:elseif ( selectedattack == Fira )
  +
::set SV_Target = RandomInTeam(SV_PlayerTeam)
  +
:elseif ( selectedattack == Fira )
  +
::set SV_Target = RandomInTeam(SV_PlayerTeam)
  +
:elseif ( selectedattack == Night )
  +
::set SV_Target = ( SV_Target = ( SV_PlayerTeam │ SV_EnemyTeam ) )
  +
:if ( selectedattack == Night )
  +
::if ( nightflag )
  +
:::set SV_Target = RandomInTeam(SV_PlayerTeam)
  +
:::set selectedattack = Fira
  +
::else
  +
:::set nightflag = TRUE
  +
:Attack( selectedattack )
 
}}
 
}}
   
 
== [[Tetra Master (minigame)|Tetra Master]] ==
 
== [[Tetra Master (minigame)|Tetra Master]] ==
{{FFIX Tetra Master
+
{{Card FFIX
 
|name = Nymph
 
|name = Nymph
 
|image = Card017.png
 
|image = Card017.png
 
|number = 017
 
|number = 017
|location = [[Alexandria]]
+
|location = [[Alexandria]], Evacuation sidequest in [[Cleyra]]
 
|align = left
 
|align = left
 
}}
 
}}
{{-|left}}
+
{{clear|left}}
   
 
== Other appearances ==
 
== Other appearances ==
 
=== ''[[Final Fantasy Airborne Brigade]]'' ===
 
=== ''[[Final Fantasy Airborne Brigade]]'' ===
 
{{Enemy section|Final Fantasy Airborne Brigade}}
{{sideicon|FFAB}}
 
 
{{clear}}
{{Enemy-stub|Final Fantasy Airborne Brigade}}
 
{{-}}
 
   
 
=== ''[[Final Fantasy Record Keeper]]'' ===
 
=== ''[[Final Fantasy Record Keeper]]'' ===
[[File:FFRK Nymph FFIX.png|left]]
+
[[File:FFRK Nymph FFIX.png|right]]
 
{{Enemy section|Final Fantasy Record Keeper}}
{{sideicon|FFRK}}
 
  +
{{clear}}
{{Enemy-stub|Final Fantasy Record Keeper}}
 
   
 
== Gallery ==
 
== Gallery ==
Line 134: Line 167:
 
== Etymology ==
 
== Etymology ==
 
{{Etym|Nymph}}
 
{{Etym|Nymph}}
[[Category:Final Fantasy IX enemies]]
+
[[Category:Enemies in Final Fantasy IX]]
 
[[Category:Final Fantasy IX Edible Enemies]]
 
[[Category:Final Fantasy IX Edible Enemies]]

Revision as of 16:33, 13 January 2020

Template:Sideicon

The Nymph is an enemy from Final Fantasy IX found in the grassy areas North and West of Cleyra on the Mist Continent. She uses Night to put the entire party to Sleep, which Quina can learn by eating a Nymph. Otherwise, she is not very strong.

A friendly Nymph can also be encountered as part of a side quest in the forest on Pualei Plains on the Outer Continent. She will ask for three Ores and will reward the party with 30 AP for such action.

Stats

Normal

Friendly

AI script

Using global variable nightflag

Function Nymph_Init
   set attacklist = [ Silent Kiss ; Silent Kiss ; Fira ; Fira ; Night ]


Function Nymph_ATB
   set silentkisstarget = RandomInTeam( NotMatching(SV_PlayerTeam[STATUS_CURRENT], PETRIFY | DEATH | JUMP | SILENCE) )
   if ( !( #silentkisstarget ) )
      set silentkisstarget = RandomInTeam(SV_PlayerTeam)
   set selectedattack = RandomAttack( attacklist )
   if ( selectedattack == Silent Kiss )
      set SV_Target = silentkisstarget
   elseif ( selectedattack == Silent Kiss )
      set SV_Target = silentkisstarget
   elseif ( selectedattack == Fira )
      set SV_Target = RandomInTeam(SV_PlayerTeam)
   elseif ( selectedattack == Fira )
      set SV_Target = RandomInTeam(SV_PlayerTeam)
   elseif ( selectedattack == Night )
      set SV_Target = ( SV_Target = ( SV_PlayerTeam | SV_EnemyTeam ) )
   if ( selectedattack == Night )
      if ( nightflag )
         set SV_Target = RandomInTeam(SV_PlayerTeam)
         set selectedattack = Fira
      else
         set nightflag = TRUE
   Attack( selectedattack )


Tetra Master

Tetra Master
Nymph
#017
Location: Alexandria, Evacuation sidequest in Cleyra


Other appearances

Final Fantasy Airborne Brigade

Baknamy FFTA2This section about an enemy in Final Fantasy Airborne Brigade is empty or needs to be expanded. You can help the Final Fantasy Wiki by expanding it.


Final Fantasy Record Keeper

FFRK Nymph FFIX
Baknamy FFTA2This section about an enemy in Final Fantasy Record Keeper is empty or needs to be expanded. You can help the Final Fantasy Wiki by expanding it.


Gallery

Etymology

In Greek mythology, nymphs are nature entities in the form of nubile women associated with a particular landform or location. Nymphs tended to frequent areas distant from humans, but could be encountered by lone travelers outside the village, where their music might be heard, and the traveler could spy on their dancing or bathing in a stream or pool either during the noon heat or in the middle of the night. Such encounters could be dangerous, bringing dumbness, besotted infatuation, madness or stroke to the unfortunate spectator.