We just released a Feb. 5 '89 prototype of DuckTales for the NES!
If you'd like to support our preservation efforts (and this wasn't cheap), please consider donating or supporting us on Patreon. Thank you!

Prerelease:The Legend of Zelda: Ocarina of Time/iQue/Player Abilities

From The Cutting Room Floor
< Prerelease:The Legend of Zelda: Ocarina of Time‎ | iQue
Revision as of 14:01, 30 November 2020 by ZeeRoX (talk | contribs) (Created Player Abilities subpage.)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

This is a sub-page of Prerelease:The Legend of Zelda: Ocarina of Time/iQue.

z_ocarina2/z_player.h contains a number of items of interest in its many sections.

Status Flags 1

The following two entries are commented out of the list.

#define	P_ACTION_TURN			(1<<1)	/* Turning Flag */
#define	P_ACTION_FIGHT			(1<<2)	/* Battle Mode Flag */

Player Ability Classes

OoT-Desert 2 IGN.jpg

While nothing in the item list below is commented out, z_player.h has numerous references to items being on A. As such, it clearly dates from a time when players could set an item to a C button, then press the C button to transfer it to and use it by pressing A. 

A Button Items

Enum Name Notes
PLAYER_ABILITY_A_ITEM_NON No Item
PLAYER_ABILITY_A_ITEM_M_SWORD_DEMO Master Sword Cutscene
 
PLAYER_ABILITY_A_ITEM_FISHING_ROD
PLAYER_ABILITY_A_ITEM_SWORD
PLAYER_ABILITY_A_ITEM_MINISWORD Kokiri Sword
PLAYER_ABILITY_A_ITEM_LONGSWORD
PLAYER_ABILITY_A_ITEM_STICK
PLAYER_ABILITY_A_ITEM_HAMMER
PLAYER_ABILITY_A_ITEM_BOW
PLAYER_ABILITY_A_ITEM_FIRE_BOW
PLAYER_ABILITY_A_ITEM_ICE_BOW
PLAYER_ABILITY_A_ITEM_LIGHT_BOW
PLAYER_ABILITY_A_ITEM_DARK_BOW Magic arrows removed from the final game.
PLAYER_ABILITY_A_ITEM_TWISTAR_BOW Magic arrows removed from the final game. Misspelling of "Twister", relating to the Forest Medallion once being a Wind Medallion.
PLAYER_ABILITY_A_ITEM_SOUL_BOW Magic arrows removed from the final game.
PLAYER_ABILITY_A_ITEM_PACHI Fairy Slingshot
PLAYER_ABILITY_A_ITEM_HOOK
PLAYER_ABILITY_A_ITEM_HOOK2
PLAYER_ABILITY_A_ITEM_BOMB
PLAYER_ABILITY_A_ITEM_BOMCHU
PLAYER_ABILITY_A_ITEM_BOOM Boomerang
 
PLAYER_ABILITY_A_ITEM_ICE_MEDAL Magic ability removed from the final game. Relates to the Water Medallion once being an Ice Medallion.
PLAYER_ABILITY_A_ITEM_LIGHT_MEDAL Magic ability removed from the final game.
PLAYER_ABILITY_A_ITEM_DARK_MEDAL Magic ability either reworked into Nayru's Love or removed from the final game.
PLAYER_ABILITY_A_ITEM_TWISTAR_MEDAL Magic ability removed from the final game. Misspelling of "Twister", relating to the Forest Medallion once being a Wind Medallion.
PLAYER_ABILITY_A_ITEM_SOUL_MEDAL Magic ability removed from the final game.
PLAYER_ABILITY_A_ITEM_FIRE_MEDAL Magic ability either reworked into Nayru's Love or removed from the final game.
PLAYER_ABILITY_A_ITEM_MAGIC_NATSU Deku Nuts
 
PLAYER_ABILITY_A_ITEM_ELF_OKARINA Fairy Ocarina
PLAYER_ABILITY_A_ITEM_OKARINA
 
PLAYER_ABILITY_A_ITEM_BOTTLE
PLAYER_ABILITY_A_ITEM_BOTTLE_FISH
PLAYER_ABILITY_A_ITEM_BOTTLE_FIRE
PLAYER_ABILITY_A_ITEM_BOTTLE_BUG
PLAYER_ABILITY_A_ITEM_BOTTLE_POH
PLAYER_ABILITY_A_ITEM_BOTTLE_BIGPOH
PLAYER_ABILITY_A_ITEM_BOTTLE_MAIL Ruto's Letter
 
PLAYER_ABILITY_A_ITEM_BOTTLE_RED
PLAYER_ABILITY_A_ITEM_BOTTLE_BLUE
PLAYER_ABILITY_A_ITEM_BOTTLE_GREEN
PLAYER_ABILITY_A_ITEM_BOTTLE_MILK
PLAYER_ABILITY_A_ITEM_BOTTLE_HALF_MILK
PLAYER_ABILITY_A_ITEM_BOTTLE_ELF Fairy's Spirit
 
PLAYER_ABILITY_A_ITEM_LETTER
PLAYER_ABILITY_A_ITEM_EGG
PLAYER_ABILITY_A_ITEM_NIWATORI
PLAYER_ABILITY_A_ITEM_BEAN
PLAYER_ABILITY_A_ITEM_POCKET_EGG
PLAYER_ABILITY_A_ITEM_HANDY_COCK This unfortunate item name stems from the Pocket Cucco being called "Cucco That Sits on Your Hand" in Japanese.
PLAYER_ABILITY_A_ITEM_KOJIRO
PLAYER_ABILITY_A_ITEM_AYASHII_KINOKO Odd Mushroom
PLAYER_ABILITY_A_ITEM_AYASHII_DRUG Odd Potion
PLAYER_ABILITY_A_ITEM_NOKOGIRI Saw
PLAYER_ABILITY_A_ITEM_BREAKE_GORON_SWORD Broken Goron's Sword
PLAYER_ABILITY_A_ITEM_SPECIAL_DRUG Prescription
PLAYER_ABILITY_A_ITEM_MEDAMA_FROG Eyeball Frog
PLAYER_ABILITY_A_ITEM_EYES_DRUG Biggoron's Eyedrops
PLAYER_ABILITY_A_ITEM_GORON_SWORD_CARD Claim Check
 
PLAYER_ABILITY_A_ITEM_MASK_KI_TAN Keaton Mask
PLAYER_ABILITY_A_ITEM_MASK_SKJ Skull Mask
PLAYER_ABILITY_A_ITEM_MASK_REDEAD Spooky Mask
PLAYER_ABILITY_A_ITEM_MASK_RABIT Bunny Hood
PLAYER_ABILITY_A_ITEM_MASK_GOLON Goron Mask
PLAYER_ABILITY_A_ITEM_MASK_ZOLA Zora Mask
PLAYER_ABILITY_A_ITEM_MASK_GELD Gerudo Mask
PLAYER_ABILITY_A_ITEM_MASK_TRUTH
 
PLAYER_ABILITY_A_ITEM_MAGIC_GRASS Misspelling of Magic Glass, the Lens of Truth.
PLAYER_ABILITY_A_ITEM_MAX

This list of boot abilities is found directly below the item list above. Nothing akin to the Pegasus Boots exists in Ocarina of Time, but putting on the Bunny Hood in Majora's Mask does cause Link's speed to increase.

enum {
    PERFO_NORMAL_BOOTS,
    PERFO_HEAVY_BOOTS,
    PERFO_HOBA_BOOTS,
    PERFO_ROOM,
//    PERFO_DASH_BOOTS,
    PERFO_WATER_HEVY_BOOTS,
    PERFO_MAX
};