Translations:Modding:Basic Block/42/es: Difference between revisions

From Vintage Story Wiki
No edit summary
No edit summary
Line 1: Line 1:
<syntaxhighlight lang="json">
<syntaxhighlight lang="json">
texturesbytype: {
texturesbytype: {
"*-gold": {
"*-oro": {
all: {  
all: {  
base: "block/mygoldtexture",
base: "block/mitexturadeoro",
alternates: [{base: "block/mygoldtexture1" }, {base: "block/mygoldtexture2" }, {base: "block/mygoldtexture3" }],
alternates: [{base: "block/mitexturadeoro1" }, {base: "block/mitexturadeoro2" }, {base: "block/mitexturadeoro3" }],
},
},
},
},
"*-iron": {
"*-iron": {
all: {  
all: {  
base: "block/myirontexture",
base: "block/mitexturadehierro",
alternates: [{base: "block/myirontexture1" }, {base: "block/myirontexture2" }, {base: "block/myirontexture3" }],
alternates: [{base: "block/mitexturadehierro1" }, {base: "block/mitexturadehierro2" }, {base: "block/mitexturadehierro3" }],
},
},
}
}
},
},
</syntaxhighlight>
</syntaxhighlight>

Revision as of 19:41, 14 June 2023

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">
"texturesbytype": {
"*-gold": {
"all": { 
"base": "block/mygoldtexture",
"alternates": [{"base": "block/mygoldtexture1" }, {"base": "block/mygoldtexture2" }, {"base": "block/mygoldtexture3" }],
},
},
"*-iron": {
"all": { 
"base": "block/myirontexture",
"alternates": [{"base": "block/myirontexture1" }, {"base": "block/myirontexture2" }, {"base": "block/myirontexture3" }],
},
}
},
</syntaxhighlight>
	texturesbytype: {
		"*-oro": {
			all: { 
				base: "block/mitexturadeoro",
				alternates: [{base: "block/mitexturadeoro1" }, {base: "block/mitexturadeoro2" }, {base: "block/mitexturadeoro3" }],
			},
		},
		"*-iron": {
			all: { 
				base: "block/mitexturadehierro",
				alternates: [{base: "block/mitexturadehierro1" }, {base: "block/mitexturadehierro2" }, {base: "block/mitexturadehierro3" }],
			},
		}
	},