Modding:Theme Pack

From Vintage Story Wiki
Revision as of 16:25, 6 February 2018 by CreativeMD (talk | contribs) (Created page with "== Packing == == Info file == Every zip-file mod requires a <code>modinfo.json</code> inside the root directory of the archive. Otherwise the entire mod will be ignored. Thi...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Packing

Info file

Every zip-file mod requires a modinfo.json inside the root directory of the archive. Otherwise the entire mod will be ignored. This info file specifies what kind of me it is, its name, author, etc.

An example of a theme pack info file (modinfo.json):

{
  "type": "theme",
  "name": "My Example Themepack",
  "description" : "This is a themepack and serves as an example.",
  "author": "CreativeMD",
  "version": "1.0",
  "gameversions": [ "1.5.0.3+" ],
  "website": "http://example.com"
}

The type theme will define this mod being a ThemePack. So it cannot override gameplay affecting assets categories (such as blocktypes, itemtypes and so on) and no scripts or mod classes will be loaded.

  "gameversions": [ "1.5.0.3+" ],

Means this ThemePack requires 1.5.0.3 or a newer version.

Icon

Distribution