Chess Pieces: Difference between revisions

From PZwiki
(Created page)
 
(added models + update code block)
Line 1: Line 1:
{{languages}}
{{languages}}
{{header|The Game World|Items|version=Version 40|incver=43}}{{Infobox normal
{{header|The Game World|Items|version=Version 41|incver=78.16}}{{Infobox normal
| display_name = Chess Pieces
| display_name = Chess Pieces
| name_colour =  
| name_colour =  
| name_text_colour =  
| name_text_colour =  
| image = ChessBlack.png
| image = WhiteChessPieces_Model.png
| image_width = 120px
| image_width = 200px
|alternate_image = ChessWhite.png
| alternate_image = ChessWhite.png
|alternate_name = White Chess Piece
| alternate_name = White Chess Pieces
| alternate_image2 = ChessBlack.png
| alternate_name2 = Black Chess Pieces
| category = Junk
| weight = 0.1
| weight = 0.1
| function = ''None''
| function = ''None''
Line 18: Line 21:
==Distribution==
==Distribution==
Chess pieces can be found in toy stores and wardrobes.  
Chess pieces can be found in toy stores and wardrobes.  
==Gallery==
<gallery>
WhiteChessPieces_Model.png|White chess pieces model
BlackChessPieces_Model.png|Black chess pieces model
</gallery>


==Code==
==Code==
Line 23: Line 32:


''Black Chess Pieces''
''Black Chess Pieces''
{{Retrieved|version=40|incver=43}}
{{Retrieved|version=41|incver=78.16}}
<pre> item ChessBlack
<pre>   item ChessBlack
Weight = 0.1,
    {
Type = Normal,
        DisplayCategory = Junk,
DisplayName = Black Chess Pieces,
        Weight = 0.1,
Icon = ChessBlack,
        Type = Normal,
</pre>
        DisplayName = Black Chess Pieces,
        Icon = ChessBlack,
        WorldStaticModel = BlackChessPieces,
    }</pre>


''White Chess Pieces''
''White Chess Pieces''
{{Retrieved|version=40|incver=43}}
{{Retrieved|version=41|incver=78.16}}
<pre> item ChessWhite
<pre>   item ChessWhite
Weight = 0.1,
    {
Type = Normal,
        DisplayCategory = Junk,
DisplayName = White Chess Pieces,
        Weight = 0.1,
Icon = ChessWhite,
        Type = Normal,
</pre>
        DisplayName = White Chess Pieces,
        Icon = ChessWhite,
        WorldStaticModel = WhiteChessPieces,
    }</pre>


==See also==
==See also==
* [[Cube]]
* [[Cube]]
* [[Dice]]
* [[Dice]]

Revision as of 07:38, 18 June 2023

The Game WorldItemsChess Pieces

Template:Infobox normalChess pieces are currently a useless item, and often considered as junk.

Usage

Chess pieces can be found in game as either black chess pieces or white chess pieces. Chess pieces have no use, being added purely for the purpose of clutter, creating more realism for the player when looting.

Distribution

Chess pieces can be found in toy stores and wardrobes.

Gallery

Code

From newitems.txt (Project Zomboid directory/media/scripts/)

Black Chess Pieces Retrieved: Build 41.78.16

    item ChessBlack
    {
        DisplayCategory = Junk,
        Weight	=	0.1,
        Type	=	Normal,
        DisplayName	=	Black Chess Pieces,
        Icon	=	ChessBlack,
        WorldStaticModel = BlackChessPieces,
    }

White Chess Pieces Retrieved: Build 41.78.16

    item ChessWhite
    {
        DisplayCategory = Junk,
        Weight	=	0.1,
        Type	=	Normal,
        DisplayName	=	White Chess Pieces,
        Icon	=	ChessWhite,
        WorldStaticModel = WhiteChessPieces,
    }

See also