Modding:Basic Item: Difference between revisions

From Vintage Story Wiki
No edit summary
No edit summary
Line 18: Line 18:
{
{
code: "wand",
code: "wand",
creativeinventory: { "default": ["*"] },
creativeinventory: { "general": ["*"] },
texture: { base: "tool/wand/wand" }
texture: { base: "tool/wand/wand" }
}
}

Revision as of 12:05, 20 April 2017

This tutorial should introduce you into the basic of adding an item to the game using JSON files. If you want to add a item with functionality you should check out the tutorial for Advanced Items. There is a full list of all properties which can be defined inside the json file Item Json Properties. Adding a block to the game is rather similar, so if you have done that already most of the following steps should be known to you.

A Simple Item

So, the first thing we going to need is an idea. What does this game need. Wait i got it ... the game needs an overpowered wand.

The Texture

This is the texture we gonna use Wand.png. In order to use it we need to place it inside the assets folder of the Vintagestory folder. Therefore the path should look like this: assets/textures/items/tool/wand/wand.png.

The Json File

Now we need to let the game know if its existence. We can accomplish that by creating a json file and placing it inside assets/itemtypes/tool/wand.json.

The content of this json file should look as it follows:

{
	code: "wand",
	creativeinventory: { "general": ["*"] },
	texture: { base: "tool/wand/wand" }
}
  • code: A unique identifier for your item. If you plan a larger mod, it is suggested to prefix your modname to the identifier.
  • creativeinventory: The creative inventory tabs the itemshould be shown in (currently only 1 tab available)
  • textures: What textures to apply.

Testing

Now we got everything ready to run our first test. You should be able to find the added item in the creative inventory.

2017-01-30 13-59-27.png

Naming the Item

To give the item a proper name, you currently have to manually add a line like this in the file assets/lang/en.json

	"item-wand": "Wand",

A better way of handling naming and translation will be added once its desired.

Distributing a mod

The current modding system does not yet support mod-specific asset folders. The current way of doing it is to create a zip file a user can extract into his game folder that will extract the files into the right folders. Example:

MyWandMod.zip

A proper mod manager will be added to the game once there is a few serious mods out there (go bug tyron about it ;-) ).

Advanced Properties

Mining Properties

Our wand is still rather useless, so it might be a good idea to add our wand some mining functionality. How it works? We the property "miningspeedbytype" we can define the mining speed for each material. Here is a list of all block materials.

The number indicates how fast the tool is able to mine the block, while 1 is the default value. time to mine = block resistance / miningspeed. Meaning a speed of 2 is twice as fast the default speed of one. So our tool is seven times faster than using the hand.

A pickaxe looks like this:

	miningspeedbytype: {
		"*": {
			"stone": 7,
			"metal": 7
		},
	},

Although the tool is working already, we should add some kind of durability. Therefore we need to define what can damage our tool and the durability itself.

Our tool can be damaged by breaking a block, or using it for an weapon. The property damagedby allows us to define all possible damage source. For now we will stick to blockbreaking and attacking.

	damagedby: ["blockbreaking", "attacking"],

and the durability should be 2000:

	durabilitybytype: {
		"*": 2000,
	},

Variants

Pretty basic so far, let's go more advanced. Let's add some variants to our wand, each of them should represent another tool (shovel, pickaxe, axe).

So first of all we have to add a new variantgroup. The name of your group is tooltype and possible values are "shovel", "pickaxe", "axe":

	variantgroups: [
		{ code: "tooltype", states: ["shovel", "pickaxe", "axe" ] },
	],

Now we need to change our miningspeedbytype property to set the speed of each material for each type:

	miningspeedbytype: {
		"*-shovel": {
			"soil": 7,
			"sand": 7,
			"gravel": 4.4
		},"*-pickaxe": {
			"stone": 7,
			"metal": 7
		},"*-axe": {
			"wood": 6,
			"leaves": 4
		},
	},

Every group will be added after each other to the item name item-myitemname-mygroup-mysecondgroup. In total, our wand has 3 types and their full names are:

  • item-wand-shovel
  • item-wand-pickaxe
  • item-wand-axe

Each of our selectors starts with a * which is a custom symbol and means it can be anything. Through that way you can select specific variants of your item.

If we would add another variant called material (values are magic, air, death) and wanted to select all shovels we would have to do it like that: *-shovel-*. Meaning it can be anything before, but it has to be a shovel and it can be any type of a shovel.

We can also change the durability for each type individually.

	durabilitybytype: {
		"*-shovel": 4000,
		"*-pickaxe": 3000,
		"*-axe": 2000,
	},

Variant Textures

Using the same way we specified the mining speed for each type we can also specify a texture for each type.

	texturebytype: {
		"*-shovel": {
			base: "tool/wand/wand-shovel",
		},
		"*-pickaxe": {
			base: "tool/wand/wand-pickaxe",
		},
		"*-axe": {
			base: "tool/wand/wand-axe",
		},
	}

But we can accomplish the same thing with an easier way:

	texture: {
		base: "tool/wand/wand-{tooltype}",
	}

{tooltype} will be replaced by either shovel, pickaxe or axe.

Texture Overlays

As everybody knows programmers are lazy, so instead of drawing a texture for each variant of our item, we can use overlays instead, which will make it a lot easier.

These are the overlays for each type: Wand-overlay-axe.png Wand-overlay-pickaxe.png Wand-overlay-shovel.png. All we have to do now is to change the base texture to back to the original wand texture and add an overlay texture.

	texture: {
		base: "tool/wand/wand",
		overlays: [ "tool/wand/wand-overlay-{tooltype}" ],
	},

and this is the result:

2017-02-09 17-30-34.png

Download

You can download the mod to test it out yourself: MyAdvancedWandMod.zip