Translations:Modding:Basic Item/12/ru: Difference between revisions

From Vintage Story Wiki
(Created page with "''Окончательные'' значения нашего JSON выглядят так: <syntaxhighlight lang="json"> { code: "wand", creativeinventory: { "general"...")
 
No edit summary
 
Line 7: Line 7:
   },
   },
   texture: {
   texture: {
     base: "item/wand"
     base: "game:item/wand"
   }
   }
}
}
</syntaxhighlight>
</syntaxhighlight>

Latest revision as of 13:07, 14 June 2022

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 Item)
''Finally'' the values in the actual JSON look like this:
<syntaxhighlight lang="json">
{
  code: "wand",
  creativeinventory: {
   "general": ["*"]
  },
  texture: {
   base: "game:item/wand"
  }
}
</syntaxhighlight>

Окончательные значения нашего JSON выглядят так:

{
  code: "wand",
  creativeinventory: {
    "general": ["*"]
  },
  texture: {
    base: "game:item/wand"
  }
}