-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
-Fixed launch crash (again, oops...) -Added Custom tabs for Mirrors and other items from this mod
- Loading branch information
CodenameRevy
committed
Sep 25, 2019
1 parent
8b01c06
commit 955911c
Showing
25 changed files
with
190 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
12 changes: 12 additions & 0 deletions
12
src/main/java/com/codenamerevy/magicmirror/items/ItemBase.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
package com.codenamerevy.magicmirror.items; | ||
|
||
import net.minecraft.item.Item; | ||
|
||
public class ItemBase extends Item | ||
{ | ||
|
||
public ItemBase(Properties properties) | ||
{ | ||
super(properties); | ||
} | ||
} |
17 changes: 17 additions & 0 deletions
17
src/main/java/com/codenamerevy/magicmirror/tabs/MirrorsItemGroup.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
package com.codenamerevy.magicmirror.tabs; | ||
|
||
import com.codenamerevy.magicmirror.init.ItemInit; | ||
import net.minecraft.item.ItemGroup; | ||
import net.minecraft.item.ItemStack; | ||
|
||
public class MirrorsItemGroup extends ItemGroup | ||
{ | ||
public MirrorsItemGroup(String label) { | ||
super(label); | ||
} | ||
|
||
@Override | ||
public ItemStack createIcon() { | ||
return new ItemStack(ItemInit.MAGIC_MIRROR); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
7 changes: 7 additions & 0 deletions
7
src/main/resources/assets/magicmirror/models/item/broken_mirror.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
{ | ||
"parent": "item/generated", | ||
"textures": | ||
{ | ||
"layer0": "magicmirror:items/broken_mirror" | ||
} | ||
} |
7 changes: 7 additions & 0 deletions
7
src/main/resources/assets/magicmirror/models/item/broken_mirror_dimensional.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
{ | ||
"parent": "item/generated", | ||
"textures": | ||
{ | ||
"layer0": "magicmirror:items/broken_mirror_dimensional" | ||
} | ||
} |
7 changes: 7 additions & 0 deletions
7
src/main/resources/assets/magicmirror/models/item/dimension_crystal.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
{ | ||
"parent": "item/generated", | ||
"textures": | ||
{ | ||
"layer0": "magicmirror:items/dimension_crystal" | ||
} | ||
} |
7 changes: 7 additions & 0 deletions
7
src/main/resources/assets/magicmirror/models/item/dimension_mirror_cartographer.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
{ | ||
"parent": "item/generated", | ||
"textures": | ||
{ | ||
"layer0": "magicmirror:items/dimensional_mirror_cartographer" | ||
} | ||
} |
7 changes: 7 additions & 0 deletions
7
src/main/resources/assets/magicmirror/models/item/dimensional_mirror_desert.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
{ | ||
"parent": "item/generated", | ||
"textures": | ||
{ | ||
"layer0": "magicmirror:items/dimensional_mirror_desert" | ||
} | ||
} |
7 changes: 7 additions & 0 deletions
7
src/main/resources/assets/magicmirror/models/item/dimensional_mirror_end.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
{ | ||
"parent": "item/generated", | ||
"textures": | ||
{ | ||
"layer0": "magicmirror:items/dimensional_mirror_end" | ||
} | ||
} |
7 changes: 7 additions & 0 deletions
7
src/main/resources/assets/magicmirror/models/item/dimensional_mirror_jungle.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
{ | ||
"parent": "item/generated", | ||
"textures": | ||
{ | ||
"layer0": "magicmirror:items/dimensional_mirror_jungle" | ||
} | ||
} |
7 changes: 7 additions & 0 deletions
7
src/main/resources/assets/magicmirror/models/item/dimensional_mirror_library.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
{ | ||
"parent": "item/generated", | ||
"textures": | ||
{ | ||
"layer0": "magicmirror:items/dimensional_mirror_library" | ||
} | ||
} |
7 changes: 7 additions & 0 deletions
7
src/main/resources/assets/magicmirror/models/item/dimensional_mirror_mansion.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
{ | ||
"parent": "item/generated", | ||
"textures": | ||
{ | ||
"layer0": "magicmirror:items/dimensional_mirror_mansion" | ||
} | ||
} |
7 changes: 7 additions & 0 deletions
7
src/main/resources/assets/magicmirror/models/item/dimensional_mirror_ocean.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
{ | ||
"parent": "item/generated", | ||
"textures": | ||
{ | ||
"layer0": "magicmirror:items/dimensional_mirror_ocean" | ||
} | ||
} |
7 changes: 7 additions & 0 deletions
7
src/main/resources/assets/magicmirror/models/item/enchanted_mirror.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
{ | ||
"parent": "item/generated", | ||
"textures": | ||
{ | ||
"layer0": "magicmirror:items/enchanted_mirror" | ||
} | ||
} |
7 changes: 7 additions & 0 deletions
7
src/main/resources/assets/magicmirror/models/item/magic_mirror_cartographer.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
{ | ||
"parent": "item/generated", | ||
"textures": | ||
{ | ||
"layer0": "magicmirror:items/magic_mirror_cartographer" | ||
} | ||
} |
7 changes: 7 additions & 0 deletions
7
src/main/resources/assets/magicmirror/models/item/magic_mirror_desert.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
{ | ||
"parent": "item/generated", | ||
"textures": | ||
{ | ||
"layer0": "magicmirror:items/magic_mirror_desert" | ||
} | ||
} |
7 changes: 7 additions & 0 deletions
7
src/main/resources/assets/magicmirror/models/item/magic_mirror_jungle.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
{ | ||
"parent": "item/generated", | ||
"textures": | ||
{ | ||
"layer0": "magicmirror:items/magic_mirror_jungle" | ||
} | ||
} |
7 changes: 7 additions & 0 deletions
7
src/main/resources/assets/magicmirror/models/item/magic_mirror_library.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
{ | ||
"parent": "item/generated", | ||
"textures": | ||
{ | ||
"layer0": "magicmirror:items/magic_mirror_library" | ||
} | ||
} |
7 changes: 7 additions & 0 deletions
7
src/main/resources/assets/magicmirror/models/item/magic_mirror_mansion.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
{ | ||
"parent": "item/generated", | ||
"textures": | ||
{ | ||
"layer0": "magicmirror:items/magic_mirror_mansion" | ||
} | ||
} |
7 changes: 7 additions & 0 deletions
7
src/main/resources/assets/magicmirror/models/item/magic_mirror_ocean.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
{ | ||
"parent": "item/generated", | ||
"textures": | ||
{ | ||
"layer0": "magicmirror:items/magic_mirror_ocean" | ||
} | ||
} |