Needle Kiss is an enemy in Final Fantasy VII. It is fought on the world map near and around Mt. Corel and in the second round of the Battle Square during the time Tiny Bronco is available. When fought in the Battle Square its stats are enhanced with double the regular HP and its Attack and Magic Attack are increased by 25%.
Stats[]
Formations[]
# | Formation |
---|---|
088 | Needle Kiss A, Needle Kiss B |
089 | Row 1: Cokatolis, Needle Kiss A Row 2: Needle Kiss B |
090 | Needle Kiss A, Needle Kiss B (Back Attack) |
091 | Needle Kiss A, Needle Kiss B (Side Attack) |
492 | Row 1: Needle Kiss A, Needle Kiss B Row 2: Needle Kiss C |
493 | Row 1: Search Crown A, Search Crown B, Search Crown C Row 2: Needle Kiss[note 1] |
494 | Row 1: Needle Kiss, Search Crown Row 2: Bagnadrana |
495 | Row 1: Needle Kiss A, Needle Kiss B Row 2: Needle Kiss C (Back Attack) |
504 | Row 1: Needle Kiss A, Needle Kiss B, Needle Kiss C Row 2: Cokatolis[note 2] |
507 | Needle Kiss A, Needle Kiss B, Needle Kiss C, Needle Kiss D, Needle Kiss E (Attack from both sides) |
509 | Row 1: Needle Kiss A, Needle Kiss B Row 2: Bagnadrana |
510 | Search Crown A, Search Crown B, Search Crown C, Needle Kiss A, Needle Kiss B |
Locations[]
Mt. Corel | |
---|---|
Mountain Road | 492, 493, 494, 495 (Back Attack) |
Road to Corel Reactor | 492, 493, 494, 495 (Back Attack) |
Railway | 504, 507 (Attack from both sides) |
River | 509, 510 |
Corel Area | |
Dirt | 088, 089, 090 (Back Attack), 091 (Side Attack) |
Battle Square (with Tiny Bronco available) | |
Group B - Battle 2 | 492, 494 |
Battle[]
Needle Kiss uses the fairly powerful Thunder Kiss ability, but the damage can be mitigated by linking the Elemental Materia with Lightning Materia in a character's armor, if the player obtained Elemental from Mayor Domino earlier. Needle Kiss will sometimes use his Chute Attack twice in one turn.
Needle Kiss drops powerful Bolt Plumes and Softs can be stolen from it; Remedy can also be morphed from it, making it potentially a useful enemy to fight.
AI script[]
AI: Setup {
- SpclChance = 8
} AI: Main {
- If (Rnd(1..SpclChance) == 1) Then
- {
- Choose Random Opponent without Petrify Status
- Use Thunder Kiss on Target
- } Else {
- Choose Random Opponent without Petrify Status
- Use <Chute Attack> on Target
- If (Rnd(1..SpclChance) == 1) Then
- {
- Choose Random Opponent without Petrify Status
- Use <Chute Attack> on Target
- }
- }
} AI: Counter - General {
- If (Needle Kiss's HP <= 25% of Needle Kiss's Max HP) Then
- {
- SpclChance = 2
- } Else If (Needle Kiss's HP <= 50% of Needle Kiss's Max HP) Then {
- SpclChance = 4
- } Else If (Needle Kiss's HP <= 75% of Needle Kiss's Max HP) Then {
- SpclChance = 6
- } Else {
- SpclChance = 8
- }
}