Basic sigils implementation
This commit is contained in:
parent
ae85224003
commit
5dff08380d
61 changed files with 1394 additions and 106 deletions
|
@ -0,0 +1,10 @@
|
|||
{
|
||||
"variants": {
|
||||
"normal": {
|
||||
"model": "bloodmagic:BlockPhantom",
|
||||
"textures": {
|
||||
"all": "bloodmagic:blocks/PhantomBlock"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
|
@ -0,0 +1,10 @@
|
|||
{
|
||||
"variants": {
|
||||
"normal": {
|
||||
"model": "bloodmagic:BlockSpectral",
|
||||
"textures": {
|
||||
"all": "bloodmagic:blocks/SpectralBlock"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
|
@ -66,6 +66,14 @@ item.BloodMagic.sigil.divination.name=Divination Sigil
|
|||
item.BloodMagic.sigil.water.name=Water Sigil
|
||||
item.BloodMagic.sigil.lava.name=Lava Sigil
|
||||
item.BloodMagic.sigil.void.name=Void Sigil
|
||||
item.BloodMagic.sigil.greenGrove.name=Sigil of the Green Grove
|
||||
item.BloodMagic.sigil.elementalAffinity.name=Sigil of Elemental Affinity
|
||||
item.BloodMagic.sigil.haste.name=Sigil of Haste
|
||||
item.BloodMagic.sigil.suppression.name=Sigil of Suppression
|
||||
item.BloodMagic.sigil.magnetism.name=Sigil of Magnetism
|
||||
item.BloodMagic.sigil.fastMiner.name=Sigil of the Fast Miner
|
||||
item.BloodMagic.sigil.seer.name=Seer's Sigil
|
||||
item.BloodMagic.sigil.phantomBridge.name=Sigil of the Phantom Bridge
|
||||
|
||||
item.BloodMagic.altarMaker.name=Altar Maker
|
||||
|
||||
|
@ -104,9 +112,12 @@ tile.BloodMagic.bloodLight.name=Blood Light
|
|||
# Tooltips
|
||||
tooltip.BloodMagic.orb.desc=Stores raw Life Essence
|
||||
tooltip.BloodMagic.orb.owner=Added by: %s
|
||||
tooltip.BloodMagic.currentOwner=Owner: %s
|
||||
tooltip.BloodMagic.currentOwner=Current owner: %s
|
||||
tooltip.BloodMagic.currentTier=Current tier: %d
|
||||
|
||||
tooltip.BloodMagic.activated=Activated
|
||||
tooltip.BloodMagic.deactivated=Deactivated
|
||||
|
||||
tooltip.BloodMagic.sigil.air.desc=&oI feel lighter already...
|
||||
tooltip.BloodMagic.sigil.bloodLight.desc=&oI see a light!
|
||||
tooltip.BloodMagic.sigil.compression.desc=&oHands of Diamonds
|
||||
|
@ -117,6 +128,19 @@ tooltip.BloodMagic.sigil.divination.currentAltarCapacity=Current Capacity: %d LP
|
|||
tooltip.BloodMagic.sigil.water.desc=&oInfinite water, anyone?
|
||||
tooltip.BloodMagic.sigil.lava.desc=&oHOT! DO NOT EAT
|
||||
tooltip.BloodMagic.sigil.void.desc=&oBetter than a Swiffer®!
|
||||
tooltip.BloodMagic.sigil.greenGrove.desc=&oEnvironmentally friendly
|
||||
tooltip.BloodMagic.sigil.magnetism.desc=&oI have a very magnetic personality
|
||||
tooltip.BloodMagic.sigil.suppression.desc=&oBetter than telekinesis...
|
||||
tooltip.BloodMagic.sigil.haste.desc=&o42 doses of caffeine later...
|
||||
tooltip.BloodMagic.sigil.fastMiner.desc=&oKeep mining, and mining...
|
||||
tooltip.BloodMagic.sigil.elementalAffinity.desc=&oFalling fire fishes!
|
||||
tooltip.BloodMagic.sigil.seer.desc=&oWhen seeing all is not enough
|
||||
tooltip.BloodMagic.sigil.seer.currentAltarProgress=Current Progress: %d LP/ %s LP
|
||||
tooltip.BloodMagic.sigil.seer.currentAltarConsumptionRate=Consumption Rate: %d LP
|
||||
tooltip.BloodMagic.sigil.seer.currentAltarTier=Current Tier: %d
|
||||
tooltip.BloodMagic.sigil.seer.currentEssence=Current Essence: %d LP
|
||||
tooltip.BloodMagic.sigil.seer.currentAltarCapacity=Current Capacity: %d LP
|
||||
tooltip.BloodMagic.sigil.phantomBridge.desc=Walking in thin air...
|
||||
|
||||
tooltip.BloodMagic.sacrificialDagger.desc=Just a prick of the finger will suffice...
|
||||
tooltip.BloodMagic.slate.desc=Infused stone inside of a Blood Altar
|
||||
|
@ -142,4 +166,4 @@ jei.BloodMagic.recipe.binding=Binding Ritual
|
|||
jei.BloodMagic.recipe.requiredLP=LP: %d
|
||||
jei.BloodMagic.recipe.requiredTier=Tier: %d
|
||||
|
||||
jei.BloodMagic.desc.altarBuilder=A creative-only item for use in debugging and testing.\n\nShift + Right click to change the tier to build. Right click an Altar to initiate the build.\n\nBreak an Altar while holding to dismantle it.
|
||||
jei.BloodMagic.desc.altarBuilder=A creative-only item for use in debugging and testing.\n\nShift + Right click to change the tier to build. Right click an Altar to initiate the build.\n\nBreak an Altar while holding to dismantle it.
|
|
@ -0,0 +1,6 @@
|
|||
{
|
||||
"parent": "block/cube_all",
|
||||
"textures": {
|
||||
"all": "bloodmagic:blocks/PhantomBlock"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,10 @@
|
|||
{
|
||||
"parent": "bloodmagic:block/BlockPhantom",
|
||||
"display": {
|
||||
"thirdperson": {
|
||||
"rotation": [ 10, -45, 170 ],
|
||||
"translation": [ 0, 1.5, -2.75 ],
|
||||
"scale": [ 0.375, 0.375, 0.375 ]
|
||||
}
|
||||
}
|
||||
}
|
|
@ -0,0 +1,10 @@
|
|||
{
|
||||
"parent": "bloodmagic:block/BlockSpectral",
|
||||
"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/ElementalSigil_deactivated"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,6 @@
|
|||
{
|
||||
"parent":"bloodmagic:item/ItemModelBase",
|
||||
"textures": {
|
||||
"layer0":"bloodmagic:items/ElementalSigil_activated"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,6 @@
|
|||
{
|
||||
"parent":"bloodmagic:item/ItemModelBase",
|
||||
"textures": {
|
||||
"layer0":"bloodmagic:items/MiningSigil_deactivated"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,6 @@
|
|||
{
|
||||
"parent":"bloodmagic:item/ItemModelBase",
|
||||
"textures": {
|
||||
"layer0":"bloodmagic:items/MiningSigil_activated"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,6 @@
|
|||
{
|
||||
"parent":"bloodmagic:item/ItemModelBase",
|
||||
"textures": {
|
||||
"layer0":"bloodmagic:items/GrowthSigil_deactivated"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,6 @@
|
|||
{
|
||||
"parent":"bloodmagic:item/ItemModelBase",
|
||||
"textures": {
|
||||
"layer0":"bloodmagic:items/GrowthSigil_activated"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,6 @@
|
|||
{
|
||||
"parent":"bloodmagic:item/ItemModelBase",
|
||||
"textures": {
|
||||
"layer0":"bloodmagic:items/HasteSigil_deactivated"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,6 @@
|
|||
{
|
||||
"parent":"bloodmagic:item/ItemModelBase",
|
||||
"textures": {
|
||||
"layer0":"bloodmagic:items/HasteSigil_activated"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,6 @@
|
|||
{
|
||||
"parent":"bloodmagic:item/ItemModelBase",
|
||||
"textures": {
|
||||
"layer0":"bloodmagic:items/SigilOfMagnetism_deactivated"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,6 @@
|
|||
{
|
||||
"parent":"bloodmagic:item/ItemModelBase",
|
||||
"textures": {
|
||||
"layer0":"bloodmagic:items/SigilOfMagnetism_activated"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,6 @@
|
|||
{
|
||||
"parent":"bloodmagic:item/ItemModelBase",
|
||||
"textures": {
|
||||
"layer0":"bloodmagic:items/BridgeSigil_deactivated"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,6 @@
|
|||
{
|
||||
"parent":"bloodmagic:item/ItemModelBase",
|
||||
"textures": {
|
||||
"layer0":"bloodmagic:items/BridgeSigil_activated"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,6 @@
|
|||
{
|
||||
"parent":"bloodmagic:item/ItemModelBase",
|
||||
"textures": {
|
||||
"layer0":"bloodmagic:items/SeerSigil"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,6 @@
|
|||
{
|
||||
"parent":"bloodmagic:item/ItemModelBase",
|
||||
"textures": {
|
||||
"layer0":"bloodmagic:items/SigilOfSuppression_deactivated"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,6 @@
|
|||
{
|
||||
"parent":"bloodmagic:item/ItemModelBase",
|
||||
"textures": {
|
||||
"layer0":"bloodmagic:items/SigilOfSuppression_activated"
|
||||
}
|
||||
}
|
Binary file not shown.
After Width: | Height: | Size: 792 B |
Binary file not shown.
Before Width: | Height: | Size: 629 B After Width: | Height: | Size: 174 B |
Binary file not shown.
After Width: | Height: | Size: 637 B |
Binary file not shown.
After Width: | Height: | Size: 645 B |
Loading…
Add table
Add a link
Reference in a new issue