Translations:Modding:Basic Block/42/es

From Vintage Story Wiki
Revision as of 19:33, 14 June 2023 by Eleli (talk | contribs) (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>")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
	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" }],
			},
		}
	},