Huge commit for the Pull-Request.
Added a lot of things: - Blood Tank - Teleposition Sigil - Transposition Sigil - Cobblestone/Netherrack/Obisidian generation Ritual - Tree Cutter Ritual - Pump Ritual - Altar Builder Ritual - Block Placing Ritual - Portal Ritual - Teleportation System and API Components - Cross pattern Area Descriptor - Two reagents and their textures for the sigils’ crafting Fixed: - Teleposer not teleporting entities correctly And probably other things I forgot!
This commit is contained in:
parent
d947f23696
commit
7e8aec8652
53 changed files with 3031 additions and 372 deletions
|
@ -0,0 +1,13 @@
|
|||
{
|
||||
"forge_marker": 1,
|
||||
"defaults": {
|
||||
"textures": {},
|
||||
"uvlock": true
|
||||
},
|
||||
"variants": {
|
||||
"meta": {
|
||||
"0": {"model": "bloodmagic:BlockDimensionalPortalNS"},
|
||||
"1": {"model": "bloodmagic:BlockDimensionalPortalEW"}
|
||||
}
|
||||
}
|
||||
}
|
|
@ -90,6 +90,16 @@
|
|||
"textures": {
|
||||
"layer0": "bloodmagic:items/ReagentSeverance"
|
||||
}
|
||||
},
|
||||
"reagentteleposition": {
|
||||
"textures": {
|
||||
"layer0": "bloodmagic:items/ReagentTeleposition"
|
||||
}
|
||||
},
|
||||
"reagenttransposition": {
|
||||
"textures": {
|
||||
"layer0": "bloodmagic:items/ReagentTransposition"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -84,6 +84,9 @@ item.BloodMagic.baseComponent.reagentBridge.name=Phantom Bridge Reagent
|
|||
item.BloodMagic.baseComponent.reagentCompression.name=Compression Reagent
|
||||
item.BloodMagic.baseComponent.reagentSeverance.name=Severance Reagent
|
||||
|
||||
item.BloodMagic.baseComponent.reagentTeleposition.name=Teleposition Reagent
|
||||
item.BloodMagic.baseComponent.reagentTransposition.name=Transposition Reagent
|
||||
|
||||
item.BloodMagic.monsterSoul.base.name=Demonic Will
|
||||
|
||||
item.BloodMagic.sigil.air.name=Air Sigil
|
||||
|
@ -104,6 +107,9 @@ item.BloodMagic.sigil.phantomBridge.name=Sigil of the Phantom Bridge
|
|||
item.BloodMagic.sigil.whirlwind.name=Sigil of the Whirlwind
|
||||
item.BloodMagic.sigil.enderSeverance.name=Sigil of Ender Severance
|
||||
|
||||
item.BloodMagic.sigil.teleposition.name=Teleposition Sigil
|
||||
item.BloodMagic.sigil.transposition.name=Transposition Sigil
|
||||
|
||||
item.BloodMagic.livingArmour.helmet.name=Living Helmet
|
||||
item.BloodMagic.livingArmour.chest.name=Living Chestplate
|
||||
item.BloodMagic.livingArmour.legs.name=Living Leggings
|
||||
|
@ -196,6 +202,9 @@ tile.BloodMagic.path.wornstoneTile.name=Tiled Worn Stone Path
|
|||
tile.BloodMagic.path.obsidian.name=Obsidian Brick Path
|
||||
tile.BloodMagic.path.obsidianTile.name=Tiled Obsidian Path
|
||||
|
||||
tile.BloodMagic.dimensionalPortal.name=Dimensional Portal
|
||||
tile.BloodMagic.bloodTank.name=Blood Tank
|
||||
|
||||
# Tooltips
|
||||
tooltip.BloodMagic.orb.desc=Stores raw Life Essence
|
||||
tooltip.BloodMagic.orb.owner=Added by: %s
|
||||
|
@ -239,6 +248,9 @@ tooltip.BloodMagic.sigil.phantomBridge.desc=&oWalking on thin air...
|
|||
tooltip.BloodMagic.sigil.whirlwind.desc=&oBest not to wear a skirt
|
||||
tooltip.BloodMagic.sigil.enderSeverance.desc=&oPutting Endermen in Dire situations!
|
||||
|
||||
tooltip.BloodMagic.sigil.teleposition.desc=I am very close to being moved by this.
|
||||
tooltip.BloodMagic.sigil.transposition.desc=Feel the power of the Force, my young apprentice.
|
||||
|
||||
tooltip.BloodMagic.bound.sword.desc=&oCulling the weak
|
||||
tooltip.BloodMagic.bound.pickaxe.desc=&oDestroying stone without mercy
|
||||
tooltip.BloodMagic.bound.axe.desc=&oDemonic deforestation
|
||||
|
@ -308,6 +320,10 @@ tooltip.BloodMagic.itemFilter.ignoreNBT=Ignores the NBT of the filter
|
|||
tooltip.BloodMagic.itemFilter.modItems=Matches all items from the same mod
|
||||
tooltip.BloodMagic.itemFilter.oreDict=Used to filter through the Ore Dictionary
|
||||
|
||||
tooltip.BloodMagic.fluid.type=Fluid Contained
|
||||
tooltip.BloodMagic.fluid.amount=Amount
|
||||
tooltip.BloodMagic.fluid.capacity=Capacity
|
||||
|
||||
# Ritual
|
||||
ritual.BloodMagic.testRitual=Test Ritual
|
||||
ritual.BloodMagic.waterRitual=Ritual of the Full Spring
|
||||
|
@ -330,6 +346,13 @@ ritual.BloodMagic.zephyrRitual=Call of the Zephyr
|
|||
ritual.BloodMagic.upgradeRemoveRitual=Sound of the Cleansing Soul
|
||||
ritual.BloodMagic.armourEvolveRitual=Ritual of Living Evolution
|
||||
|
||||
ritual.BloodMagic.cobblestoneRitual=Le Vulcanos Frigius
|
||||
ritual.BloodMagic.placerRitual=The Filler
|
||||
ritual.BloodMagic.fellingRitual=The Timberman
|
||||
ritual.BloodMagic.pumpRitual=Hymn of Siphoning
|
||||
ritual.BloodMagic.altarBuilderRitual=The Assembly of the High Altar
|
||||
ritual.BloodMagic.portalRitual=The Gate of the Fold
|
||||
|
||||
# Chat
|
||||
chat.BloodMagic.altarMaker.setTier=Set Tier to: %d
|
||||
chat.BloodMagic.altarMaker.building=Building a Tier %d Altar
|
||||
|
|
|
@ -0,0 +1,15 @@
|
|||
{
|
||||
"textures": {
|
||||
"particle": "bloodmagic:blocks/lifeEssenceFlowing",
|
||||
"portal": "bloodmagic:blocks/lifeEssenceFlowing"
|
||||
},
|
||||
"elements": [
|
||||
{ "from": [ 6, 0, 0 ],
|
||||
"to": [ 10, 16, 16 ],
|
||||
"faces": {
|
||||
"east": { "uv": [ 0, 0, 16, 16 ], "texture": "#portal" },
|
||||
"west": { "uv": [ 0, 0, 16, 16 ], "texture": "#portal" }
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
|
@ -0,0 +1,15 @@
|
|||
{
|
||||
"textures": {
|
||||
"particle": "bloodmagic:blocks/lifeEssenceFlowing",
|
||||
"portal": "bloodmagic:blocks/lifeEssenceFlowing"
|
||||
},
|
||||
"elements": [
|
||||
{ "from": [ 0, 0, 6 ],
|
||||
"to": [ 16, 16, 10 ],
|
||||
"faces": {
|
||||
"north": { "uv": [ 0, 0, 16, 16 ], "texture": "#portal" },
|
||||
"south": { "uv": [ 0, 0, 16, 16 ], "texture": "#portal" }
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
|
@ -0,0 +1,22 @@
|
|||
{
|
||||
"parent": "bloodmagic:block/BlockDimensionalPortal",
|
||||
"display": {
|
||||
"thirdperson": {
|
||||
"rotation": [
|
||||
10,
|
||||
-45,
|
||||
170
|
||||
],
|
||||
"translation": [
|
||||
0,
|
||||
1.5,
|
||||
-2.75
|
||||
],
|
||||
"scale": [
|
||||
0.375,
|
||||
0.375,
|
||||
0.375
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
|
@ -0,0 +1,6 @@
|
|||
{
|
||||
"parent":"bloodmagic:item/ItemModelBase",
|
||||
"textures": {
|
||||
"layer0":"bloodmagic:items/TelepositionSigil"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,6 @@
|
|||
{
|
||||
"parent":"bloodmagic:item/ItemModelBase",
|
||||
"textures": {
|
||||
"layer0":"bloodmagic:items/TranspositionSigil"
|
||||
}
|
||||
}
|
Binary file not shown.
After Width: | Height: | Size: 468 B |
Binary file not shown.
After Width: | Height: | Size: 397 B |
Binary file not shown.
After Width: | Height: | Size: 554 B |
Binary file not shown.
After Width: | Height: | Size: 544 B |
Loading…
Add table
Add a link
Reference in a new issue