mirror of
https://github.com/Sollace/Unicopia.git
synced 2024-11-23 21:38:00 +01:00
Add the standard files for fabric to load us
This commit is contained in:
parent
f60a84f207
commit
77acfb40e5
4 changed files with 54 additions and 17 deletions
|
@ -9,7 +9,7 @@ org.gradle.daemon=false
|
|||
|
||||
# Mod Properties
|
||||
group=com.minelittlepony
|
||||
displayname=Unicopia Redux
|
||||
displayname=Unicopia
|
||||
authors=Sollace
|
||||
description=Magical Abilities for Mine Little Pony!
|
||||
version=3
|
||||
|
|
28
src/main/resources/fabric.mod.json
Normal file
28
src/main/resources/fabric.mod.json
Normal file
|
@ -0,0 +1,28 @@
|
|||
{
|
||||
"schemaVersion": 1,
|
||||
"id": "unicopia",
|
||||
"version": "${version}",
|
||||
"name": "Unicopia",
|
||||
"description": "Magical Abilities for Mine Little Pony!",
|
||||
"authors": [ "Sollace" ],
|
||||
"mixins": [
|
||||
"unicopia.mixin.json"
|
||||
],
|
||||
"license": "MIT",
|
||||
"environment": "*",
|
||||
"entrypoints": {
|
||||
"main": [
|
||||
"com.minelittlepony.unicopia.Unicopia"
|
||||
],
|
||||
"client": [
|
||||
"com.minelittlepony.unicopia.client.UnicopiaClient"
|
||||
]
|
||||
},
|
||||
"depends": {
|
||||
"fabricloader": ">=0.4.0",
|
||||
"fabric-api-base": ">=0.1.0",
|
||||
"fabric-events-lifecycle-v0": ">=0.1.0",
|
||||
"fabric-keybindings-v0": ">=0.1.0",
|
||||
"fabric-rendering-v1": ">=0.1.0"
|
||||
}
|
||||
}
|
|
@ -1,16 +0,0 @@
|
|||
[
|
||||
{
|
||||
"modid": "unicopia",
|
||||
"name": "${name}",
|
||||
"description": "${description}",
|
||||
"version": "${version}",
|
||||
"mcversion": "${mcversion}",
|
||||
"url": "",
|
||||
"updateUrl": "",
|
||||
"authorList": ["${author}"],
|
||||
"credits": "",
|
||||
"logoFile": "",
|
||||
"screenshots": [],
|
||||
"dependencies": []
|
||||
}
|
||||
]
|
25
src/main/resources/unicopia.mixin.json
Normal file
25
src/main/resources/unicopia.mixin.json
Normal file
|
@ -0,0 +1,25 @@
|
|||
{
|
||||
"required": true,
|
||||
"minVersion": "0.7",
|
||||
"package": "com.minelittlepony.unicopia.mixin",
|
||||
"refmap": "unicopia.client.mixin.refmap.json",
|
||||
"compatibilityLevel": "JAVA_8",
|
||||
"main": [
|
||||
"MixinEntity",
|
||||
"MixinFarmlandBlock",
|
||||
"MixinHoeItem",
|
||||
"MixinItemEntity",
|
||||
"MixinPlayerEntity",
|
||||
"MixinProjectileEntity",
|
||||
"Walker"
|
||||
],
|
||||
"client": [
|
||||
"client.MixinCamera",
|
||||
"client.MixinGameRenderer",
|
||||
"client.MixinKeyboardInput",
|
||||
"client.MixinMouse"
|
||||
],
|
||||
"injectors": {
|
||||
"defaultRequire": 1
|
||||
}
|
||||
}
|
Loading…
Reference in a new issue