Axeable Component

From wiki
Jump to: navigation, search

Category:Component Modding are all optional properties that can be added to any file. Components are useful in extending the original files with even more information, such as the cost of the item or whether the block can be broken by a weapon.

On this page, we go over the Axeable Component, signified by the following;

"axeable": { }

Axeable Components are the compliment to Axe Items. They are used on Tiles specifically, and are used to specify that Axe Items can break this tile.


When and How to use

Axeable components should be used on any tile that you would want broken by an axe. This is mostly any wooden tiles, such as logs, but generally not wooden furniture (which is commonly handled by Hammer Items and Hammerable Component)

To create this component you would use the following;

"axeable": { }

Or if you want a specific set of items dropped, then you would use;

"axeable": { 
  "treasure" : "staxel.treasure.something"
}

This "treasure" property contains the code to a Treasure Pool and would be used to specify a set of items.

If you only want the same tile to spawn, then you will need to use the Spawn On Break Component in order to specify.

Config Options

All config options must be inside the body of;

"axeable": {
  =Config Here=
}

"treasure"

Valid options (String): A string containing the code to a Treasure Pool.

Default Value: If not specified, will not spawn any items.


This is the treasure pool it will use in order to give out items to the player. If you want the specific tile broken to spawn, without creating a new Treasure, check out Spawn On Break Component.