Transferable Items

From gdp3
Jump to: navigation, search

Game items that are possible to transfer between avatars or characters.

Players may wish to swap game items with other players or characters in game worlds. This is possible if they are Transferable Items, i.e. there are actions that make it possible to change who possesses specific game items.

Examples

The Left 4 Dead series allows players to hand over health pills, pipe bombs, and other secondary items to each other to ensure that the group as a whole is most adequately equipped.

World of Warcraft lets players trade many items with non-players characters or, through an auction house, each other. However, not all game items can be traded this way since the more powerful ones are often "soulbound" to those that pickup, use, or equip them. Such game items can only be traded with non-player characters but doing this removes them from the game state.

The Fallout series allows players to move game items freely between themselves and their companions, both to make the group as efficient as possible in combat and to make use of strong companions as beasts of burden. Dragon Age II also lets all items be Transferable Items between the player's character and his or her companions but only allows transferrals of items that the receiver can use (this since the action of transferring is also the action of equipping in the game).

The pick-ups players can retrieve from the courses in Mario Kart: Double Dash! can be handed over from the passenger to the driver and vice versa.

Using the pattern

Implementing Transferable Items include picking which Game Items should be transferable, what actions makes this possible, and to whom one can transfer them. Since most solutions to this makes the transfer non-diegetically, the pattern can be applied to Resources as well as Game Items and all mentions of the latter below also imply the former.

For efficiency reasons, the system for Transferable Items is typically applied to all Game Items first and then limitations, if any, are imposed. Examples of limitations include Enforced Ownership and only letting those that have the Privileged Ability to use or equip the Game Items to also be given them. The use of Enforced Ownership may at first seem to be fully incompatible with Transferable Items. This is however not the case since the enforcement may only hinder transferrals to certain other Characters - World of Warcraft for example lets "soulbound" Game Items be sold to Non-Player Characters or Self-Service Kiosks. This still makes it impossible for other players to access the Game Items since they cannot be sold, and the design solution is effectively a case of Game Element Removal to create a Faucet/Sink system. Using a shared Inventory and thereby implying that only equipped Game Items are actually in a Character's possession, Dragon Age II shows an example of how Privileged Abilities limit how Game Items can be transferred. Here Game Items not usable by a Character due to him or her being the wrong class or not being "Hawke" simply cannot be dragged to that Player Character or Companion.

Enabling Transferable Items is most easily done through letting Agents drop Game Items, possibly as Pick-Ups. Other solutions are implementing support for Trading or Stealing as possible game actions. Nearly all cases require Inventories, and an easy way to implement willing transfer of items (e.g. between a Player Character and his or her Companions) is to provide two Inventories next to each other and allowing Game Items to be dragged between them.

Whom one can transfer Game Items with naturally depend on what actions provides the possibility. Trading may be possible with all Characters but Enemies, while Stealing may be possible from all but create different types of instantiations of the pattern Actions Have Diegetically Social Consequences.

Complete control of transferrals may be limited to that between Player Characters, or that between Player Characters and Companions. As mentioned above, some Transferable Items may only be possible to sell to Non-Player Characters or Self-Service Kiosks as a consequence of uses of Enforced Ownership. Avatars may replace Characters in some of the cases, but for all but the most trivial cases of Transferable Items it is required that the participants have the abstract structures of Inventories.

Interface Aspects

Making Game Items transferable through Trading or Stealing typically requires Secondary Interface Screens.

Consequences

Transferable Items gives players a Freedom of Choice of which Game Items to have. It also modulates Ownership by enabling Transfer of Control of it, and by doing so opens up for Gain Ownership goals.

Teams in Multiplayer Games or those with Companions, enable Transferable Items to support Cooperation and Coordination.

Relations

Can Instantiate

Freedom of Choice, Gain Ownership, Ownership, Transfer of Control

with Teams or Companions

Cooperation, Coordination

Can Modulate

Avatars, Characters, Companions, Enemies, Game Items, Non-Player Characters, Player Characters, Resources, Self-Service Kiosks

Can Be Instantiated By

Inventories, Secondary Interface Screens

Can Be Modulated By

Privileged Abilities

Possible Closure Effects

-

Potentially Conflicting With

Enforced Ownership

History

New pattern created in this wiki.

References

-

Acknowledgements