diff options
| author | shedaniel <daniel@shedaniel.me> | 2020-07-29 12:25:47 +0800 |
|---|---|---|
| committer | shedaniel <daniel@shedaniel.me> | 2020-07-29 14:25:53 +0800 |
| commit | ba446965dad004cb38679f0f0e1a526151d84213 (patch) | |
| tree | 60fe2736316a63d47cf533a02bf29fbd5045b91c /RoughlyEnoughItems-default-plugin/src/main/resources | |
| parent | 929ca0ed6de9dd25208304cd0f51a8f2d0f22ceb (diff) | |
| download | RoughlyEnoughItems-ba446965dad004cb38679f0f0e1a526151d84213.tar.gz RoughlyEnoughItems-ba446965dad004cb38679f0f0e1a526151d84213.tar.bz2 RoughlyEnoughItems-ba446965dad004cb38679f0f0e1a526151d84213.zip | |
5.x - 20w30a
Signed-off-by: shedaniel <daniel@shedaniel.me>
Diffstat (limited to 'RoughlyEnoughItems-default-plugin/src/main/resources')
4 files changed, 59 insertions, 0 deletions
diff --git a/RoughlyEnoughItems-default-plugin/src/main/resources/fabric.mod.json b/RoughlyEnoughItems-default-plugin/src/main/resources/fabric.mod.json new file mode 100644 index 000000000..985864498 --- /dev/null +++ b/RoughlyEnoughItems-default-plugin/src/main/resources/fabric.mod.json @@ -0,0 +1,32 @@ +{ + "schemaVersion": 1, + "id": "roughlyenoughitems-default-plugin", + "name": "REI (Default Plugin)", + "description": "The default implementation of handling vanilla features.", + "version": "${version}", + "authors": [ + "shedaniel" + ], + "contact": { + "homepage": "https://www.curseforge.com/minecraft/mc-mods/roughly-enough-items", + "sources": "https://github.com/shedaniel/RoughlyEnoughItems", + "issues": "https://github.com/shedaniel/RoughlyEnoughItems/issues" + }, + "license": "MIT", + "icon": "icon.png", + "entrypoints": { + "rei_plugins": [ + "me.shedaniel.rei.plugin.DefaultPlugin" + ], + "rei_containers": [ + "me.shedaniel.rei.plugin.DefaultServerContainerPlugin" + ] + }, + "accessWidener": "roughlyenoughitems-default-plugin.accessWidener", + "mixins": [ + "mixin.roughlyenoughitems-default-plugin.json" + ], + "custom": { + "modmenu:parent": "roughlyenoughitems" + } +} diff --git a/RoughlyEnoughItems-default-plugin/src/main/resources/icon.png b/RoughlyEnoughItems-default-plugin/src/main/resources/icon.png Binary files differnew file mode 100644 index 000000000..b7a48aef0 --- /dev/null +++ b/RoughlyEnoughItems-default-plugin/src/main/resources/icon.png diff --git a/RoughlyEnoughItems-default-plugin/src/main/resources/mixin.roughlyenoughitems-default-plugin.json b/RoughlyEnoughItems-default-plugin/src/main/resources/mixin.roughlyenoughitems-default-plugin.json new file mode 100644 index 000000000..328804aa3 --- /dev/null +++ b/RoughlyEnoughItems-default-plugin/src/main/resources/mixin.roughlyenoughitems-default-plugin.json @@ -0,0 +1,13 @@ +{ + "required": true, + "package": "me.shedaniel.rei.plugin.mixin", + "minVersion": "0.7.11", + "compatibilityLevel": "JAVA_8", + "mixins": [], + "client": [ + "MixinBrewingRecipeRegistry" + ], + "injectors": { + "defaultRequire": 1 + } +} diff --git a/RoughlyEnoughItems-default-plugin/src/main/resources/roughlyenoughitems-default-plugin.accessWidener b/RoughlyEnoughItems-default-plugin/src/main/resources/roughlyenoughitems-default-plugin.accessWidener new file mode 100644 index 000000000..2c7eb1ead --- /dev/null +++ b/RoughlyEnoughItems-default-plugin/src/main/resources/roughlyenoughitems-default-plugin.accessWidener @@ -0,0 +1,14 @@ +accessWidener v1 named +accessible field net/minecraft/item/BucketItem fluid Lnet/minecraft/fluid/Fluid; +accessible field net/minecraft/client/gui/screen/ingame/AbstractInventoryScreen offsetGuiForEffects Z +accessible field net/minecraft/client/gui/screen/recipebook/RecipeBookWidget ghostSlots Lnet/minecraft/client/gui/screen/recipebook/RecipeBookGhostSlots; +accessible field net/minecraft/client/gui/screen/recipebook/RecipeBookWidget searchField Lnet/minecraft/client/gui/widget/TextFieldWidget; +accessible field net/minecraft/client/gui/screen/recipebook/RecipeBookWidget tabButtons Ljava/util/List; +accessible field net/minecraft/client/gui/screen/ingame/ContainerScreen x I +accessible field net/minecraft/client/gui/screen/ingame/ContainerScreen y I +accessible field net/minecraft/client/gui/screen/ingame/ContainerScreen containerWidth I +accessible field net/minecraft/client/gui/screen/ingame/ContainerScreen containerHeight I +accessible field net/minecraft/client/gui/screen/ingame/ContainerScreen focusedSlot Lnet/minecraft/screen/slot/Slot; +accessible method net/minecraft/client/gui/DrawableHelper drawTexturedQuad (Lnet/minecraft/util/math/Matrix4f;IIIIIFFFF)V +accessible field net/minecraft/recipe/SmithingRecipe base Lnet/minecraft/recipe/Ingredient; +accessible field net/minecraft/recipe/SmithingRecipe addition Lnet/minecraft/recipe/Ingredient; |
