Block hardness adaptions (issue #32). Lang files updated. Build utils enhanced to prepare code release for 1.13/1.14.
This commit is contained in:
parent
8af8544e30
commit
0a310c4261
19 changed files with 1221 additions and 618 deletions
19
meta/lib/constants.js
Normal file
19
meta/lib/constants.js
Normal file
|
@ -0,0 +1,19 @@
|
|||
"use strict";
|
||||
(function(){
|
||||
var c = {};
|
||||
c.mod_registry_name = function() { return "engineersdecor" }
|
||||
c.reference_repository = function() { return "git@github.com:stfwi/engineers-decor.git"; }
|
||||
c.gradle_property_modversion = function() { return "version_engineersdecor"; }
|
||||
c.gradle_property_version_minecraft = function() { return "version_minecraft"; }
|
||||
c.gradle_property_version_forge = function() { return "version_forge"; }
|
||||
c.project_download_inet_page = function() { return "https://www.curseforge.com/minecraft/mc-mods/engineers-decor/"; }
|
||||
c.languages = {
|
||||
"en_us": { code:"en_us", name:"English", region:"United States" },
|
||||
"de_de": { code:"de_de", name:"German", region:"Germany" },
|
||||
"ru_ru": { code:"ru_ru", name:"Russian", region:"Russia" },
|
||||
"zh_cn": { code:"zh_cn", name:"Chinese", region:"China" }
|
||||
}
|
||||
Object.freeze(c.languages);
|
||||
Object.freeze(c);
|
||||
return c;
|
||||
});
|
Loading…
Add table
Add a link
Reference in a new issue