Translations:Modding:Basic Block/13/ru: Difference between revisions

From Vintage Story Wiki
(Created page with "<syntaxhighlight lang="json"> { code: "mygoldblock", creativeinventory: { "general": ["*"] }, blockmaterial: "Stone", drawtype: "Cube", textures: { all: { base: "block/...")
(No difference)

Revision as of 22:21, 19 July 2020

Information about message (contribute)
This message has no documentation. If you know where or how this message is used, you can help other translators by adding documentation to this message.
Message definition (Modding:Basic Block)
<syntaxhighlight lang="json">
{
"code": "mygoldblock",
"creativeinventory": { "general": ["*"] },
"blockmaterial": "Stone",
"drawtype": "Cube",
"textures": {
"all": { "base": "block/mygoldtexture" }
},
"resistance": 3.5,
"sounds": {
"place": "game:block/anvil",
"walk": "game:walk/stone"
}
}
</syntaxhighlight>
{
	code: "mygoldblock",
	creativeinventory: { "general": ["*"] },
	blockmaterial: "Stone",
	drawtype: "Cube",
	textures: {
		all: { base: "block/mygoldtexture" }
	},
	resistance: 3.5,
	sounds: {
		"place": "game:block/anvil",
		"walk": "game:walk/stone"
	}
}