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

From Vintage Story Wiki
(Created page with "<syntaxhighlight lang="json"> texturesbytype: { "*-oro": { all: { base: "block/mygoldtexture", alternates: [{base: "block/mygoldtexture1" }, {base: "block/mygoldtexture2" }, {base: "block/mygoldtexture3" }], }, }, "*-hierro": { all: { base: "block/myirontexture", alternates: [{base: "block/myirontexture1" }, {base: "block/myirontexture2" }, {base: "block/myirontexture3" }], }, } }, </syntaxhighlight>")
 
No edit summary
 
(2 intermediate revisions by the same user not shown)
Line 2: Line 2:
texturesbytype: {
texturesbytype: {
"*-oro": {
"*-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" }],
},
},
},
},
"*-hierro": {
"*-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>

Latest revision as of 21:03, 20 October 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" }],
			},
		}
	},