Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/brian-wuest/mc-fromthedepths
This mod is used for spawning bosses for mod packs.
https://github.com/brian-wuest/mc-fromthedepths
minecraft-forge-mod minecraft-mod
Last synced: about 1 month ago
JSON representation
This mod is used for spawning bosses for mod packs.
- Host: GitHub
- URL: https://github.com/brian-wuest/mc-fromthedepths
- Owner: Brian-Wuest
- License: mit
- Created: 2017-08-24T01:43:37.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2021-10-10T13:59:58.000Z (about 3 years ago)
- Last Synced: 2023-03-01T20:15:30.540Z (over 1 year ago)
- Topics: minecraft-forge-mod, minecraft-mod
- Language: Java
- Size: 8.39 MB
- Stars: 2
- Watchers: 1
- Forks: 5
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGES_AND_DOCS.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
# MC-FromTheDepths
This mod is used for spawning bosses for mod packs.## Recipe Folder
This mod loads recipes from a folder within the config folder in the minecraft folder.
The folder will be created automatically if it doesn't exist.
It will be called "FTD_Summons"Recipes will follow the standard recipe layout with some caveats.
1. Factory Constants cannot be used.
1. Conditions cannot be used.
1. It is assumed that if the recipe is there that it should be registered.
Below is an example of a recipe to create the item.**Note**: The "entityInfo" tag is the most important part here. This is what determines what entity to generate when used on an alter. When using a mod-specific entity and the mod is no longer installed the recipe will not be loaded.
{
"type": "minecraft:crafting_shaped",
"group": "Summon",
"pattern": [
"aaa",
"aaa",
"aaa"
],
"key": {
"a": {
"item": "minecraft:cobblestone"
}
},
"result": {
"item": "from_the_depths:item_totem_of_spawning",
"data": 0,
"nbt": {
"entityInfo": {
"domain": "minecraft",
"name": "zombie"
}
},
"count": 1
}
}