Compare commits
17 Commits
funnyfunny
...
MagicWands
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
fff4287ad5 | ||
|
|
d1e4501b6f | ||
|
|
fc4f51f0dd | ||
|
|
06cb93fb1d | ||
|
|
14dbb5d3ed | ||
|
|
337d248884 | ||
|
|
596c329c96 | ||
|
|
bae34b8318 | ||
|
|
e7e4e61972 | ||
|
|
fc90485838 | ||
|
|
ac5579c7fd | ||
|
|
cd618efc31 | ||
|
|
6b41aa71ca | ||
|
|
a4395f2066 | ||
|
|
685a9616ab | ||
|
|
86168288a3 | ||
|
|
81dd06ac2c |
@@ -0,0 +1,25 @@
|
|||||||
|
using Content.Shared._CP14.ModularCraft;
|
||||||
|
using Content.Shared._CP14.ModularCraft.Components;
|
||||||
|
using Content.Shared._CP14.MagicSpellStorage;
|
||||||
|
using Robust.Shared.Prototypes;
|
||||||
|
|
||||||
|
namespace Content.Server._CP14.ModularCraft.Modifiers;
|
||||||
|
|
||||||
|
public sealed partial class AddSpellsToSpellStorage : CP14ModularCraftModifier
|
||||||
|
{
|
||||||
|
[DataField]
|
||||||
|
public List<EntProtoId> Spells;
|
||||||
|
|
||||||
|
public override void Effect(EntityManager entManager, Entity<CP14ModularCraftStartPointComponent> start, Entity<CP14ModularCraftPartComponent>? part)
|
||||||
|
{
|
||||||
|
if (!entManager.TryGetComponent<CP14SpellStorageComponent>(start, out var storageComp))
|
||||||
|
return;
|
||||||
|
|
||||||
|
var spellStorageSystem = entManager.System<CP14SpellStorageSystem>();
|
||||||
|
|
||||||
|
foreach (var spell in Spells)
|
||||||
|
{
|
||||||
|
spellStorageSystem.TryAddSpellToStorage((start.Owner, storageComp), spell);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,35 @@
|
|||||||
|
using Content.Shared._CP14.ModularCraft;
|
||||||
|
using Content.Shared._CP14.ModularCraft.Components;
|
||||||
|
using Content.Shared._CP14.MagicManacostModify;
|
||||||
|
using Content.Shared._CP14.MagicRitual.Prototypes;
|
||||||
|
using Content.Shared.FixedPoint;
|
||||||
|
using Content.Shared._CP14.MagicSpellStorage;
|
||||||
|
using Robust.Shared.Prototypes;
|
||||||
|
|
||||||
|
namespace Content.Server._CP14.ModularCraft.Modifiers;
|
||||||
|
|
||||||
|
public sealed partial class EditManacostModify : CP14ModularCraftModifier
|
||||||
|
{
|
||||||
|
[DataField]
|
||||||
|
public Dictionary<ProtoId<CP14MagicTypePrototype>, FixedPoint2> Modifiers = new();
|
||||||
|
public override void Effect(EntityManager entManager, Entity<CP14ModularCraftStartPointComponent> start, Entity<CP14ModularCraftPartComponent>? part)
|
||||||
|
{
|
||||||
|
if (!entManager.TryGetComponent<CP14MagicManacostModifyComponent>(start, out var manacostModifyComp))
|
||||||
|
return;
|
||||||
|
|
||||||
|
foreach (var (magicType, modifier) in Modifiers)
|
||||||
|
{
|
||||||
|
if (manacostModifyComp.Modifiers.ContainsKey(magicType))
|
||||||
|
{
|
||||||
|
if (modifier >= 1f)
|
||||||
|
manacostModifyComp.Modifiers[magicType] += modifier - 1f;
|
||||||
|
else
|
||||||
|
manacostModifyComp.Modifiers[magicType] -= 1f - modifier;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
manacostModifyComp.Modifiers[magicType] = modifier;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -7,7 +7,7 @@ namespace Content.Shared._CP14.MagicManacostModify;
|
|||||||
/// <summary>
|
/// <summary>
|
||||||
/// Changes the manacost of spells for the bearer
|
/// Changes the manacost of spells for the bearer
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[RegisterComponent, Access(typeof(CP14MagicManacostModifySystem))]
|
[RegisterComponent]
|
||||||
public sealed partial class CP14MagicManacostModifyComponent : Component
|
public sealed partial class CP14MagicManacostModifyComponent : Component
|
||||||
{
|
{
|
||||||
[DataField]
|
[DataField]
|
||||||
|
|||||||
@@ -3,6 +3,7 @@ using Content.Shared._CP14.MagicSpell.Components;
|
|||||||
using Content.Shared._CP14.MagicSpell.Events;
|
using Content.Shared._CP14.MagicSpell.Events;
|
||||||
using Content.Shared.Actions;
|
using Content.Shared.Actions;
|
||||||
using Content.Shared.Clothing;
|
using Content.Shared.Clothing;
|
||||||
|
using Robust.Shared.Prototypes;
|
||||||
using Content.Shared.Clothing.Components;
|
using Content.Shared.Clothing.Components;
|
||||||
using Content.Shared.Damage;
|
using Content.Shared.Damage;
|
||||||
using Content.Shared.Hands;
|
using Content.Shared.Hands;
|
||||||
@@ -57,14 +58,7 @@ public sealed partial class CP14SpellStorageSystem : EntitySystem
|
|||||||
|
|
||||||
foreach (var spell in mStorage.Comp.Spells)
|
foreach (var spell in mStorage.Comp.Spells)
|
||||||
{
|
{
|
||||||
var spellEnt = _actionContainer.AddAction(mStorage, spell);
|
TryAddSpellToStorage(mStorage, spell);
|
||||||
if (spellEnt is null)
|
|
||||||
continue;
|
|
||||||
|
|
||||||
var provided = EntityManager.EnsureComponent<CP14MagicEffectComponent>(spellEnt.Value);
|
|
||||||
provided.SpellStorage = mStorage;
|
|
||||||
|
|
||||||
mStorage.Comp.SpellEntities.Add(spellEnt.Value);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -149,6 +143,21 @@ public sealed partial class CP14SpellStorageSystem : EntitySystem
|
|||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public bool TryAddSpellToStorage(Entity<CP14SpellStorageComponent> mStorage, EntProtoId spell)
|
||||||
|
{
|
||||||
|
if (_net.IsClient)
|
||||||
|
return false;
|
||||||
|
|
||||||
|
var spellEnt = _actionContainer.AddAction(mStorage, spell);
|
||||||
|
if (spellEnt is null)
|
||||||
|
return false;
|
||||||
|
|
||||||
|
var provided = EntityManager.EnsureComponent<CP14MagicEffectComponent>(spellEnt.Value);
|
||||||
|
provided.SpellStorage = mStorage;
|
||||||
|
|
||||||
|
mStorage.Comp.SpellEntities.Add(spellEnt.Value);
|
||||||
|
return true;
|
||||||
|
}
|
||||||
private void OnRemovedAttune(Entity<CP14SpellStorageRequireAttuneComponent> ent, ref RemovedAttuneFromMindEvent args)
|
private void OnRemovedAttune(Entity<CP14SpellStorageRequireAttuneComponent> ent, ref RemovedAttuneFromMindEvent args)
|
||||||
{
|
{
|
||||||
if (args.User is null)
|
if (args.User is null)
|
||||||
|
|||||||
@@ -3,3 +3,6 @@ cp14-material-dirt-block = dirt
|
|||||||
cp14-material-stone-block = stone
|
cp14-material-stone-block = stone
|
||||||
cp14-material-cloth = cloth
|
cp14-material-cloth = cloth
|
||||||
cp14-material-flora = flora material
|
cp14-material-flora = flora material
|
||||||
|
cp14-material-glowing-iron = glowing iron
|
||||||
|
cp14-material-glowing-wooden-planks = glowing wooden planks
|
||||||
|
|
||||||
|
|||||||
@@ -1,2 +1,5 @@
|
|||||||
cp14-modular-slot-blade = blade
|
cp14-modular-slot-blade = blade
|
||||||
cp14-modular-slot-garde = garde
|
cp14-modular-slot-garde = garde
|
||||||
|
cp14-modular-slot-magic-crystal = magic crystal
|
||||||
|
cp14-modular-slot-magic-crystal-holder = magic crystal holder
|
||||||
|
cp14-modular-slot-magic-artifact = magic artefact
|
||||||
|
|||||||
@@ -8,6 +8,7 @@ cp14-stack-flora = tufts of grass
|
|||||||
cp14-stack-copper-bars = copper bars
|
cp14-stack-copper-bars = copper bars
|
||||||
cp14-stack-iron-bars = iron bars
|
cp14-stack-iron-bars = iron bars
|
||||||
cp14-stack-gold-bars = gold bars
|
cp14-stack-gold-bars = gold bars
|
||||||
|
cp14-stack-glowing-iron-bars = bars of glowing iron
|
||||||
|
|
||||||
cp14-stack-wallpaper = rolls of wallpaper
|
cp14-stack-wallpaper = rolls of wallpaper
|
||||||
|
|
||||||
|
|||||||
@@ -3,3 +3,5 @@ cp14-material-dirt-block = земля
|
|||||||
cp14-material-stone-block = камень
|
cp14-material-stone-block = камень
|
||||||
cp14-material-cloth = ткань
|
cp14-material-cloth = ткань
|
||||||
cp14-material-flora = растительный материал
|
cp14-material-flora = растительный материал
|
||||||
|
cp14-material-glowing-iron = сверкающее железо
|
||||||
|
cp14-material-glowing-wooden-planks = сверкающие деревянные доски
|
||||||
|
|||||||
@@ -1,2 +1,6 @@
|
|||||||
cp14-modular-slot-blade = лезвие
|
cp14-modular-slot-blade = лезвие
|
||||||
cp14-modular-slot-garde = гарда
|
cp14-modular-slot-jewerly1 = украшение (1)
|
||||||
|
cp14-modular-slot-magic-crystal = магический кристалл
|
||||||
|
cp14-modular-slot-magic-crystal-holder = держатель магических кристаллов
|
||||||
|
cp14-modular-slot-garde = гарда
|
||||||
|
cp14-modular-slot-magic-artifact = магический артефакт
|
||||||
|
|||||||
@@ -8,7 +8,8 @@ cp14-stack-flora = пучки травы
|
|||||||
cp14-stack-copper-bars = медные слитки
|
cp14-stack-copper-bars = медные слитки
|
||||||
cp14-stack-iron-bars = железные слитки
|
cp14-stack-iron-bars = железные слитки
|
||||||
cp14-stack-gold-bars = золотые слитки
|
cp14-stack-gold-bars = золотые слитки
|
||||||
|
cp14-stack-glowing-iron-bars = слитки сверкающего железа
|
||||||
|
|
||||||
cp14-stack-wallpaper = рулон обоев
|
cp14-stack-wallpaper = рулон обоев
|
||||||
|
|
||||||
cp14-stack-glass-sheet = стекло
|
cp14-stack-glass-sheet = стекло
|
||||||
|
|||||||
@@ -221,7 +221,7 @@
|
|||||||
parent: CP14WildProduceBase
|
parent: CP14WildProduceBase
|
||||||
name: blue Amanita
|
name: blue Amanita
|
||||||
description: A sky blue flower known for its medicinal and magical properties.
|
description: A sky blue flower known for its medicinal and magical properties.
|
||||||
components:
|
components:
|
||||||
- type: Sprite
|
- type: Sprite
|
||||||
sprite: _CP14/Objects/Flora/Wild/blue_amanita.rsi
|
sprite: _CP14/Objects/Flora/Wild/blue_amanita.rsi
|
||||||
layers:
|
layers:
|
||||||
@@ -244,7 +244,7 @@
|
|||||||
reagents:
|
reagents:
|
||||||
- ReagentId: CP14BlueAmanita
|
- ReagentId: CP14BlueAmanita
|
||||||
Quantity: 5
|
Quantity: 5
|
||||||
|
|
||||||
- type: entity
|
- type: entity
|
||||||
id: CP14Dayflin
|
id: CP14Dayflin
|
||||||
parent: CP14WildProduceBase
|
parent: CP14WildProduceBase
|
||||||
@@ -272,4 +272,43 @@
|
|||||||
maxVol: 5
|
maxVol: 5
|
||||||
reagents:
|
reagents:
|
||||||
- ReagentId: CP14YellowDayflinPulp
|
- ReagentId: CP14YellowDayflinPulp
|
||||||
Quantity: 4
|
Quantity: 4
|
||||||
|
|
||||||
|
- type: entity
|
||||||
|
id: CP14FoodGlowingFruit
|
||||||
|
parent: FoodInjectableBase
|
||||||
|
categories: [ ForkFiltered ]
|
||||||
|
name: glowing fruit
|
||||||
|
description: Glowing Fruit. Exudes mana.
|
||||||
|
components:
|
||||||
|
- type: Tag
|
||||||
|
tags:
|
||||||
|
- CP14FitInMortar
|
||||||
|
- type: PointLight
|
||||||
|
radius: 1.3
|
||||||
|
energy: 2
|
||||||
|
color: "#87CEEB"
|
||||||
|
- type: Item
|
||||||
|
size: Tiny
|
||||||
|
- type: FlavorProfile
|
||||||
|
flavors:
|
||||||
|
- CP14Magic
|
||||||
|
- type: Sprite
|
||||||
|
sprite: _CP14/Objects/Flora/Farm/glowing_fruit.rsi
|
||||||
|
layers:
|
||||||
|
- state: base1
|
||||||
|
map: [ "random" ]
|
||||||
|
- type: RandomSprite
|
||||||
|
available:
|
||||||
|
- random:
|
||||||
|
base1: ""
|
||||||
|
base2: ""
|
||||||
|
base3: ""
|
||||||
|
base4: ""
|
||||||
|
- type: SolutionContainerManager
|
||||||
|
solutions:
|
||||||
|
food:
|
||||||
|
maxVol: 5
|
||||||
|
reagents:
|
||||||
|
- ReagentId: CP14BlueAmanita
|
||||||
|
Quantity: 4
|
||||||
|
|||||||
@@ -167,4 +167,49 @@
|
|||||||
suffix: 10
|
suffix: 10
|
||||||
components:
|
components:
|
||||||
- type: Stack
|
- type: Stack
|
||||||
count: 10
|
count: 10
|
||||||
|
|
||||||
|
- type: entity
|
||||||
|
id: CP14GlowingIronBar1
|
||||||
|
parent: BaseItem
|
||||||
|
name: glowing iron bar
|
||||||
|
suffix: 1
|
||||||
|
description: A heavy piece of refined glowing iron
|
||||||
|
categories: [ ForkFiltered ]
|
||||||
|
components:
|
||||||
|
- type: PointLight
|
||||||
|
radius: 1.3
|
||||||
|
energy: 2
|
||||||
|
- type: Item
|
||||||
|
size: Normal
|
||||||
|
- type: Sprite
|
||||||
|
sprite: _CP14/Objects/Materials/glowingiron_bar.rsi
|
||||||
|
layers:
|
||||||
|
- state: bar
|
||||||
|
map: ["base"]
|
||||||
|
- type: Appearance
|
||||||
|
- type: Stack
|
||||||
|
stackType: CP14GlowingIronBar
|
||||||
|
count: 1
|
||||||
|
baseLayer: base
|
||||||
|
layerStates:
|
||||||
|
- bar
|
||||||
|
- bar_2
|
||||||
|
- bar_3
|
||||||
|
- type: Material
|
||||||
|
|
||||||
|
- type: entity
|
||||||
|
id: CP14GlowingIronBar5
|
||||||
|
parent: CP14GlowingIronBar1
|
||||||
|
suffix: 5
|
||||||
|
components:
|
||||||
|
- type: Stack
|
||||||
|
count: 5
|
||||||
|
|
||||||
|
- type: entity
|
||||||
|
id: CP14GlowingIronBar10
|
||||||
|
parent: CP14GlowingIronBar1
|
||||||
|
suffix: 10
|
||||||
|
components:
|
||||||
|
- type: Stack
|
||||||
|
count: 10
|
||||||
|
|||||||
@@ -142,6 +142,57 @@
|
|||||||
- !type:DoActsBehavior
|
- !type:DoActsBehavior
|
||||||
acts: [ "Destruction" ]
|
acts: [ "Destruction" ]
|
||||||
|
|
||||||
|
- type: entity
|
||||||
|
id: CP14GlowingWoodLog
|
||||||
|
parent: BaseItem
|
||||||
|
name: glowing wooden log
|
||||||
|
description: A piece of unprocessed wood. Good material for building, or starting a fire.
|
||||||
|
categories: [ ForkFiltered ]
|
||||||
|
components:
|
||||||
|
- type: PointLight
|
||||||
|
radius: 1.3
|
||||||
|
energy: 2
|
||||||
|
color: "#87CEEB"
|
||||||
|
- type: Item
|
||||||
|
size: Normal
|
||||||
|
shape:
|
||||||
|
- 0,0,1,0
|
||||||
|
- type: Sprite
|
||||||
|
sprite: _CP14/Objects/Materials/wood.rsi
|
||||||
|
layers:
|
||||||
|
- state: log
|
||||||
|
- type: Tag
|
||||||
|
tags:
|
||||||
|
- CP14FireplaceFuel
|
||||||
|
- Wooden
|
||||||
|
- type: Flammable
|
||||||
|
fireSpread: false
|
||||||
|
canResistFire: false
|
||||||
|
alwaysCombustible: true
|
||||||
|
canExtinguish: true
|
||||||
|
cP14FireplaceFuel: 30
|
||||||
|
damage:
|
||||||
|
types:
|
||||||
|
Heat: 1
|
||||||
|
- type: Log
|
||||||
|
spawnedPrototype: CP14GlowingWoodenPlanks1
|
||||||
|
spawnCount: 3
|
||||||
|
- type: Appearance
|
||||||
|
- type: Damageable
|
||||||
|
damageContainer: Inorganic
|
||||||
|
damageModifierSet: Wood
|
||||||
|
- type: Destructible
|
||||||
|
thresholds:
|
||||||
|
- trigger:
|
||||||
|
!type:DamageTrigger
|
||||||
|
damage: 25
|
||||||
|
behaviors:
|
||||||
|
- !type:PlaySoundBehavior
|
||||||
|
sound:
|
||||||
|
collection: WoodDestroy
|
||||||
|
- !type:DoActsBehavior
|
||||||
|
acts: [ "Destruction" ]
|
||||||
|
|
||||||
- type: entity
|
- type: entity
|
||||||
id: CP14WoodenPlanks1
|
id: CP14WoodenPlanks1
|
||||||
parent: BaseItem
|
parent: BaseItem
|
||||||
@@ -214,6 +265,78 @@
|
|||||||
- type: Stack
|
- type: Stack
|
||||||
count: 10
|
count: 10
|
||||||
|
|
||||||
|
- type: entity
|
||||||
|
id: CP14GlowingWoodenPlanks1
|
||||||
|
parent: BaseItem
|
||||||
|
name: glowing wooden planks
|
||||||
|
description: Treated and ready-to-use wood.
|
||||||
|
categories: [ ForkFiltered ]
|
||||||
|
suffix: 1
|
||||||
|
components:
|
||||||
|
- type: Item
|
||||||
|
size: Normal
|
||||||
|
- type: Sprite
|
||||||
|
sprite: _CP14/Objects/Materials/wood.rsi
|
||||||
|
layers:
|
||||||
|
- state: planks
|
||||||
|
map: ["base"]
|
||||||
|
- type: Tag
|
||||||
|
tags:
|
||||||
|
- CP14FireplaceFuel
|
||||||
|
- Wooden
|
||||||
|
- type: Flammable
|
||||||
|
fireSpread: false
|
||||||
|
canResistFire: false
|
||||||
|
alwaysCombustible: true
|
||||||
|
canExtinguish: true
|
||||||
|
cP14FireplaceFuel: 12
|
||||||
|
damage:
|
||||||
|
types:
|
||||||
|
Heat: 1
|
||||||
|
- type: Appearance
|
||||||
|
- type: FloorTile
|
||||||
|
placeTileSound:
|
||||||
|
path: /Audio/Effects/woodenclosetclose.ogg
|
||||||
|
params:
|
||||||
|
variation: 0.03
|
||||||
|
volume: 2
|
||||||
|
outputs:
|
||||||
|
- CP14FloorOakWoodPlanks # TODO
|
||||||
|
- type: Stack
|
||||||
|
stackType: CP14GlowingWoodenPlanks
|
||||||
|
count: 1
|
||||||
|
baseLayer: base
|
||||||
|
layerStates:
|
||||||
|
- planks
|
||||||
|
- planks_2
|
||||||
|
- planks_3
|
||||||
|
- type: Material
|
||||||
|
- type: PhysicalComposition # точно ли это нужно?
|
||||||
|
materialComposition:
|
||||||
|
CP14WoodenPlanks: 100
|
||||||
|
- type: Damageable
|
||||||
|
damageContainer: Inorganic
|
||||||
|
damageModifierSet: Wood
|
||||||
|
- type: Destructible
|
||||||
|
thresholds:
|
||||||
|
- trigger:
|
||||||
|
!type:DamageTrigger
|
||||||
|
damage: 25
|
||||||
|
behaviors:
|
||||||
|
- !type:PlaySoundBehavior
|
||||||
|
sound:
|
||||||
|
collection: WoodDestroy
|
||||||
|
- !type:DoActsBehavior
|
||||||
|
acts: [ "Destruction" ]
|
||||||
|
|
||||||
|
- type: entity
|
||||||
|
id: CP14GlowingWoodenPlanks10
|
||||||
|
parent: CP14GlowingWoodenPlanks1
|
||||||
|
suffix: 10
|
||||||
|
components:
|
||||||
|
- type: Stack
|
||||||
|
count: 10
|
||||||
|
|
||||||
- type: entity
|
- type: entity
|
||||||
id: CP14Nail1
|
id: CP14Nail1
|
||||||
parent: BaseItem
|
parent: BaseItem
|
||||||
|
|||||||
@@ -0,0 +1,371 @@
|
|||||||
|
# Base
|
||||||
|
- type: entity
|
||||||
|
id: CP14MagicCrystalBase
|
||||||
|
parent: BaseItem
|
||||||
|
abstract: true
|
||||||
|
name: magic crystal
|
||||||
|
description: Mana-conducting crystal, contains a spell.
|
||||||
|
categories: [ ForkFiltered ]
|
||||||
|
components:
|
||||||
|
- type: CP14SpellStorageAccessHolding
|
||||||
|
- type: Item
|
||||||
|
size: Tiny
|
||||||
|
- type: Sprite
|
||||||
|
sprite: _CP14/Objects/Magic/magic_crystal.rsi
|
||||||
|
state: crystal_grey
|
||||||
|
- type: PointLight
|
||||||
|
radius: 1.2
|
||||||
|
energy: 2
|
||||||
|
color: "#808080"
|
||||||
|
|
||||||
|
# SpellSphereOfLight
|
||||||
|
- type: entity
|
||||||
|
id: CP14MagicCrystalSpellSphereOfLight
|
||||||
|
parent: CP14MagicCrystalBase
|
||||||
|
suffix: SphereOfLight
|
||||||
|
components:
|
||||||
|
- type: Sprite
|
||||||
|
color: "#FFFFE0"
|
||||||
|
- type: CP14SpellStorage
|
||||||
|
spells:
|
||||||
|
- CP14ActionSpellSphereOfLight
|
||||||
|
- type: PointLight
|
||||||
|
color: "#FFFFE0"
|
||||||
|
- type: CP14ModularCraftPart
|
||||||
|
possibleParts:
|
||||||
|
- RingMagicCrystal1_SpellSphereOfLight
|
||||||
|
- HolderMagicCrystal1_SpellSphereOfLight
|
||||||
|
- HolderMagicCrystal2_SpellSphereOfLight
|
||||||
|
- HolderMagicCrystal3_SpellSphereOfLight
|
||||||
|
- HolderMagicCrystal4_SpellSphereOfLight
|
||||||
|
- StaffHolderMagicCrystal1_SpellSphereOfLight
|
||||||
|
|
||||||
|
# SpellFlashLight
|
||||||
|
- type: entity
|
||||||
|
id: CP14MagicCrystalSpellFlashLight
|
||||||
|
parent: CP14MagicCrystalBase
|
||||||
|
suffix: SpellFlashLight
|
||||||
|
components:
|
||||||
|
- type: Sprite
|
||||||
|
color: "#FFFFE0"
|
||||||
|
- type: CP14SpellStorage
|
||||||
|
spells:
|
||||||
|
- CP14ActionSpellFlashLight
|
||||||
|
- type: PointLight
|
||||||
|
color: "#FFFFE0"
|
||||||
|
- type: CP14ModularCraftPart
|
||||||
|
possibleParts:
|
||||||
|
- RingMagicCrystal1_SpellFlashLight
|
||||||
|
- HolderMagicCrystal1_SpellFlashLight
|
||||||
|
- HolderMagicCrystal2_SpellFlashLight
|
||||||
|
- HolderMagicCrystal3_SpellFlashLight
|
||||||
|
- HolderMagicCrystal4_SpellFlashLight
|
||||||
|
- StaffHolderMagicCrystal1_SpellFlashLight
|
||||||
|
|
||||||
|
# SpellEarthWall
|
||||||
|
- type: entity
|
||||||
|
id: CP14MagicCrystalSpellEarthWall
|
||||||
|
parent: CP14MagicCrystalBase
|
||||||
|
suffix: SpellEarthWall
|
||||||
|
components:
|
||||||
|
- type: Sprite
|
||||||
|
color: "#8B4513"
|
||||||
|
- type: CP14SpellStorage
|
||||||
|
spells:
|
||||||
|
- CP14ActionSpellEarthWall
|
||||||
|
- type: PointLight
|
||||||
|
color: "#8B4513"
|
||||||
|
- type: CP14ModularCraftPart
|
||||||
|
possibleParts:
|
||||||
|
- RingMagicCrystal1_SpellEarthWall
|
||||||
|
- HolderMagicCrystal1_SpellEarthWall
|
||||||
|
- HolderMagicCrystal2_SpellEarthWall
|
||||||
|
- HolderMagicCrystal3_SpellEarthWall
|
||||||
|
- HolderMagicCrystal4_SpellEarthWall
|
||||||
|
- StaffHolderMagicCrystal1_SpellEarthWall
|
||||||
|
|
||||||
|
# SpellFlameCreation
|
||||||
|
- type: entity
|
||||||
|
id: CP14MagicCrystalSpellFlameCreation
|
||||||
|
parent: CP14MagicCrystalBase
|
||||||
|
suffix: SpellFlameCreation
|
||||||
|
components:
|
||||||
|
- type: Sprite
|
||||||
|
color: "#FF4500"
|
||||||
|
- type: CP14SpellStorage
|
||||||
|
spells:
|
||||||
|
- CP14ActionSpellFlameCreation
|
||||||
|
- type: PointLight
|
||||||
|
color: "#FF4500"
|
||||||
|
- type: CP14ModularCraftPart
|
||||||
|
possibleParts:
|
||||||
|
- RingMagicCrystal1_SpellFlameCreation
|
||||||
|
- HolderMagicCrystal1_SpellFlameCreation
|
||||||
|
- HolderMagicCrystal2_SpellFlameCreation
|
||||||
|
- HolderMagicCrystal3_SpellFlameCreation
|
||||||
|
- HolderMagicCrystal4_SpellFlameCreation
|
||||||
|
- StaffHolderMagicCrystal1_SpellFlameCreation
|
||||||
|
|
||||||
|
# SpellFireball
|
||||||
|
- type: entity
|
||||||
|
id: CP14MagicCrystalSpellFireball
|
||||||
|
parent: CP14MagicCrystalBase
|
||||||
|
suffix: SpellFireball
|
||||||
|
components:
|
||||||
|
- type: Sprite
|
||||||
|
color: "#FF4500"
|
||||||
|
- type: CP14SpellStorage
|
||||||
|
spells:
|
||||||
|
- CP14ActionSpellFireball
|
||||||
|
- type: PointLight
|
||||||
|
color: "#FF4500"
|
||||||
|
- type: CP14ModularCraftPart
|
||||||
|
possibleParts:
|
||||||
|
- RingMagicCrystal1_SpellFireball
|
||||||
|
- HolderMagicCrystal1_SpellFireball
|
||||||
|
- HolderMagicCrystal2_SpellFireball
|
||||||
|
- HolderMagicCrystal3_SpellFireball
|
||||||
|
- HolderMagicCrystal4_SpellFireball
|
||||||
|
- StaffHolderMagicCrystal1_SpellFireball
|
||||||
|
|
||||||
|
# SpellShadowStep
|
||||||
|
- type: entity
|
||||||
|
id: CP14MagicCrystalSpellShadowStep
|
||||||
|
parent: CP14MagicCrystalBase
|
||||||
|
suffix: SpellShadowStep
|
||||||
|
components:
|
||||||
|
- type: Sprite
|
||||||
|
color: "#483D8B"
|
||||||
|
- type: CP14SpellStorage
|
||||||
|
spells:
|
||||||
|
- CP14ActionSpellShadowStep
|
||||||
|
- type: PointLight
|
||||||
|
color: "#483D8B"
|
||||||
|
- type: CP14ModularCraftPart
|
||||||
|
possibleParts:
|
||||||
|
- RingMagicCrystal1_SpellShadowStep
|
||||||
|
- HolderMagicCrystal1_SpellShadowStep
|
||||||
|
- HolderMagicCrystal2_SpellShadowStep
|
||||||
|
- HolderMagicCrystal3_SpellShadowStep
|
||||||
|
- HolderMagicCrystal4_SpellShadowStep
|
||||||
|
- StaffHolderMagicCrystal1_SpellShadowStep
|
||||||
|
|
||||||
|
# SpellCureBurn
|
||||||
|
- type: entity
|
||||||
|
id: CP14MagicCrystalSpellCureBurn
|
||||||
|
parent: CP14MagicCrystalBase
|
||||||
|
suffix: SpellCureBurn
|
||||||
|
components:
|
||||||
|
- type: Sprite
|
||||||
|
color: "#7CFC00"
|
||||||
|
- type: CP14SpellStorage
|
||||||
|
spells:
|
||||||
|
- CP14ActionSpellCureBurn
|
||||||
|
- type: PointLight
|
||||||
|
color: "#7CFC00"
|
||||||
|
- type: CP14ModularCraftPart
|
||||||
|
possibleParts:
|
||||||
|
- RingMagicCrystal1_SpellCureBurn
|
||||||
|
- HolderMagicCrystal1_SpellCureBurn
|
||||||
|
- HolderMagicCrystal2_SpellCureBurn
|
||||||
|
- HolderMagicCrystal3_SpellCureBurn
|
||||||
|
- HolderMagicCrystal4_SpellCureBurn
|
||||||
|
- StaffHolderMagicCrystal1_SpellCureBurn
|
||||||
|
|
||||||
|
# SpellBloodPurification
|
||||||
|
- type: entity
|
||||||
|
id: CP14MagicCrystalSpellBloodPurification
|
||||||
|
parent: CP14MagicCrystalBase
|
||||||
|
suffix: SpellBloodPurification
|
||||||
|
components:
|
||||||
|
- type: Sprite
|
||||||
|
color: "#7CFC00"
|
||||||
|
- type: CP14SpellStorage
|
||||||
|
spells:
|
||||||
|
- CP14ActionSpellBloodPurification
|
||||||
|
- type: PointLight
|
||||||
|
color: "#7CFC00"
|
||||||
|
- type: CP14ModularCraftPart
|
||||||
|
possibleParts:
|
||||||
|
- RingMagicCrystal1_SpellBloodPurification
|
||||||
|
- HolderMagicCrystal1_SpellBloodPurification
|
||||||
|
- HolderMagicCrystal2_SpellBloodPurification
|
||||||
|
- HolderMagicCrystal3_SpellBloodPurification
|
||||||
|
- HolderMagicCrystal4_SpellBloodPurification
|
||||||
|
- StaffHolderMagicCrystal1_SpellBloodPurification
|
||||||
|
|
||||||
|
# SpellCureWounds
|
||||||
|
- type: entity
|
||||||
|
id: CP14MagicCrystalSpellCureWounds
|
||||||
|
parent: CP14MagicCrystalBase
|
||||||
|
suffix: SpellCureWounds
|
||||||
|
components:
|
||||||
|
- type: Sprite
|
||||||
|
color: "#7CFC00"
|
||||||
|
- type: CP14SpellStorage
|
||||||
|
spells:
|
||||||
|
- CP14ActionSpellCureWounds
|
||||||
|
- type: PointLight
|
||||||
|
color: "#7CFC00"
|
||||||
|
- type: CP14ModularCraftPart
|
||||||
|
possibleParts:
|
||||||
|
- RingMagicCrystal1_SpellCureWounds
|
||||||
|
- HolderMagicCrystal1_SpellCureWounds
|
||||||
|
- HolderMagicCrystal2_SpellCureWounds
|
||||||
|
- HolderMagicCrystal3_SpellCureWounds
|
||||||
|
- HolderMagicCrystal4_SpellCureWounds
|
||||||
|
- StaffHolderMagicCrystal1_SpellCureWounds
|
||||||
|
|
||||||
|
# SpellManaConsume
|
||||||
|
- type: entity
|
||||||
|
id: CP14MagicCrystalSpellManaConsume
|
||||||
|
parent: CP14MagicCrystalBase
|
||||||
|
suffix: SpellManaConsume
|
||||||
|
components:
|
||||||
|
- type: Sprite
|
||||||
|
color: "#66CDAA"
|
||||||
|
- type: CP14SpellStorage
|
||||||
|
spells:
|
||||||
|
- CP14ActionSpellManaConsume
|
||||||
|
- type: PointLight
|
||||||
|
color: "#66CDAA"
|
||||||
|
- type: CP14ModularCraftPart
|
||||||
|
possibleParts:
|
||||||
|
- RingMagicCrystal1_SpellManaConsume
|
||||||
|
- HolderMagicCrystal1_SpellManaConsume
|
||||||
|
- HolderMagicCrystal2_SpellManaConsume
|
||||||
|
- HolderMagicCrystal3_SpellManaConsume
|
||||||
|
- HolderMagicCrystal4_SpellManaConsume
|
||||||
|
- StaffHolderMagicCrystal1_SpellManaConsume
|
||||||
|
|
||||||
|
# SpellManaGift
|
||||||
|
- type: entity
|
||||||
|
id: CP14MagicCrystalSpellManaGift
|
||||||
|
parent: CP14MagicCrystalBase
|
||||||
|
suffix: SpellManaGift
|
||||||
|
components:
|
||||||
|
- type: Sprite
|
||||||
|
color: "#66CDAA"
|
||||||
|
- type: CP14SpellStorage
|
||||||
|
spells:
|
||||||
|
- CP14ActionSpellManaGift
|
||||||
|
- type: PointLight
|
||||||
|
color: "#66CDAA"
|
||||||
|
- type: CP14ModularCraftPart
|
||||||
|
possibleParts:
|
||||||
|
- RingMagicCrystal1_SpellManaGift
|
||||||
|
- HolderMagicCrystal1_SpellManaGift
|
||||||
|
- HolderMagicCrystal2_SpellManaGift
|
||||||
|
- HolderMagicCrystal3_SpellManaGift
|
||||||
|
- HolderMagicCrystal4_SpellManaGift
|
||||||
|
- StaffHolderMagicCrystal1_SpellManaGift
|
||||||
|
|
||||||
|
# SpellShadowGrab
|
||||||
|
- type: entity
|
||||||
|
id: CP14MagicCrystalSpellShadowGrab
|
||||||
|
parent: CP14MagicCrystalBase
|
||||||
|
suffix: SpellShadowGrab
|
||||||
|
components:
|
||||||
|
- type: Sprite
|
||||||
|
color: "#483D8B"
|
||||||
|
- type: CP14SpellStorage
|
||||||
|
spells:
|
||||||
|
- CP14ActionSpellShadowGrab
|
||||||
|
- type: PointLight
|
||||||
|
color: "#483D8B"
|
||||||
|
- type: CP14ModularCraftPart
|
||||||
|
possibleParts:
|
||||||
|
- RingMagicCrystal1_SpellShadowGrab
|
||||||
|
- HolderMagicCrystal1_SpellShadowGrab
|
||||||
|
- HolderMagicCrystal2_SpellShadowGrab
|
||||||
|
- HolderMagicCrystal3_SpellShadowGrab
|
||||||
|
- HolderMagicCrystal4_SpellShadowGrab
|
||||||
|
- StaffHolderMagicCrystal1_SpellShadowGrab
|
||||||
|
|
||||||
|
# SpellResurrection
|
||||||
|
- type: entity
|
||||||
|
id: CP14MagicCrystalSpellResurrection
|
||||||
|
parent: CP14MagicCrystalBase
|
||||||
|
suffix: SpellResurrection
|
||||||
|
components:
|
||||||
|
- type: Sprite
|
||||||
|
color: "#2E8B57"
|
||||||
|
- type: CP14SpellStorage
|
||||||
|
spells:
|
||||||
|
- CP14ActionSpellResurrection
|
||||||
|
- type: PointLight
|
||||||
|
color: "#2E8B57"
|
||||||
|
- type: CP14ModularCraftPart
|
||||||
|
possibleParts:
|
||||||
|
- RingMagicCrystal1_SpellResurrection
|
||||||
|
- HolderMagicCrystal1_SpellResurrection
|
||||||
|
- HolderMagicCrystal2_SpellResurrection
|
||||||
|
- HolderMagicCrystal3_SpellResurrection
|
||||||
|
- HolderMagicCrystal4_SpellResurrection
|
||||||
|
- StaffHolderMagicCrystal1_SpellResurrection
|
||||||
|
|
||||||
|
# SpellWaterCreation
|
||||||
|
- type: entity
|
||||||
|
id: CP14MagicCrystalSpellWaterCreation
|
||||||
|
parent: CP14MagicCrystalBase
|
||||||
|
suffix: SpellWaterCreation
|
||||||
|
components:
|
||||||
|
- type: Sprite
|
||||||
|
color: "#5eabeb"
|
||||||
|
- type: CP14SpellStorage
|
||||||
|
spells:
|
||||||
|
- CP14ActionSpellWaterCreation
|
||||||
|
- type: PointLight
|
||||||
|
color: "#5eabeb"
|
||||||
|
- type: CP14ModularCraftPart
|
||||||
|
possibleParts:
|
||||||
|
- RingMagicCrystal1_SpellWaterCreation
|
||||||
|
- HolderMagicCrystal1_SpellWaterCreation
|
||||||
|
- HolderMagicCrystal2_SpellWaterCreation
|
||||||
|
- HolderMagicCrystal3_SpellWaterCreation
|
||||||
|
- HolderMagicCrystal4_SpellWaterCreation
|
||||||
|
- StaffHolderMagicCrystal1_SpellWaterCreation
|
||||||
|
|
||||||
|
# SpellBeerCreation
|
||||||
|
- type: entity
|
||||||
|
id: CP14MagicCrystalSpellBeerCreation
|
||||||
|
parent: CP14MagicCrystalBase
|
||||||
|
suffix: SpellBeerCreation
|
||||||
|
components:
|
||||||
|
- type: Sprite
|
||||||
|
color: "#5eabeb"
|
||||||
|
- type: CP14SpellStorage
|
||||||
|
spells:
|
||||||
|
- CP14ActionSpellBeerCreation
|
||||||
|
- type: PointLight
|
||||||
|
color: "#5eabeb"
|
||||||
|
- type: CP14ModularCraftPart
|
||||||
|
possibleParts:
|
||||||
|
- RingMagicCrystal1_SpellBeerCreation
|
||||||
|
- HolderMagicCrystal1_SpellBeerCreation
|
||||||
|
- HolderMagicCrystal2_SpellBeerCreation
|
||||||
|
- HolderMagicCrystal3_SpellBeerCreation
|
||||||
|
- HolderMagicCrystal4_SpellBeerCreation
|
||||||
|
- StaffHolderMagicCrystal1_SpellBeerCreation
|
||||||
|
|
||||||
|
# SpellIceShards
|
||||||
|
- type: entity
|
||||||
|
id: CP14MagicCrystalSpellIceShards
|
||||||
|
parent: CP14MagicCrystalBase
|
||||||
|
suffix: SpellIceShards
|
||||||
|
components:
|
||||||
|
- type: Sprite
|
||||||
|
color: "#5eabeb"
|
||||||
|
- type: CP14SpellStorage
|
||||||
|
spells:
|
||||||
|
- CP14ActionSpellIceShards
|
||||||
|
- type: PointLight
|
||||||
|
color: "#5eabeb"
|
||||||
|
- type: CP14ModularCraftPart
|
||||||
|
possibleParts:
|
||||||
|
- RingMagicCrystal1_SpellIceShards
|
||||||
|
- HolderMagicCrystal1_SpellIceShards
|
||||||
|
- HolderMagicCrystal2_SpellIceShards
|
||||||
|
- HolderMagicCrystal3_SpellIceShards
|
||||||
|
- HolderMagicCrystal4_SpellIceShards
|
||||||
|
- StaffHolderMagicCrystal1_SpellIceShards
|
||||||
@@ -0,0 +1,259 @@
|
|||||||
|
# Base holder
|
||||||
|
- type: entity
|
||||||
|
id: CP14MagicCrystalHolderBase
|
||||||
|
parent: BaseItem
|
||||||
|
abstract: true
|
||||||
|
name: magic crystals holder
|
||||||
|
categories: [ ForkFiltered ]
|
||||||
|
components:
|
||||||
|
- type: Item
|
||||||
|
size: Tiny
|
||||||
|
|
||||||
|
# Blue holder
|
||||||
|
- type: entity
|
||||||
|
id: CP14MagicCrystalHolder_BaseBlue
|
||||||
|
parent: CP14MagicCrystalHolderBase
|
||||||
|
name: magic crystals holder
|
||||||
|
abstract: true
|
||||||
|
components:
|
||||||
|
- type: PointLight
|
||||||
|
radius: 1.3
|
||||||
|
energy: 2
|
||||||
|
color: "#87CEEB"
|
||||||
|
- type: Sprite
|
||||||
|
sprite: _CP14/Objects/Magic/Holders/magic_crystal_holder_blue.rsi
|
||||||
|
|
||||||
|
- type: entity
|
||||||
|
id: CP14MagicCrystalHolder_Blue1
|
||||||
|
parent: CP14MagicCrystalHolder_BaseBlue
|
||||||
|
name: magic crystals holder
|
||||||
|
description: Holder for magic crystals, has one slot.
|
||||||
|
suffix: 1 slot
|
||||||
|
components:
|
||||||
|
- type: Sprite
|
||||||
|
state: icon1
|
||||||
|
- type: CP14ModularCraftPart
|
||||||
|
possibleParts:
|
||||||
|
- StaffMagicCrystalHolder_Blue1
|
||||||
|
|
||||||
|
- type: entity
|
||||||
|
id: CP14MagicCrystalHolder_Blue2
|
||||||
|
parent: CP14MagicCrystalHolder_BaseBlue
|
||||||
|
name: magic crystals holder
|
||||||
|
description: Holder for magic crystals, has two slots.
|
||||||
|
suffix: 2 slots
|
||||||
|
components:
|
||||||
|
- type: Sprite
|
||||||
|
state: icon2
|
||||||
|
- type: CP14ModularCraftPart
|
||||||
|
possibleParts:
|
||||||
|
- StaffMagicCrystalHolder_Blue2
|
||||||
|
|
||||||
|
- type: entity
|
||||||
|
id: CP14MagicCrystalHolder_Blue3
|
||||||
|
parent: CP14MagicCrystalHolder_BaseBlue
|
||||||
|
name: magic crystals holder
|
||||||
|
description: Holder for magic crystals, has three slots.
|
||||||
|
suffix: 3 slots
|
||||||
|
components:
|
||||||
|
- type: Sprite
|
||||||
|
state: icon3
|
||||||
|
- type: CP14ModularCraftPart
|
||||||
|
possibleParts:
|
||||||
|
- StaffMagicCrystalHolder_Blue3
|
||||||
|
|
||||||
|
- type: entity
|
||||||
|
id: CP14MagicCrystalHolder_Blue4
|
||||||
|
parent: CP14MagicCrystalHolder_BaseBlue
|
||||||
|
name: magic crystals holder
|
||||||
|
description: Holder for magic crystals, has four slots.
|
||||||
|
suffix: 4 slots
|
||||||
|
components:
|
||||||
|
- type: Sprite
|
||||||
|
state: icon4
|
||||||
|
- type: CP14ModularCraftPart
|
||||||
|
possibleParts:
|
||||||
|
- StaffMagicCrystalHolder_Blue4
|
||||||
|
|
||||||
|
# cooper holder
|
||||||
|
- type: entity
|
||||||
|
id: CP14MagicCrystalHolder_BaseCooper
|
||||||
|
parent: CP14MagicCrystalHolderBase
|
||||||
|
abstract: true
|
||||||
|
components:
|
||||||
|
- type: Sprite
|
||||||
|
sprite: _CP14/Objects/Magic/Holders/magic_crystal_holder_cooper.rsi
|
||||||
|
|
||||||
|
- type: entity
|
||||||
|
id: CP14MagicCrystalHolder_Cooper1
|
||||||
|
parent: CP14MagicCrystalHolder_BaseCooper
|
||||||
|
name: magic crystals holder
|
||||||
|
description: Holder for magic crystals, has one slot.
|
||||||
|
suffix: 1 slot
|
||||||
|
components:
|
||||||
|
- type: Sprite
|
||||||
|
state: icon1
|
||||||
|
- type: CP14ModularCraftPart
|
||||||
|
possibleParts:
|
||||||
|
- StaffMagicCrystalHolder_Cooper1
|
||||||
|
|
||||||
|
- type: entity
|
||||||
|
id: CP14MagicCrystalHolder_Cooper2
|
||||||
|
parent: CP14MagicCrystalHolder_BaseCooper
|
||||||
|
name: magic crystals holder
|
||||||
|
description: Holder for magic crystals, has two slots.
|
||||||
|
suffix: 2 slots
|
||||||
|
components:
|
||||||
|
- type: Sprite
|
||||||
|
state: icon2
|
||||||
|
- type: CP14ModularCraftPart
|
||||||
|
possibleParts:
|
||||||
|
- StaffMagicCrystalHolder_Cooper2
|
||||||
|
|
||||||
|
- type: entity
|
||||||
|
id: CP14MagicCrystalHolder_Cooper3
|
||||||
|
parent: CP14MagicCrystalHolder_BaseCooper
|
||||||
|
name: magic crystals holder
|
||||||
|
description: Holder for magic crystals, has three slots.
|
||||||
|
suffix: 3 slots
|
||||||
|
components:
|
||||||
|
- type: Sprite
|
||||||
|
state: icon3
|
||||||
|
- type: CP14ModularCraftPart
|
||||||
|
possibleParts:
|
||||||
|
- StaffMagicCrystalHolder_Cooper3
|
||||||
|
|
||||||
|
- type: entity
|
||||||
|
id: CP14MagicCrystalHolder_Cooper4
|
||||||
|
parent: CP14MagicCrystalHolder_BaseCooper
|
||||||
|
name: magic crystals holder
|
||||||
|
description: Holder for magic crystals, has four slots.
|
||||||
|
suffix: 4 slots
|
||||||
|
components:
|
||||||
|
- type: Sprite
|
||||||
|
state: icon4
|
||||||
|
- type: CP14ModularCraftPart
|
||||||
|
possibleParts:
|
||||||
|
- StaffMagicCrystalHolder_Cooper4
|
||||||
|
|
||||||
|
# iron holder
|
||||||
|
- type: entity
|
||||||
|
id: CP14MagicCrystalHolder_BaseIron
|
||||||
|
parent: CP14MagicCrystalHolderBase
|
||||||
|
abstract: true
|
||||||
|
components:
|
||||||
|
- type: Sprite
|
||||||
|
sprite: _CP14/Objects/Magic/Holders/magic_crystal_holder_iron.rsi
|
||||||
|
|
||||||
|
- type: entity
|
||||||
|
id: CP14MagicCrystalHolder_Iron1
|
||||||
|
parent: CP14MagicCrystalHolder_BaseIron
|
||||||
|
name: magic crystals holder
|
||||||
|
description: Holder for magic crystals, has one slot.
|
||||||
|
suffix: 1 slot
|
||||||
|
components:
|
||||||
|
- type: Sprite
|
||||||
|
state: icon1
|
||||||
|
- type: CP14ModularCraftPart
|
||||||
|
possibleParts:
|
||||||
|
- StaffMagicCrystalHolder_Iron1
|
||||||
|
|
||||||
|
- type: entity
|
||||||
|
id: CP14MagicCrystalHolder_Iron2
|
||||||
|
parent: CP14MagicCrystalHolder_BaseIron
|
||||||
|
name: magic crystals holder
|
||||||
|
description: Holder for magic crystals, has two slots.
|
||||||
|
suffix: 2 slots
|
||||||
|
components:
|
||||||
|
- type: Sprite
|
||||||
|
state: icon2
|
||||||
|
- type: CP14ModularCraftPart
|
||||||
|
possibleParts:
|
||||||
|
- StaffMagicCrystalHolder_Iron2
|
||||||
|
|
||||||
|
- type: entity
|
||||||
|
id: CP14MagicCrystalHolder_Iron3
|
||||||
|
parent: CP14MagicCrystalHolder_BaseIron
|
||||||
|
name: magic crystals holder
|
||||||
|
description: Holder for magic crystals, has three slots.
|
||||||
|
suffix: 3 slots
|
||||||
|
components:
|
||||||
|
- type: Sprite
|
||||||
|
state: icon3
|
||||||
|
- type: CP14ModularCraftPart
|
||||||
|
possibleParts:
|
||||||
|
- StaffMagicCrystalHolder_Iron3
|
||||||
|
|
||||||
|
- type: entity
|
||||||
|
id: CP14MagicCrystalHolder_Iron4
|
||||||
|
parent: CP14MagicCrystalHolder_BaseIron
|
||||||
|
name: magic crystals holder
|
||||||
|
description: Holder for magic crystals, has four slots.
|
||||||
|
suffix: 4 slots
|
||||||
|
components:
|
||||||
|
- type: Sprite
|
||||||
|
state: icon4
|
||||||
|
- type: CP14ModularCraftPart
|
||||||
|
possibleParts:
|
||||||
|
- StaffMagicCrystalHolder_Iron4
|
||||||
|
|
||||||
|
# gold holder
|
||||||
|
- type: entity
|
||||||
|
id: CP14MagicCrystalHolder_BaseGold
|
||||||
|
parent: CP14MagicCrystalHolderBase
|
||||||
|
abstract: true
|
||||||
|
components:
|
||||||
|
- type: Sprite
|
||||||
|
sprite: _CP14/Objects/Magic/Holders/magic_crystal_holder_gold.rsi
|
||||||
|
|
||||||
|
- type: entity
|
||||||
|
id: CP14MagicCrystalHolder_Gold1
|
||||||
|
parent: CP14MagicCrystalHolder_BaseGold
|
||||||
|
name: magic crystals holder
|
||||||
|
description: Holder for magic crystals, has one slot.
|
||||||
|
suffix: 1 slot
|
||||||
|
components:
|
||||||
|
- type: Sprite
|
||||||
|
state: icon1
|
||||||
|
- type: CP14ModularCraftPart
|
||||||
|
possibleParts:
|
||||||
|
- StaffMagicCrystalHolder_Gold1
|
||||||
|
|
||||||
|
- type: entity
|
||||||
|
id: CP14MagicCrystalHolder_Gold2
|
||||||
|
parent: CP14MagicCrystalHolder_BaseGold
|
||||||
|
name: magic crystals holder
|
||||||
|
description: Holder for magic crystals, has two slots.
|
||||||
|
suffix: 2 slots
|
||||||
|
components:
|
||||||
|
- type: Sprite
|
||||||
|
state: icon2
|
||||||
|
- type: CP14ModularCraftPart
|
||||||
|
possibleParts:
|
||||||
|
- StaffMagicCrystalHolder_Gold2
|
||||||
|
|
||||||
|
- type: entity
|
||||||
|
id: CP14MagicCrystalHolder_Gold3
|
||||||
|
parent: CP14MagicCrystalHolder_BaseGold
|
||||||
|
name: magic crystals holder
|
||||||
|
description: Holder for magic crystals, has three slots.
|
||||||
|
suffix: 3 slots
|
||||||
|
components:
|
||||||
|
- type: Sprite
|
||||||
|
state: icon3
|
||||||
|
- type: CP14ModularCraftPart
|
||||||
|
possibleParts:
|
||||||
|
- StaffMagicCrystalHolder_Gold3
|
||||||
|
|
||||||
|
- type: entity
|
||||||
|
id: CP14MagicCrystalHolder_Gold4
|
||||||
|
parent: CP14MagicCrystalHolder_BaseGold
|
||||||
|
name: magic crystals holder
|
||||||
|
description: Holder for magic crystals, has four slots.
|
||||||
|
suffix: 4 slots
|
||||||
|
components:
|
||||||
|
- type: Sprite
|
||||||
|
state: icon4
|
||||||
|
- type: CP14ModularCraftPart
|
||||||
|
possibleParts:
|
||||||
|
- StaffMagicCrystalHolder_Gold4
|
||||||
@@ -0,0 +1,104 @@
|
|||||||
|
# Base ring
|
||||||
|
- type: entity
|
||||||
|
parent: Clothing
|
||||||
|
id: CP14ClothingMagicRingBase
|
||||||
|
categories: [ ForkFiltered ]
|
||||||
|
abstract: true
|
||||||
|
name: ring
|
||||||
|
description: Magic Ring. Has space for a magic crystal.
|
||||||
|
components:
|
||||||
|
- type: Item
|
||||||
|
size: Tiny
|
||||||
|
- type: Clothing
|
||||||
|
slots:
|
||||||
|
- ring
|
||||||
|
- type: Sprite
|
||||||
|
sprite: _CP14/Clothing/Rings/rings.rsi
|
||||||
|
- type: CP14SpellStorageAccessWearing
|
||||||
|
- type: CP14SpellStorage
|
||||||
|
- type: CP14ModularCraftStartPoint
|
||||||
|
startProtoPart: CP14ClothingMagicRingBase
|
||||||
|
startSlots:
|
||||||
|
- RingMagicCrystal1
|
||||||
|
- MagicArtifact1
|
||||||
|
- type: CP14MagicManacostModify
|
||||||
|
|
||||||
|
# Blue ring
|
||||||
|
- type: entity
|
||||||
|
parent: CP14ClothingMagicRingBase
|
||||||
|
id: CP14ClothingMagicRingBlue
|
||||||
|
components:
|
||||||
|
- type: PointLight
|
||||||
|
radius: 1.3
|
||||||
|
energy: 2
|
||||||
|
color: "#87CEEB"
|
||||||
|
- type: Sprite
|
||||||
|
state: blue_ring
|
||||||
|
- type: CP14MagicManacostModify
|
||||||
|
modifiers:
|
||||||
|
Earth: 0.9
|
||||||
|
Fire: 0.9
|
||||||
|
Gate: 0.9
|
||||||
|
Healing: 0.9
|
||||||
|
LightDarkness: 0.9
|
||||||
|
Meta: 0.9
|
||||||
|
Movement: 0.9
|
||||||
|
Water: 0.9
|
||||||
|
Necromancy: 0.9
|
||||||
|
|
||||||
|
# cooper ring
|
||||||
|
- type: entity
|
||||||
|
parent: CP14ClothingMagicRingBase
|
||||||
|
id: CP14ClothingMagicRingCooper
|
||||||
|
components:
|
||||||
|
- type: Sprite
|
||||||
|
state: cooper_ring
|
||||||
|
- type: CP14MagicManacostModify
|
||||||
|
modifiers:
|
||||||
|
Earth: 1.05
|
||||||
|
Fire: 1.05
|
||||||
|
Gate: 1.05
|
||||||
|
Healing: 1.05
|
||||||
|
LightDarkness: 1.05
|
||||||
|
Meta: 1.05
|
||||||
|
Movement: 1.05
|
||||||
|
Water: 1.05
|
||||||
|
Necromancy: 1.05
|
||||||
|
|
||||||
|
# iron ring
|
||||||
|
- type: entity
|
||||||
|
parent: CP14ClothingMagicRingBase
|
||||||
|
id: CP14ClothingMagicRingIron
|
||||||
|
components:
|
||||||
|
- type: Sprite
|
||||||
|
state: iron_ring
|
||||||
|
- type: CP14MagicManacostModify
|
||||||
|
modifiers:
|
||||||
|
Earth: 1.05
|
||||||
|
Fire: 1.05
|
||||||
|
Gate: 1.05
|
||||||
|
Healing: 1.05
|
||||||
|
LightDarkness: 1.05
|
||||||
|
Meta: 1.05
|
||||||
|
Movement: 1.05
|
||||||
|
Water: 1.05
|
||||||
|
Necromancy: 1.05
|
||||||
|
|
||||||
|
# gold ring
|
||||||
|
- type: entity
|
||||||
|
parent: CP14ClothingMagicRingBase
|
||||||
|
id: CP14ClothingMagicRingGold
|
||||||
|
components:
|
||||||
|
- type: Sprite
|
||||||
|
state: gold_ring
|
||||||
|
- type: CP14MagicManacostModify
|
||||||
|
modifiers:
|
||||||
|
Earth: 1.05
|
||||||
|
Fire: 1.05
|
||||||
|
Gate: 1.05
|
||||||
|
Healing: 1.05
|
||||||
|
LightDarkness: 1.05
|
||||||
|
Meta: 1.05
|
||||||
|
Movement: 1.05
|
||||||
|
Water: 1.05
|
||||||
|
Necromancy: 1.05
|
||||||
@@ -0,0 +1,394 @@
|
|||||||
|
# Base
|
||||||
|
- type: entity
|
||||||
|
parent: BaseItem
|
||||||
|
id: CP14BaseOldMagicScroll
|
||||||
|
categories: [ ForkFiltered ]
|
||||||
|
name: old magic scroll
|
||||||
|
description: An ancient magical artefact. Can be used on magical items. Reduces mana consumption for spells.
|
||||||
|
abstract: true
|
||||||
|
components:
|
||||||
|
- type: Sprite
|
||||||
|
sprite: _CP14/Objects/Bureaucracy/paper.rsi
|
||||||
|
- type: Item
|
||||||
|
size: Tiny
|
||||||
|
- type: Flammable
|
||||||
|
fireSpread: true
|
||||||
|
alwaysCombustible: true
|
||||||
|
damage:
|
||||||
|
types:
|
||||||
|
Heat: 1
|
||||||
|
- type: FireVisuals
|
||||||
|
sprite: Effects/fire.rsi
|
||||||
|
normalState: fire
|
||||||
|
- type: Damageable
|
||||||
|
- type: Destructible
|
||||||
|
thresholds:
|
||||||
|
- trigger:
|
||||||
|
!type:DamageTrigger
|
||||||
|
damage: 15
|
||||||
|
behaviors:
|
||||||
|
- !type:SpawnEntitiesBehavior
|
||||||
|
spawn:
|
||||||
|
Ash:
|
||||||
|
min: 1
|
||||||
|
max: 1
|
||||||
|
- !type:DoActsBehavior
|
||||||
|
acts: [ "Destruction" ]
|
||||||
|
- type: Food
|
||||||
|
solution: food
|
||||||
|
delay: 7
|
||||||
|
forceFeedDelay: 7
|
||||||
|
- type: FlavorProfile
|
||||||
|
flavors:
|
||||||
|
- paper
|
||||||
|
- CP14Magic
|
||||||
|
- type: BadFood
|
||||||
|
- type: SolutionContainerManager
|
||||||
|
solutions:
|
||||||
|
food:
|
||||||
|
maxVol: 1
|
||||||
|
reagents:
|
||||||
|
- ReagentId: Fiber
|
||||||
|
Quantity: 1
|
||||||
|
|
||||||
|
# Earth
|
||||||
|
- type: entity
|
||||||
|
id: CP14OldMagicScroll_Earth5
|
||||||
|
parent: CP14BaseOldMagicScroll
|
||||||
|
suffix: Earth, 5
|
||||||
|
description: An ancient magical artefact. Can be used on magical items. Reduces mana consumption for spells with the "Earth" type by 5%
|
||||||
|
components:
|
||||||
|
- type: Sprite
|
||||||
|
layers:
|
||||||
|
- state: paper_filled
|
||||||
|
color: "#000000"
|
||||||
|
- state: magic
|
||||||
|
shader: unshaded
|
||||||
|
color: "#70533f"
|
||||||
|
- type: CP14ModularCraftPart
|
||||||
|
possibleParts:
|
||||||
|
- MagicArtifact_Earth5
|
||||||
|
|
||||||
|
- type: entity
|
||||||
|
id: CP14OldMagicScroll_Earth10
|
||||||
|
parent: CP14OldMagicScroll_Earth5
|
||||||
|
suffix: Earth, 10
|
||||||
|
description: An ancient magical artefact. Can be used on magical items. Reduces mana consumption for spells with the "Earth" type by 10%
|
||||||
|
components:
|
||||||
|
- type: CP14ModularCraftPart
|
||||||
|
possibleParts:
|
||||||
|
- MagicArtifact_Earth10
|
||||||
|
|
||||||
|
- type: entity
|
||||||
|
id: CP14OldMagicScroll_Earth15
|
||||||
|
parent: CP14OldMagicScroll_Earth5
|
||||||
|
suffix: Earth, 15
|
||||||
|
description: An ancient magical artefact. Can be used on magical items. Reduces mana consumption for spells with the "Earth" type by 15%
|
||||||
|
components:
|
||||||
|
- type: CP14ModularCraftPart
|
||||||
|
possibleParts:
|
||||||
|
- MagicArtifact_Earth15
|
||||||
|
|
||||||
|
# Fire
|
||||||
|
- type: entity
|
||||||
|
id: CP14OldMagicScroll_Fire5
|
||||||
|
parent: CP14BaseOldMagicScroll
|
||||||
|
suffix: Fire, 5
|
||||||
|
description: An ancient magical artefact. Can be used on magical items. Reduces mana consumption for spells with the "Fire" type by 5%
|
||||||
|
components:
|
||||||
|
- type: Sprite
|
||||||
|
layers:
|
||||||
|
- state: paper_filled
|
||||||
|
color: "#000000"
|
||||||
|
- state: magic
|
||||||
|
shader: unshaded
|
||||||
|
color: "#d9741c"
|
||||||
|
- type: CP14ModularCraftPart
|
||||||
|
possibleParts:
|
||||||
|
- MagicArtifact_Fire5
|
||||||
|
|
||||||
|
- type: entity
|
||||||
|
id: CP14OldMagicScroll_Fire10
|
||||||
|
parent: CP14OldMagicScroll_Fire5
|
||||||
|
suffix: Fire, 10
|
||||||
|
description: An ancient magical artefact. Can be used on magical items. Reduces mana consumption for spells with the "Fire" type by 10%
|
||||||
|
components:
|
||||||
|
- type: CP14ModularCraftPart
|
||||||
|
possibleParts:
|
||||||
|
- MagicArtifact_Fire10
|
||||||
|
|
||||||
|
- type: entity
|
||||||
|
id: CP14OldMagicScroll_Fire15
|
||||||
|
parent: CP14OldMagicScroll_Fire5
|
||||||
|
suffix: Fire, 15
|
||||||
|
description: An ancient magical artefact. Can be used on magical items. Reduces mana consumption for spells with the "Fire" type by 15%
|
||||||
|
components:
|
||||||
|
- type: CP14ModularCraftPart
|
||||||
|
possibleParts:
|
||||||
|
- MagicArtifact_Fire15
|
||||||
|
|
||||||
|
# Gate
|
||||||
|
- type: entity
|
||||||
|
id: CP14OldMagicScroll_Gate5
|
||||||
|
parent: CP14BaseOldMagicScroll
|
||||||
|
suffix: Gate, 5
|
||||||
|
description: An ancient magical artefact. Can be used on magical items. Reduces mana consumption for spells with the "Gate" type by 5%
|
||||||
|
components:
|
||||||
|
- type: Sprite
|
||||||
|
layers:
|
||||||
|
- state: paper_filled
|
||||||
|
color: "#000000"
|
||||||
|
- state: magic
|
||||||
|
shader: unshaded
|
||||||
|
color: "#32597d"
|
||||||
|
- type: CP14ModularCraftPart
|
||||||
|
possibleParts:
|
||||||
|
- MagicArtifact_Gate5
|
||||||
|
|
||||||
|
- type: entity
|
||||||
|
id: CP14OldMagicScroll_Gate10
|
||||||
|
parent: CP14OldMagicScroll_Gate5
|
||||||
|
suffix: Gate, 10
|
||||||
|
description: An ancient magical artefact. Can be used on magical items. Reduces mana consumption for spells with the "Gate" type by 10%
|
||||||
|
components:
|
||||||
|
- type: CP14ModularCraftPart
|
||||||
|
possibleParts:
|
||||||
|
- MagicArtifact_Gate10
|
||||||
|
|
||||||
|
- type: entity
|
||||||
|
id: CP14OldMagicScroll_Gate15
|
||||||
|
parent: CP14OldMagicScroll_Gate5
|
||||||
|
suffix: Gate, 15
|
||||||
|
description: An ancient magical artefact. Can be used on magical items. Reduces mana consumption for spells with the "Gate" type by 15%
|
||||||
|
components:
|
||||||
|
- type: CP14ModularCraftPart
|
||||||
|
possibleParts:
|
||||||
|
- MagicArtifact_Gate15
|
||||||
|
|
||||||
|
# Healing
|
||||||
|
- type: entity
|
||||||
|
id: CP14OldMagicScroll_Healing5
|
||||||
|
parent: CP14BaseOldMagicScroll
|
||||||
|
suffix: Healing, 5
|
||||||
|
description: An ancient magical artefact. Can be used on magical items. Reduces mana consumption for spells with the "Healing" type by 5%
|
||||||
|
components:
|
||||||
|
- type: Sprite
|
||||||
|
layers:
|
||||||
|
- state: paper_filled
|
||||||
|
color: "#000000"
|
||||||
|
- state: magic
|
||||||
|
shader: unshaded
|
||||||
|
color: "#89e04f"
|
||||||
|
- type: CP14ModularCraftPart
|
||||||
|
possibleParts:
|
||||||
|
- MagicArtifact_Healing5
|
||||||
|
|
||||||
|
- type: entity
|
||||||
|
id: CP14OldMagicScroll_Healing10
|
||||||
|
parent: CP14OldMagicScroll_Healing5
|
||||||
|
suffix: Healing, 10
|
||||||
|
description: An ancient magical artefact. Can be used on magical items. Reduces mana consumption for spells with the "Healing" type by 10%
|
||||||
|
components:
|
||||||
|
- type: CP14ModularCraftPart
|
||||||
|
possibleParts:
|
||||||
|
- MagicArtifact_Healing10
|
||||||
|
|
||||||
|
- type: entity
|
||||||
|
id: CP14OldMagicScroll_Healing15
|
||||||
|
parent: CP14OldMagicScroll_Healing5
|
||||||
|
suffix: Healing, 15
|
||||||
|
description: An ancient magical artefact. Can be used on magical items. Reduces mana consumption for spells with the "Healing" type by 15%
|
||||||
|
components:
|
||||||
|
- type: CP14ModularCraftPart
|
||||||
|
possibleParts:
|
||||||
|
- MagicArtifact_Healing15
|
||||||
|
|
||||||
|
# LightDarkness
|
||||||
|
- type: entity
|
||||||
|
id: CP14OldMagicScroll_LightDarkness5
|
||||||
|
parent: CP14BaseOldMagicScroll
|
||||||
|
suffix: LightDarkness, 5
|
||||||
|
description: An ancient magical artefact. Can be used on magical items. Reduces mana consumption for spells with the "LightDarkness" type by 5%
|
||||||
|
components:
|
||||||
|
- type: Sprite
|
||||||
|
layers:
|
||||||
|
- state: paper_filled
|
||||||
|
color: "#000000"
|
||||||
|
- state: magic
|
||||||
|
shader: unshaded
|
||||||
|
color: "#ba97b8"
|
||||||
|
- type: CP14ModularCraftPart
|
||||||
|
possibleParts:
|
||||||
|
- MagicArtifact_LightDarkness5
|
||||||
|
|
||||||
|
- type: entity
|
||||||
|
id: CP14OldMagicScroll_LightDarkness10
|
||||||
|
parent: CP14OldMagicScroll_LightDarkness5
|
||||||
|
suffix: LightDarkness, 10
|
||||||
|
description: An ancient magical artefact. Can be used on magical items. Reduces mana consumption for spells with the "LightDarkness" type by 10%
|
||||||
|
components:
|
||||||
|
- type: CP14ModularCraftPart
|
||||||
|
possibleParts:
|
||||||
|
- MagicArtifact_LightDarkness10
|
||||||
|
|
||||||
|
- type: entity
|
||||||
|
id: CP14OldMagicScroll_LightDarkness15
|
||||||
|
parent: CP14OldMagicScroll_LightDarkness5
|
||||||
|
suffix: LightDarkness, 15
|
||||||
|
description: An ancient magical artefact. Can be used on magical items. Reduces mana consumption for spells with the "LightDarkness" type by 15%
|
||||||
|
components:
|
||||||
|
- type: CP14ModularCraftPart
|
||||||
|
possibleParts:
|
||||||
|
- MagicArtifact_LightDarkness15
|
||||||
|
|
||||||
|
# Meta
|
||||||
|
- type: entity
|
||||||
|
id: CP14OldMagicScroll_Meta5
|
||||||
|
parent: CP14BaseOldMagicScroll
|
||||||
|
suffix: Meta, 5
|
||||||
|
description: An ancient magical artefact. Can be used on magical items. Reduces mana consumption for spells with the "Meta" type by 5%
|
||||||
|
components:
|
||||||
|
- type: Sprite
|
||||||
|
layers:
|
||||||
|
- state: paper_filled
|
||||||
|
color: "#000000"
|
||||||
|
- state: magic
|
||||||
|
shader: unshaded
|
||||||
|
color: "#dcffdb"
|
||||||
|
- type: CP14ModularCraftPart
|
||||||
|
possibleParts:
|
||||||
|
- MagicArtifact_Meta5
|
||||||
|
|
||||||
|
- type: entity
|
||||||
|
id: CP14OldMagicScroll_Meta10
|
||||||
|
parent: CP14OldMagicScroll_Meta5
|
||||||
|
suffix: Meta, 10
|
||||||
|
description: An ancient magical artefact. Can be used on magical items. Reduces mana consumption for spells with the "Meta" type by 10%
|
||||||
|
components:
|
||||||
|
- type: CP14ModularCraftPart
|
||||||
|
possibleParts:
|
||||||
|
- MagicArtifact_Meta10
|
||||||
|
|
||||||
|
- type: entity
|
||||||
|
id: CP14OldMagicScroll_Meta15
|
||||||
|
parent: CP14OldMagicScroll_Meta5
|
||||||
|
suffix: Meta, 15
|
||||||
|
description: An ancient magical artefact. Can be used on magical items. Reduces mana consumption for spells with the "Meta" type by 15%
|
||||||
|
components:
|
||||||
|
- type: CP14ModularCraftPart
|
||||||
|
possibleParts:
|
||||||
|
- MagicArtifact_Meta15
|
||||||
|
|
||||||
|
# Movement
|
||||||
|
- type: entity
|
||||||
|
id: CP14OldMagicScroll_Movement5
|
||||||
|
parent: CP14BaseOldMagicScroll
|
||||||
|
suffix: Movement, 5
|
||||||
|
description: An ancient magical artefact. Can be used on magical items. Reduces mana consumption for spells with the "Movement" type by 5%
|
||||||
|
components:
|
||||||
|
- type: Sprite
|
||||||
|
layers:
|
||||||
|
- state: paper_filled
|
||||||
|
color: "#000000"
|
||||||
|
- state: magic
|
||||||
|
shader: unshaded
|
||||||
|
color: "#63ceff"
|
||||||
|
- type: CP14ModularCraftPart
|
||||||
|
possibleParts:
|
||||||
|
- MagicArtifact_Movement5
|
||||||
|
|
||||||
|
- type: entity
|
||||||
|
id: CP14OldMagicScroll_Movement10
|
||||||
|
parent: CP14OldMagicScroll_Movement5
|
||||||
|
suffix: Movement, 10
|
||||||
|
description: An ancient magical artefact. Can be used on magical items. Reduces mana consumption for spells with the "Movement" type by 10%
|
||||||
|
components:
|
||||||
|
- type: CP14ModularCraftPart
|
||||||
|
possibleParts:
|
||||||
|
- MagicArtifact_Movement10
|
||||||
|
|
||||||
|
- type: entity
|
||||||
|
id: CP14OldMagicScroll_Movement15
|
||||||
|
parent: CP14OldMagicScroll_Movement5
|
||||||
|
suffix: Movement, 15
|
||||||
|
description: An ancient magical artefact. Can be used on magical items. Reduces mana consumption for spells with the "Movement" type by 15%
|
||||||
|
components:
|
||||||
|
- type: CP14ModularCraftPart
|
||||||
|
possibleParts:
|
||||||
|
- MagicArtifact_Movement15
|
||||||
|
|
||||||
|
# Water
|
||||||
|
- type: entity
|
||||||
|
id: CP14OldMagicScroll_Water5
|
||||||
|
parent: CP14BaseOldMagicScroll
|
||||||
|
suffix: Water, 5
|
||||||
|
description: An ancient magical artefact. Can be used on magical items. Reduces mana consumption for spells with the "Water" type by 5%
|
||||||
|
components:
|
||||||
|
- type: Sprite
|
||||||
|
layers:
|
||||||
|
- state: paper_filled
|
||||||
|
color: "#000000"
|
||||||
|
- state: magic
|
||||||
|
shader: unshaded
|
||||||
|
color: "#1c94d9"
|
||||||
|
- type: CP14ModularCraftPart
|
||||||
|
possibleParts:
|
||||||
|
- MagicArtifact_Water5
|
||||||
|
|
||||||
|
- type: entity
|
||||||
|
id: CP14OldMagicScroll_Water10
|
||||||
|
parent: CP14OldMagicScroll_Water5
|
||||||
|
suffix: Water, 10
|
||||||
|
description: An ancient magical artefact. Can be used on magical items. Reduces mana consumption for spells with the "Water" type by 10%
|
||||||
|
components:
|
||||||
|
- type: CP14ModularCraftPart
|
||||||
|
possibleParts:
|
||||||
|
- MagicArtifact_Water10
|
||||||
|
|
||||||
|
- type: entity
|
||||||
|
id: CP14OldMagicScroll_Water15
|
||||||
|
parent: CP14OldMagicScroll_Water5
|
||||||
|
suffix: Water, 15
|
||||||
|
description: An ancient magical artefact. Can be used on magical items. Reduces mana consumption for spells with the "Water" type by 15%
|
||||||
|
components:
|
||||||
|
- type: CP14ModularCraftPart
|
||||||
|
possibleParts:
|
||||||
|
- MagicArtifact_Water15
|
||||||
|
|
||||||
|
# Necromancy
|
||||||
|
- type: entity
|
||||||
|
id: CP14OldMagicScroll_Necromancy5
|
||||||
|
parent: CP14BaseOldMagicScroll
|
||||||
|
suffix: Necromancy, 5
|
||||||
|
description: An ancient magical artefact. Can be used on magical items. Reduces mana consumption for spells with the "Necromancy" type by 5%
|
||||||
|
components:
|
||||||
|
- type: Sprite
|
||||||
|
layers:
|
||||||
|
- state: paper_filled
|
||||||
|
color: "#000000"
|
||||||
|
- state: magic
|
||||||
|
shader: unshaded
|
||||||
|
color: "#1c94d9"
|
||||||
|
- type: CP14ModularCraftPart
|
||||||
|
possibleParts:
|
||||||
|
- MagicArtifact_Necromancy5
|
||||||
|
|
||||||
|
- type: entity
|
||||||
|
id: CP14OldMagicScroll_Necromancy10
|
||||||
|
parent: CP14OldMagicScroll_Necromancy5
|
||||||
|
suffix: Necromancy, 10
|
||||||
|
description: An ancient magical artefact. Can be used on magical items. Reduces mana consumption for spells with the "Necromancy" type by 10%
|
||||||
|
components:
|
||||||
|
- type: CP14ModularCraftPart
|
||||||
|
possibleParts:
|
||||||
|
- MagicArtifact_Necromancy10
|
||||||
|
|
||||||
|
- type: entity
|
||||||
|
id: CP14OldMagicScroll_Necromancy15
|
||||||
|
parent: CP14OldMagicScroll_Necromancy5
|
||||||
|
suffix: Necromancy, 15
|
||||||
|
description: An ancient magical artefact. Can be used on magical items. Reduces mana consumption for spells with the "Necromancy" type by 15%
|
||||||
|
components:
|
||||||
|
- type: CP14ModularCraftPart
|
||||||
|
possibleParts:
|
||||||
|
- MagicArtifact_Necromancy15
|
||||||
@@ -0,0 +1,285 @@
|
|||||||
|
# Base staff
|
||||||
|
- type: entity
|
||||||
|
id: CP14MagicStaffBase
|
||||||
|
abstract: true
|
||||||
|
parent:
|
||||||
|
- BaseItem
|
||||||
|
- CP14BaseWeaponDestructible
|
||||||
|
name: magic staff
|
||||||
|
description: A long, magic stick designed to convert magical energy into spells.
|
||||||
|
components:
|
||||||
|
- type: Item
|
||||||
|
size: Ginormous
|
||||||
|
- type: Wieldable
|
||||||
|
- type: IncreaseDamageOnWield
|
||||||
|
damage:
|
||||||
|
types:
|
||||||
|
Blunt: 6
|
||||||
|
- type: MeleeWeapon
|
||||||
|
angle: 100
|
||||||
|
attackRate: 1.3
|
||||||
|
range: 1.3
|
||||||
|
wideAnimationRotation: 135
|
||||||
|
wideAnimation: CP14WeaponArcSlash
|
||||||
|
damage:
|
||||||
|
types:
|
||||||
|
Blunt: 6
|
||||||
|
soundHit:
|
||||||
|
collection: MetalThud
|
||||||
|
cPAnimationLength: 0.3
|
||||||
|
cPAnimationOffset: -1.3
|
||||||
|
- type: CP14SpellStorageAccessHolding
|
||||||
|
- type: CP14SpellStorage
|
||||||
|
- type: CP14MagicEnergyExaminable
|
||||||
|
- type: CP14MagicEnergyContainer
|
||||||
|
- type: CP14MagicManacostModify
|
||||||
|
|
||||||
|
# Glowing wooden Staff
|
||||||
|
- type: entity
|
||||||
|
id: CP14MagicStaff_GlowingWooden
|
||||||
|
parent: CP14MagicStaffBase
|
||||||
|
components:
|
||||||
|
- type: PointLight
|
||||||
|
radius: 1.3
|
||||||
|
energy: 2
|
||||||
|
color: "#87CEEB"
|
||||||
|
- type: Sprite
|
||||||
|
sprite: _CP14/Objects/ModularTools/Magic/Staffs/glowing_wooden_staff.rsi
|
||||||
|
layers:
|
||||||
|
- state: icon
|
||||||
|
- type: Clothing
|
||||||
|
equipDelay: 1
|
||||||
|
unequipDelay: 1
|
||||||
|
sprite: _CP14/Objects/ModularTools/Magic/Staffs/glowing_wooden_staff.rsi
|
||||||
|
quickEquip: false
|
||||||
|
breakOnMove: false
|
||||||
|
slots:
|
||||||
|
- neck
|
||||||
|
- type: CP14MagicManacostModify
|
||||||
|
modifiers:
|
||||||
|
Earth: 0.90
|
||||||
|
Fire: 0.90
|
||||||
|
Gate: 0.90
|
||||||
|
Healing: 0.90
|
||||||
|
LightDarkness: 0.90
|
||||||
|
Meta: 0.90
|
||||||
|
Movement: 0.90
|
||||||
|
Water: 0.90
|
||||||
|
Necromancy: 0.90
|
||||||
|
- type: CP14ModularCraftStartPoint
|
||||||
|
startProtoPart: CP14MagicStaff_GlowingWooden
|
||||||
|
startSlots:
|
||||||
|
- MagicCrystalHolder
|
||||||
|
- MagicArtifact1
|
||||||
|
|
||||||
|
# Wooden staff
|
||||||
|
- type: entity
|
||||||
|
id: CP14MagicStaff_Wooden
|
||||||
|
parent: CP14MagicStaffBase
|
||||||
|
components:
|
||||||
|
- type: Sprite
|
||||||
|
sprite: _CP14/Objects/ModularTools/Magic/Staffs/wooden_staff.rsi
|
||||||
|
layers:
|
||||||
|
- state: icon
|
||||||
|
- type: Clothing
|
||||||
|
equipDelay: 1
|
||||||
|
unequipDelay: 1
|
||||||
|
sprite: _CP14/Objects/ModularTools/Magic/Staffs/wooden_staff.rsi
|
||||||
|
quickEquip: false
|
||||||
|
breakOnMove: false
|
||||||
|
slots:
|
||||||
|
- neck
|
||||||
|
- type: CP14MagicManacostModify
|
||||||
|
modifiers:
|
||||||
|
Earth: 1.15
|
||||||
|
Fire: 1.15
|
||||||
|
Gate: 1.15
|
||||||
|
Healing: 1.15
|
||||||
|
LightDarkness: 1.15
|
||||||
|
Meta: 1.15
|
||||||
|
Movement: 1.15
|
||||||
|
Water: 1.15
|
||||||
|
Necromancy: 1.15
|
||||||
|
- type: CP14ModularCraftStartPoint
|
||||||
|
startProtoPart: CP14MagicStaff_Wooden
|
||||||
|
startSlots:
|
||||||
|
- MagicCrystalHolder
|
||||||
|
- MagicArtifact1
|
||||||
|
|
||||||
|
# Glowing Iron Staff
|
||||||
|
- type: entity
|
||||||
|
id: CP14MagicStaff_GlowingIron
|
||||||
|
parent: CP14MagicStaffBase
|
||||||
|
components:
|
||||||
|
- type: PointLight
|
||||||
|
radius: 1.3
|
||||||
|
energy: 2
|
||||||
|
color: "#87CEEB"
|
||||||
|
- type: Sprite
|
||||||
|
sprite: _CP14/Objects/ModularTools/Magic/Staffs/blue_staff.rsi
|
||||||
|
layers:
|
||||||
|
- state: icon
|
||||||
|
- type: Clothing
|
||||||
|
equipDelay: 1
|
||||||
|
unequipDelay: 1
|
||||||
|
sprite: _CP14/Objects/ModularTools/Magic/Staffs/blue_staff.rsi
|
||||||
|
quickEquip: false
|
||||||
|
breakOnMove: false
|
||||||
|
slots:
|
||||||
|
- neck
|
||||||
|
- type: CP14MagicManacostModify
|
||||||
|
modifiers:
|
||||||
|
Earth: 0.90
|
||||||
|
Fire: 0.90
|
||||||
|
Gate: 0.90
|
||||||
|
Healing: 0.90
|
||||||
|
LightDarkness: 0.90
|
||||||
|
Meta: 0.90
|
||||||
|
Movement: 0.90
|
||||||
|
Water: 0.90
|
||||||
|
Necromancy: 0.90
|
||||||
|
- type: CP14ModularCraftStartPoint
|
||||||
|
startProtoPart: CP14MagicStaff_GlowingWooden
|
||||||
|
startSlots:
|
||||||
|
- MagicCrystalHolder
|
||||||
|
- MagicArtifact1
|
||||||
|
|
||||||
|
- type: entity
|
||||||
|
id: CP14MagicStaff_GlowingIronHolder
|
||||||
|
parent: CP14MagicStaffBase
|
||||||
|
components:
|
||||||
|
- type: PointLight
|
||||||
|
radius: 1.3
|
||||||
|
energy: 2
|
||||||
|
color: "#87CEEB"
|
||||||
|
- type: Sprite
|
||||||
|
sprite: _CP14/Objects/ModularTools/Magic/Staffs/blue_staff.rsi
|
||||||
|
layers:
|
||||||
|
- state: icon_holder
|
||||||
|
- type: Clothing
|
||||||
|
equipDelay: 1
|
||||||
|
unequipDelay: 1
|
||||||
|
sprite: _CP14/Objects/ModularTools/Magic/Staffs/blue_staff.rsi
|
||||||
|
quickEquip: false
|
||||||
|
breakOnMove: false
|
||||||
|
slots:
|
||||||
|
- neck
|
||||||
|
- type: CP14MagicManacostModify
|
||||||
|
modifiers:
|
||||||
|
Earth: 0.90
|
||||||
|
Fire: 0.90
|
||||||
|
Gate: 0.90
|
||||||
|
Healing: 0.90
|
||||||
|
LightDarkness: 0.90
|
||||||
|
Meta: 0.90
|
||||||
|
Movement: 0.90
|
||||||
|
Water: 0.90
|
||||||
|
Necromancy: 0.90
|
||||||
|
- type: CP14ModularCraftStartPoint
|
||||||
|
startProtoPart: CP14MagicStaff_GlowingWooden
|
||||||
|
startSlots:
|
||||||
|
- MagicCrystalHolder
|
||||||
|
- MagicArtifact1
|
||||||
|
- StaffHolderMagicCrystal1
|
||||||
|
|
||||||
|
# Cooper staff
|
||||||
|
- type: entity
|
||||||
|
id: CP14MagicStaff_Cooper
|
||||||
|
parent: CP14MagicStaffBase
|
||||||
|
components:
|
||||||
|
- type: Sprite
|
||||||
|
sprite: _CP14/Objects/ModularTools/Magic/Staffs/cooper_staff.rsi
|
||||||
|
layers:
|
||||||
|
- state: icon
|
||||||
|
- type: Clothing
|
||||||
|
equipDelay: 1
|
||||||
|
unequipDelay: 1
|
||||||
|
sprite: _CP14/Objects/ModularTools/Magic/Staffs/cooper_staff.rsi
|
||||||
|
quickEquip: false
|
||||||
|
breakOnMove: false
|
||||||
|
slots:
|
||||||
|
- neck
|
||||||
|
- type: CP14MagicManacostModify
|
||||||
|
modifiers:
|
||||||
|
Earth: 1.05
|
||||||
|
Fire: 1.05
|
||||||
|
Gate: 1.05
|
||||||
|
Healing: 1.05
|
||||||
|
LightDarkness: 1.05
|
||||||
|
Meta: 1.05
|
||||||
|
Movement: 1.05
|
||||||
|
Water: 1.05
|
||||||
|
Necromancy: 1.05
|
||||||
|
- type: CP14ModularCraftStartPoint
|
||||||
|
startProtoPart: CP14MagicStaff_Cooper
|
||||||
|
startSlots:
|
||||||
|
- MagicCrystalHolder
|
||||||
|
- MagicArtifact1
|
||||||
|
|
||||||
|
# Iron staff
|
||||||
|
- type: entity
|
||||||
|
id: CP14MagicStaff_Iron
|
||||||
|
parent: CP14MagicStaffBase
|
||||||
|
components:
|
||||||
|
- type: Sprite
|
||||||
|
sprite: _CP14/Objects/ModularTools/Magic/Staffs/iron_staff.rsi
|
||||||
|
layers:
|
||||||
|
- state: icon
|
||||||
|
- type: Clothing
|
||||||
|
equipDelay: 1
|
||||||
|
unequipDelay: 1
|
||||||
|
sprite: _CP14/Objects/ModularTools/Magic/Staffs/iron_staff.rsi
|
||||||
|
quickEquip: false
|
||||||
|
breakOnMove: false
|
||||||
|
slots:
|
||||||
|
- neck
|
||||||
|
- type: CP14MagicManacostModify
|
||||||
|
modifiers:
|
||||||
|
Earth: 1.05
|
||||||
|
Fire: 1.05
|
||||||
|
Gate: 1.05
|
||||||
|
Healing: 1.05
|
||||||
|
LightDarkness: 1.05
|
||||||
|
Meta: 1.05
|
||||||
|
Movement: 1.05
|
||||||
|
Water: 1.05
|
||||||
|
Necromancy: 1.05
|
||||||
|
- type: CP14ModularCraftStartPoint
|
||||||
|
startProtoPart: CP14MagicStaff_Iron
|
||||||
|
startSlots:
|
||||||
|
- MagicCrystalHolder
|
||||||
|
- MagicArtifact1
|
||||||
|
|
||||||
|
# Gold staff
|
||||||
|
- type: entity
|
||||||
|
id: CP14MagicStaff_Gold
|
||||||
|
parent: CP14MagicStaffBase
|
||||||
|
components:
|
||||||
|
- type: Sprite
|
||||||
|
sprite: _CP14/Objects/ModularTools/Magic/Staffs/gold_staff.rsi
|
||||||
|
layers:
|
||||||
|
- state: icon
|
||||||
|
- type: Clothing
|
||||||
|
equipDelay: 1
|
||||||
|
unequipDelay: 1
|
||||||
|
sprite: _CP14/Objects/ModularTools/Magic/Staffs/gold_staff.rsi
|
||||||
|
quickEquip: false
|
||||||
|
breakOnMove: false
|
||||||
|
slots:
|
||||||
|
- neck
|
||||||
|
- type: CP14ModularCraftStartPoint
|
||||||
|
startProtoPart: CP14MagicStaff_Gold
|
||||||
|
startSlots:
|
||||||
|
- MagicCrystalHolder
|
||||||
|
- MagicArtifact1
|
||||||
|
- type: CP14MagicManacostModify
|
||||||
|
modifiers:
|
||||||
|
Earth: 1.05
|
||||||
|
Fire: 1.05
|
||||||
|
Gate: 1.05
|
||||||
|
Healing: 1.05
|
||||||
|
LightDarkness: 1.05
|
||||||
|
Meta: 1.05
|
||||||
|
Movement: 1.05
|
||||||
|
Water: 1.05
|
||||||
|
Necromancy: 1.05
|
||||||
@@ -17,7 +17,7 @@
|
|||||||
id: CP14OreCopper
|
id: CP14OreCopper
|
||||||
parent: CP14BaseOre
|
parent: CP14BaseOre
|
||||||
name: copper ore
|
name: copper ore
|
||||||
description: A piece of pale, heavy copper.
|
description: A piece of pale, heavy copper.
|
||||||
components:
|
components:
|
||||||
- type: Sprite
|
- type: Sprite
|
||||||
sprite: _CP14/Objects/Materials/copper_ore.rsi
|
sprite: _CP14/Objects/Materials/copper_ore.rsi
|
||||||
@@ -29,7 +29,7 @@
|
|||||||
id: CP14OreIron
|
id: CP14OreIron
|
||||||
parent: CP14BaseOre
|
parent: CP14BaseOre
|
||||||
name: iron ore
|
name: iron ore
|
||||||
description: A piece of cold, heavy iron.
|
description: A piece of cold, heavy iron.
|
||||||
components:
|
components:
|
||||||
- type: Sprite
|
- type: Sprite
|
||||||
sprite: _CP14/Objects/Materials/iron_ore.rsi
|
sprite: _CP14/Objects/Materials/iron_ore.rsi
|
||||||
@@ -48,3 +48,19 @@
|
|||||||
layers:
|
layers:
|
||||||
- state: ore1
|
- state: ore1
|
||||||
map: ["random"]
|
map: ["random"]
|
||||||
|
|
||||||
|
- type: entity
|
||||||
|
id: CP14OreGlowingIron
|
||||||
|
parent: CP14BaseOre
|
||||||
|
name: glowing iron ore
|
||||||
|
description: A piece of soft, glowing iron.
|
||||||
|
components:
|
||||||
|
- type: PointLight
|
||||||
|
radius: 1.3
|
||||||
|
energy: 2
|
||||||
|
color: "#87CEEB"
|
||||||
|
- type: Sprite
|
||||||
|
sprite: _CP14/Objects/Materials/glowingiron_ore.rsi
|
||||||
|
layers:
|
||||||
|
- state: ore1
|
||||||
|
map: ["random"]
|
||||||
|
|||||||
@@ -208,4 +208,55 @@
|
|||||||
id: CP14FloraTreeLarge06
|
id: CP14FloraTreeLarge06
|
||||||
components:
|
components:
|
||||||
- type: Sprite
|
- type: Sprite
|
||||||
state: treelarge06
|
state: treelarge06
|
||||||
|
|
||||||
|
- type: entity
|
||||||
|
parent: CP14BaseTree
|
||||||
|
id: CP14FloraGlowingTree
|
||||||
|
components:
|
||||||
|
- type: PointLight
|
||||||
|
radius: 1.3
|
||||||
|
energy: 2
|
||||||
|
color: "#87CEEB"
|
||||||
|
- type: Sprite
|
||||||
|
noRot: true
|
||||||
|
sprite: _CP14/Structures/Flora/Trees/glowing_tree.rsi
|
||||||
|
state: tree1
|
||||||
|
drawdepth: Mobs
|
||||||
|
offset: 0,0.9
|
||||||
|
- type: Destructible
|
||||||
|
thresholds:
|
||||||
|
- trigger:
|
||||||
|
!type:DamageTypeTrigger
|
||||||
|
damageType: Heat
|
||||||
|
damage: 100
|
||||||
|
behaviors:
|
||||||
|
- !type:DoActsBehavior
|
||||||
|
acts: [ "Destruction" ]
|
||||||
|
- trigger:
|
||||||
|
!type:DamageTrigger
|
||||||
|
damage: 200
|
||||||
|
behaviors:
|
||||||
|
- !type:DoActsBehavior
|
||||||
|
acts: [ "Destruction" ]
|
||||||
|
- trigger:
|
||||||
|
!type:DamageTrigger
|
||||||
|
damage: 75
|
||||||
|
behaviors:
|
||||||
|
- !type:PlaySoundBehavior
|
||||||
|
sound:
|
||||||
|
path: /Audio/Effects/tree_fell.ogg
|
||||||
|
params:
|
||||||
|
volume: 5
|
||||||
|
variation: 0.05
|
||||||
|
- !type:DoActsBehavior
|
||||||
|
acts: [ "Destruction" ]
|
||||||
|
- !type:SpawnEntitiesBehavior
|
||||||
|
spawn:
|
||||||
|
CP14GlowingWoodLog:
|
||||||
|
min: 1
|
||||||
|
max: 2
|
||||||
|
CP14FoodGlowingFruit:
|
||||||
|
min: 1
|
||||||
|
max: 2
|
||||||
|
|
||||||
|
|||||||
@@ -203,6 +203,47 @@
|
|||||||
- type: IconSmooth
|
- type: IconSmooth
|
||||||
base: wall
|
base: wall
|
||||||
|
|
||||||
|
- type: entity
|
||||||
|
id: CP14WallStoneGlowingIronOre
|
||||||
|
suffix: glowing iron ore
|
||||||
|
parent: CP14WallStone
|
||||||
|
description: A solid stone natural wall. You see the shining particles in it.
|
||||||
|
components:
|
||||||
|
- type: PointLight
|
||||||
|
radius: 1.3
|
||||||
|
energy: 2
|
||||||
|
color: "#87CEEB"
|
||||||
|
- type: Sprite
|
||||||
|
sprite: _CP14/Structures/Walls/Natural/cave_stone_glowingiron.rsi
|
||||||
|
- type: Icon
|
||||||
|
sprite: _CP14/Structures/Walls/Natural/cave_stone_glowingiron.rsi
|
||||||
|
- type: Destructible
|
||||||
|
thresholds:
|
||||||
|
- trigger:
|
||||||
|
!type:DamageTrigger
|
||||||
|
damage: 300
|
||||||
|
behaviors:
|
||||||
|
- !type:DoActsBehavior
|
||||||
|
acts: ["Destruction"]
|
||||||
|
- trigger:
|
||||||
|
!type:DamageTrigger
|
||||||
|
damage: 100
|
||||||
|
behaviors:
|
||||||
|
- !type:PlaySoundBehavior
|
||||||
|
sound:
|
||||||
|
path: /Audio/Effects/break_stone.ogg
|
||||||
|
params:
|
||||||
|
volume: -6
|
||||||
|
- !type:SpawnEntitiesBehavior
|
||||||
|
spawn:
|
||||||
|
CP14OreGlowingIron:
|
||||||
|
min: 1
|
||||||
|
max: 3
|
||||||
|
- !type:DoActsBehavior
|
||||||
|
acts: ["Destruction"]
|
||||||
|
- type: IconSmooth
|
||||||
|
base: wall
|
||||||
|
|
||||||
# We dont have silver now
|
# We dont have silver now
|
||||||
|
|
||||||
#- type: entity
|
#- type: entity
|
||||||
|
|||||||
@@ -78,3 +78,21 @@
|
|||||||
icon: { sprite: _CP14/Objects/Materials/flora.rsi, state: grass_material1 }
|
icon: { sprite: _CP14/Objects/Materials/flora.rsi, state: grass_material1 }
|
||||||
color: "#85903e"
|
color: "#85903e"
|
||||||
price: 0 #?
|
price: 0 #?
|
||||||
|
|
||||||
|
- type: material
|
||||||
|
id: CP14GlowingIron
|
||||||
|
stackEntity: CP14GlowingIronBar1
|
||||||
|
name: cp14-material-glowing-iron
|
||||||
|
unit: materials-unit-bar
|
||||||
|
icon: { sprite: _CP14/Objects/Materials/glowingiron_bar.rsi, state: bar_2 }
|
||||||
|
color: "#87CEEB"
|
||||||
|
price: 0 #?
|
||||||
|
|
||||||
|
- type: material
|
||||||
|
id: CP14GlowingWoodenPlanks
|
||||||
|
stackEntity: CP14GlowingWoodenPlanks1
|
||||||
|
name: cp14-material-glowing-wooden-planks
|
||||||
|
unit: materials-unit-plank
|
||||||
|
icon: { sprite: _CP14/Objects/Materials/wood.rsi, state: planks_2 }
|
||||||
|
color: "#874d3a"
|
||||||
|
price: 0 #?
|
||||||
|
|||||||
@@ -0,0 +1,251 @@
|
|||||||
|
# Earth
|
||||||
|
- type: modularPart
|
||||||
|
id: MagicArtifact_Earth5
|
||||||
|
targetSlot: MagicArtifact1
|
||||||
|
sourcePart: CP14OldMagicScroll_Earth5
|
||||||
|
modifiers:
|
||||||
|
- !type:EditManacostModify
|
||||||
|
modifiers:
|
||||||
|
Earth: 0.95
|
||||||
|
|
||||||
|
- type: modularPart
|
||||||
|
id: MagicArtifact_Earth10
|
||||||
|
targetSlot: MagicArtifact1
|
||||||
|
sourcePart: CP14OldMagicScroll_Earth10
|
||||||
|
modifiers:
|
||||||
|
- !type:EditManacostModify
|
||||||
|
modifiers:
|
||||||
|
Earth: 0.90
|
||||||
|
|
||||||
|
- type: modularPart
|
||||||
|
id: MagicArtifact_Earth15
|
||||||
|
targetSlot: MagicArtifact1
|
||||||
|
sourcePart: CP14OldMagicScroll_Earth15
|
||||||
|
modifiers:
|
||||||
|
- !type:EditManacostModify
|
||||||
|
modifiers:
|
||||||
|
Earth: 0.85
|
||||||
|
|
||||||
|
# Fire
|
||||||
|
- type: modularPart
|
||||||
|
id: MagicArtifact_Fire5
|
||||||
|
targetSlot: MagicArtifact1
|
||||||
|
sourcePart: CP14OldMagicScroll_Fire5
|
||||||
|
modifiers:
|
||||||
|
- !type:EditManacostModify
|
||||||
|
modifiers:
|
||||||
|
Fire: 0.95
|
||||||
|
|
||||||
|
- type: modularPart
|
||||||
|
id: MagicArtifact_Fire10
|
||||||
|
targetSlot: MagicArtifact1
|
||||||
|
sourcePart: CP14OldMagicScroll_Fire10
|
||||||
|
modifiers:
|
||||||
|
- !type:EditManacostModify
|
||||||
|
modifiers:
|
||||||
|
Fire: 0.90
|
||||||
|
|
||||||
|
- type: modularPart
|
||||||
|
id: MagicArtifact_Fire15
|
||||||
|
targetSlot: MagicArtifact1
|
||||||
|
sourcePart: CP14OldMagicScroll_Fire15
|
||||||
|
modifiers:
|
||||||
|
- !type:EditManacostModify
|
||||||
|
modifiers:
|
||||||
|
Fire: 0.85
|
||||||
|
|
||||||
|
# Gate
|
||||||
|
- type: modularPart
|
||||||
|
id: MagicArtifact_Gate5
|
||||||
|
targetSlot: MagicArtifact1
|
||||||
|
sourcePart: CP14OldMagicScroll_Gate5
|
||||||
|
modifiers:
|
||||||
|
- !type:EditManacostModify
|
||||||
|
modifiers:
|
||||||
|
Gate: 0.95
|
||||||
|
|
||||||
|
- type: modularPart
|
||||||
|
id: MagicArtifact_Gate10
|
||||||
|
targetSlot: MagicArtifact1
|
||||||
|
sourcePart: CP14OldMagicScroll_Gate10
|
||||||
|
modifiers:
|
||||||
|
- !type:EditManacostModify
|
||||||
|
modifiers:
|
||||||
|
Gate: 0.90
|
||||||
|
|
||||||
|
- type: modularPart
|
||||||
|
id: MagicArtifact_Gate15
|
||||||
|
targetSlot: MagicArtifact1
|
||||||
|
sourcePart: CP14OldMagicScroll_Gate15
|
||||||
|
modifiers:
|
||||||
|
- !type:EditManacostModify
|
||||||
|
modifiers:
|
||||||
|
Gate: 0.85
|
||||||
|
|
||||||
|
# Healing
|
||||||
|
- type: modularPart
|
||||||
|
id: MagicArtifact_Healing5
|
||||||
|
targetSlot: MagicArtifact1
|
||||||
|
sourcePart: CP14OldMagicScroll_Healing5
|
||||||
|
modifiers:
|
||||||
|
- !type:EditManacostModify
|
||||||
|
modifiers:
|
||||||
|
Healing: 0.95
|
||||||
|
|
||||||
|
- type: modularPart
|
||||||
|
id: MagicArtifact_Healing10
|
||||||
|
targetSlot: MagicArtifact1
|
||||||
|
sourcePart: CP14OldMagicScroll_Healing10
|
||||||
|
modifiers:
|
||||||
|
- !type:EditManacostModify
|
||||||
|
modifiers:
|
||||||
|
Healing: 0.90
|
||||||
|
|
||||||
|
- type: modularPart
|
||||||
|
id: MagicArtifact_Healing15
|
||||||
|
targetSlot: MagicArtifact1
|
||||||
|
sourcePart: CP14OldMagicScroll_Healing15
|
||||||
|
modifiers:
|
||||||
|
- !type:EditManacostModify
|
||||||
|
modifiers:
|
||||||
|
Healing: 0.85
|
||||||
|
|
||||||
|
# LightDarkness
|
||||||
|
- type: modularPart
|
||||||
|
id: MagicArtifact_LightDarkness5
|
||||||
|
targetSlot: MagicArtifact1
|
||||||
|
sourcePart: CP14OldMagicScroll_LightDarkness5
|
||||||
|
modifiers:
|
||||||
|
- !type:EditManacostModify
|
||||||
|
modifiers:
|
||||||
|
LightDarkness: 0.95
|
||||||
|
|
||||||
|
- type: modularPart
|
||||||
|
id: MagicArtifact_LightDarkness10
|
||||||
|
targetSlot: MagicArtifact1
|
||||||
|
sourcePart: CP14OldMagicScroll_LightDarkness10
|
||||||
|
modifiers:
|
||||||
|
- !type:EditManacostModify
|
||||||
|
modifiers:
|
||||||
|
LightDarkness: 0.90
|
||||||
|
|
||||||
|
- type: modularPart
|
||||||
|
id: MagicArtifact_LightDarkness15
|
||||||
|
targetSlot: MagicArtifact1
|
||||||
|
sourcePart: CP14OldMagicScroll_LightDarkness15
|
||||||
|
modifiers:
|
||||||
|
- !type:EditManacostModify
|
||||||
|
modifiers:
|
||||||
|
LightDarkness: 0.85
|
||||||
|
|
||||||
|
# Meta
|
||||||
|
- type: modularPart
|
||||||
|
id: MagicArtifact_Meta5
|
||||||
|
targetSlot: MagicArtifact1
|
||||||
|
sourcePart: CP14OldMagicScroll_Meta5
|
||||||
|
modifiers:
|
||||||
|
- !type:EditManacostModify
|
||||||
|
modifiers:
|
||||||
|
Meta: 0.95
|
||||||
|
|
||||||
|
- type: modularPart
|
||||||
|
id: MagicArtifact_Meta10
|
||||||
|
targetSlot: MagicArtifact1
|
||||||
|
sourcePart: CP14OldMagicScroll_Meta10
|
||||||
|
modifiers:
|
||||||
|
- !type:EditManacostModify
|
||||||
|
modifiers:
|
||||||
|
Meta: 0.90
|
||||||
|
|
||||||
|
- type: modularPart
|
||||||
|
id: MagicArtifact_Meta15
|
||||||
|
targetSlot: MagicArtifact1
|
||||||
|
sourcePart: CP14OldMagicScroll_Meta15
|
||||||
|
modifiers:
|
||||||
|
- !type:EditManacostModify
|
||||||
|
modifiers:
|
||||||
|
Meta: 0.85
|
||||||
|
|
||||||
|
# Movement
|
||||||
|
- type: modularPart
|
||||||
|
id: MagicArtifact_Movement5
|
||||||
|
targetSlot: MagicArtifact1
|
||||||
|
sourcePart: CP14OldMagicScroll_Movement5
|
||||||
|
modifiers:
|
||||||
|
- !type:EditManacostModify
|
||||||
|
modifiers:
|
||||||
|
Movement: 0.95
|
||||||
|
|
||||||
|
- type: modularPart
|
||||||
|
id: MagicArtifact_Movement10
|
||||||
|
targetSlot: MagicArtifact1
|
||||||
|
sourcePart: CP14OldMagicScroll_Movement10
|
||||||
|
modifiers:
|
||||||
|
- !type:EditManacostModify
|
||||||
|
modifiers:
|
||||||
|
Movement: 0.90
|
||||||
|
|
||||||
|
- type: modularPart
|
||||||
|
id: MagicArtifact_Movement15
|
||||||
|
targetSlot: MagicArtifact1
|
||||||
|
sourcePart: CP14OldMagicScroll_Movement15
|
||||||
|
modifiers:
|
||||||
|
- !type:EditManacostModify
|
||||||
|
modifiers:
|
||||||
|
Movement: 0.85
|
||||||
|
|
||||||
|
# Water
|
||||||
|
- type: modularPart
|
||||||
|
id: MagicArtifact_Water5
|
||||||
|
targetSlot: MagicArtifact1
|
||||||
|
sourcePart: CP14OldMagicScroll_Water5
|
||||||
|
modifiers:
|
||||||
|
- !type:EditManacostModify
|
||||||
|
modifiers:
|
||||||
|
Water: 0.95
|
||||||
|
|
||||||
|
- type: modularPart
|
||||||
|
id: MagicArtifact_Water10
|
||||||
|
targetSlot: MagicArtifact1
|
||||||
|
sourcePart: CP14OldMagicScroll_Water10
|
||||||
|
modifiers:
|
||||||
|
- !type:EditManacostModify
|
||||||
|
modifiers:
|
||||||
|
Water: 0.90
|
||||||
|
|
||||||
|
- type: modularPart
|
||||||
|
id: MagicArtifact_Water15
|
||||||
|
targetSlot: MagicArtifact1
|
||||||
|
sourcePart: CP14OldMagicScroll_Water15
|
||||||
|
modifiers:
|
||||||
|
- !type:EditManacostModify
|
||||||
|
modifiers:
|
||||||
|
Water: 0.85
|
||||||
|
|
||||||
|
# Necromancy
|
||||||
|
- type: modularPart
|
||||||
|
id: MagicArtifact_Necromancy5
|
||||||
|
targetSlot: MagicArtifact1
|
||||||
|
sourcePart: CP14OldMagicScroll_Necromancy5
|
||||||
|
modifiers:
|
||||||
|
- !type:EditManacostModify
|
||||||
|
modifiers:
|
||||||
|
Necromancy: 0.95
|
||||||
|
|
||||||
|
- type: modularPart
|
||||||
|
id: MagicArtifact_Necromancy10
|
||||||
|
targetSlot: MagicArtifact1
|
||||||
|
sourcePart: CP14OldMagicScroll_Necromancy10
|
||||||
|
modifiers:
|
||||||
|
- !type:EditManacostModify
|
||||||
|
modifiers:
|
||||||
|
Necromancy: 0.90
|
||||||
|
|
||||||
|
- type: modularPart
|
||||||
|
id: MagicArtifact_Necromancy15
|
||||||
|
targetSlot: MagicArtifact1
|
||||||
|
sourcePart: CP14OldMagicScroll_Necromancy15
|
||||||
|
modifiers:
|
||||||
|
- !type:EditManacostModify
|
||||||
|
modifiers:
|
||||||
|
Necromancy: 0.85
|
||||||
1375
Resources/Prototypes/_CP14/ModularCraft/Magic/magic_crystal.yml
Normal file
@@ -0,0 +1,343 @@
|
|||||||
|
# Blue Holders
|
||||||
|
- type: modularPart
|
||||||
|
id: BaseBlueHolderManacostModify
|
||||||
|
modifiers:
|
||||||
|
- !type:EditManacostModify
|
||||||
|
modifiers:
|
||||||
|
Earth: 0.95
|
||||||
|
Fire: 0.95
|
||||||
|
Gate: 0.95
|
||||||
|
Healing: 0.95
|
||||||
|
LightDarkness: 0.95
|
||||||
|
Meta: 0.95
|
||||||
|
Movement: 0.95
|
||||||
|
Water: 0.95
|
||||||
|
Necromancy: 0.95
|
||||||
|
|
||||||
|
- type: modularPart
|
||||||
|
id: StaffMagicCrystalHolder_Blue1
|
||||||
|
targetSlot: MagicCrystalHolder
|
||||||
|
sourcePart: CP14MagicCrystalHolder_Blue1
|
||||||
|
iconSprite:
|
||||||
|
- sprite: _CP14/Objects/ModularTools/Magic/Holders/magic_crystals_holder_blue.rsi
|
||||||
|
state: icon1
|
||||||
|
rsiPath: _CP14/Objects/ModularTools/Magic/Holders/magic_crystals_holder_blue.rsi
|
||||||
|
modifiers:
|
||||||
|
- !type:EditModularSlots
|
||||||
|
addSlots:
|
||||||
|
- HolderMagicCrystal1
|
||||||
|
- !type:Inherit
|
||||||
|
copyFrom:
|
||||||
|
- BaseBlueHolderManacostModify
|
||||||
|
|
||||||
|
- type: modularPart
|
||||||
|
id: StaffMagicCrystalHolder_Blue2
|
||||||
|
targetSlot: MagicCrystalHolder
|
||||||
|
sourcePart: CP14MagicCrystalHolder_Blue2
|
||||||
|
iconSprite:
|
||||||
|
- sprite: _CP14/Objects/ModularTools/Magic/Holders/magic_crystals_holder_blue.rsi
|
||||||
|
state: icon2
|
||||||
|
rsiPath: _CP14/Objects/ModularTools/Magic/Holders/magic_crystals_holder_blue.rsi
|
||||||
|
modifiers:
|
||||||
|
- !type:EditModularSlots
|
||||||
|
addSlots:
|
||||||
|
- HolderMagicCrystal1
|
||||||
|
- HolderMagicCrystal3
|
||||||
|
- !type:Inherit
|
||||||
|
copyFrom:
|
||||||
|
- BaseBlueHolderManacostModify
|
||||||
|
|
||||||
|
- type: modularPart
|
||||||
|
id: StaffMagicCrystalHolder_Blue3
|
||||||
|
targetSlot: MagicCrystalHolder
|
||||||
|
sourcePart: CP14MagicCrystalHolder_Blue3
|
||||||
|
iconSprite:
|
||||||
|
- sprite: _CP14/Objects/ModularTools/Magic/Holders/magic_crystals_holder_blue.rsi
|
||||||
|
state: icon3
|
||||||
|
rsiPath: _CP14/Objects/ModularTools/Magic/Holders/magic_crystals_holder_blue.rsi
|
||||||
|
modifiers:
|
||||||
|
- !type:EditModularSlots
|
||||||
|
addSlots:
|
||||||
|
- HolderMagicCrystal1
|
||||||
|
- HolderMagicCrystal2
|
||||||
|
- HolderMagicCrystal4
|
||||||
|
- !type:Inherit
|
||||||
|
copyFrom:
|
||||||
|
- BaseBlueHolderManacostModify
|
||||||
|
|
||||||
|
- type: modularPart
|
||||||
|
id: StaffMagicCrystalHolder_Blue4
|
||||||
|
targetSlot: MagicCrystalHolder
|
||||||
|
sourcePart: CP14MagicCrystalHolder_Blue4
|
||||||
|
iconSprite:
|
||||||
|
- sprite: _CP14/Objects/ModularTools/Magic/Holders/magic_crystals_holder_blue.rsi
|
||||||
|
state: icon4
|
||||||
|
rsiPath: _CP14/Objects/ModularTools/Magic/Holders/magic_crystals_holder_blue.rsi
|
||||||
|
modifiers:
|
||||||
|
- !type:EditModularSlots
|
||||||
|
addSlots:
|
||||||
|
- HolderMagicCrystal1
|
||||||
|
- HolderMagicCrystal2
|
||||||
|
- HolderMagicCrystal3
|
||||||
|
- HolderMagicCrystal4
|
||||||
|
- !type:Inherit
|
||||||
|
copyFrom:
|
||||||
|
- BaseBlueHolderManacostModify
|
||||||
|
|
||||||
|
# Cooper Holders
|
||||||
|
- type: modularPart
|
||||||
|
id: BaseCooperHolderManacostModify
|
||||||
|
modifiers:
|
||||||
|
- !type:EditManacostModify
|
||||||
|
modifiers:
|
||||||
|
Earth: 1.05
|
||||||
|
Fire: 1.05
|
||||||
|
Gate: 1.05
|
||||||
|
Healing: 1.05
|
||||||
|
LightDarkness: 1.05
|
||||||
|
Meta: 1.05
|
||||||
|
Movement: 1.05
|
||||||
|
Water: 1.05
|
||||||
|
Necromancy: 1.05
|
||||||
|
|
||||||
|
- type: modularPart
|
||||||
|
id: StaffMagicCrystalHolder_Cooper1
|
||||||
|
targetSlot: MagicCrystalHolder
|
||||||
|
sourcePart: CP14MagicCrystalHolder_Cooper1
|
||||||
|
iconSprite:
|
||||||
|
- sprite: _CP14/Objects/ModularTools/Magic/Holders/magic_crystals_holder_cooper.rsi
|
||||||
|
state: icon1
|
||||||
|
rsiPath: _CP14/Objects/ModularTools/Magic/Holders/magic_crystals_holder_cooper.rsi
|
||||||
|
modifiers:
|
||||||
|
- !type:EditModularSlots
|
||||||
|
addSlots:
|
||||||
|
- HolderMagicCrystal1
|
||||||
|
- !type:Inherit
|
||||||
|
copyFrom:
|
||||||
|
- BaseCooperHolderManacostModify
|
||||||
|
|
||||||
|
- type: modularPart
|
||||||
|
id: StaffMagicCrystalHolder_Cooper2
|
||||||
|
targetSlot: MagicCrystalHolder
|
||||||
|
sourcePart: CP14MagicCrystalHolder_Cooper2
|
||||||
|
iconSprite:
|
||||||
|
- sprite: _CP14/Objects/ModularTools/Magic/Holders/magic_crystals_holder_cooper.rsi
|
||||||
|
state: icon2
|
||||||
|
rsiPath: _CP14/Objects/ModularTools/Magic/Holders/magic_crystals_holder_cooper.rsi
|
||||||
|
modifiers:
|
||||||
|
- !type:EditModularSlots
|
||||||
|
addSlots:
|
||||||
|
- HolderMagicCrystal1
|
||||||
|
- HolderMagicCrystal3
|
||||||
|
- !type:Inherit
|
||||||
|
copyFrom:
|
||||||
|
- BaseCooperHolderManacostModify
|
||||||
|
|
||||||
|
- type: modularPart
|
||||||
|
id: StaffMagicCrystalHolder_Cooper3
|
||||||
|
targetSlot: MagicCrystalHolder
|
||||||
|
sourcePart: CP14MagicCrystalHolder_Cooper3
|
||||||
|
iconSprite:
|
||||||
|
- sprite: _CP14/Objects/ModularTools/Magic/Holders/magic_crystals_holder_cooper.rsi
|
||||||
|
state: icon3
|
||||||
|
rsiPath: _CP14/Objects/ModularTools/Magic/Holders/magic_crystals_holder_cooper.rsi
|
||||||
|
modifiers:
|
||||||
|
- !type:EditModularSlots
|
||||||
|
addSlots:
|
||||||
|
- HolderMagicCrystal1
|
||||||
|
- HolderMagicCrystal2
|
||||||
|
- HolderMagicCrystal4
|
||||||
|
- !type:Inherit
|
||||||
|
copyFrom:
|
||||||
|
- BaseCooperHolderManacostModify
|
||||||
|
|
||||||
|
- type: modularPart
|
||||||
|
id: StaffMagicCrystalHolder_Cooper4
|
||||||
|
targetSlot: MagicCrystalHolder
|
||||||
|
sourcePart: CP14MagicCrystalHolder_Cooper4
|
||||||
|
iconSprite:
|
||||||
|
- sprite: _CP14/Objects/ModularTools/Magic/Holders/magic_crystals_holder_cooper.rsi
|
||||||
|
state: icon4
|
||||||
|
rsiPath: _CP14/Objects/ModularTools/Magic/Holders/magic_crystals_holder_cooper.rsi
|
||||||
|
modifiers:
|
||||||
|
- !type:EditModularSlots
|
||||||
|
addSlots:
|
||||||
|
- HolderMagicCrystal1
|
||||||
|
- HolderMagicCrystal2
|
||||||
|
- HolderMagicCrystal3
|
||||||
|
- HolderMagicCrystal4
|
||||||
|
- !type:Inherit
|
||||||
|
copyFrom:
|
||||||
|
- BaseCooperHolderManacostModify
|
||||||
|
|
||||||
|
# Iron Holders
|
||||||
|
- type: modularPart
|
||||||
|
id: BaseIronHolderManacostModify
|
||||||
|
modifiers:
|
||||||
|
- !type:EditManacostModify
|
||||||
|
modifiers:
|
||||||
|
Earth: 1.05
|
||||||
|
Fire: 1.05
|
||||||
|
Gate: 1.05
|
||||||
|
Healing: 1.05
|
||||||
|
LightDarkness: 1.05
|
||||||
|
Meta: 1.05
|
||||||
|
Movement: 1.05
|
||||||
|
Water: 1.05
|
||||||
|
Necromancy: 1.05
|
||||||
|
|
||||||
|
- type: modularPart
|
||||||
|
id: StaffMagicCrystalHolder_Iron1
|
||||||
|
targetSlot: MagicCrystalHolder
|
||||||
|
sourcePart: CP14MagicCrystalHolder_Iron1
|
||||||
|
iconSprite:
|
||||||
|
- sprite: _CP14/Objects/ModularTools/Magic/Holders/magic_crystals_holder_iron.rsi
|
||||||
|
state: icon1
|
||||||
|
rsiPath: _CP14/Objects/ModularTools/Magic/Holders/magic_crystals_holder_iron.rsi
|
||||||
|
modifiers:
|
||||||
|
- !type:EditModularSlots
|
||||||
|
addSlots:
|
||||||
|
- HolderMagicCrystal1
|
||||||
|
- !type:Inherit
|
||||||
|
copyFrom:
|
||||||
|
- BaseIronHolderManacostModify
|
||||||
|
|
||||||
|
- type: modularPart
|
||||||
|
id: StaffMagicCrystalHolder_Iron2
|
||||||
|
targetSlot: MagicCrystalHolder
|
||||||
|
sourcePart: CP14MagicCrystalHolder_Iron2
|
||||||
|
iconSprite:
|
||||||
|
- sprite: _CP14/Objects/ModularTools/Magic/Holders/magic_crystals_holder_iron.rsi
|
||||||
|
state: icon2
|
||||||
|
rsiPath: _CP14/Objects/ModularTools/Magic/Holders/magic_crystals_holder_iron.rsi
|
||||||
|
modifiers:
|
||||||
|
- !type:EditModularSlots
|
||||||
|
addSlots:
|
||||||
|
- HolderMagicCrystal1
|
||||||
|
- HolderMagicCrystal3
|
||||||
|
- !type:Inherit
|
||||||
|
copyFrom:
|
||||||
|
- BaseIronHolderManacostModify
|
||||||
|
|
||||||
|
- type: modularPart
|
||||||
|
id: StaffMagicCrystalHolder_Iron3
|
||||||
|
targetSlot: MagicCrystalHolder
|
||||||
|
sourcePart: CP14MagicCrystalHolder_Iron3
|
||||||
|
iconSprite:
|
||||||
|
- sprite: _CP14/Objects/ModularTools/Magic/Holders/magic_crystals_holder_iron.rsi
|
||||||
|
state: icon3
|
||||||
|
rsiPath: _CP14/Objects/ModularTools/Magic/Holders/magic_crystals_holder_iron.rsi
|
||||||
|
modifiers:
|
||||||
|
- !type:EditModularSlots
|
||||||
|
addSlots:
|
||||||
|
- HolderMagicCrystal1
|
||||||
|
- HolderMagicCrystal2
|
||||||
|
- HolderMagicCrystal4
|
||||||
|
- !type:Inherit
|
||||||
|
copyFrom:
|
||||||
|
- BaseIronHolderManacostModify
|
||||||
|
|
||||||
|
- type: modularPart
|
||||||
|
id: StaffMagicCrystalHolder_Iron4
|
||||||
|
targetSlot: MagicCrystalHolder
|
||||||
|
sourcePart: CP14MagicCrystalHolder_Iron4
|
||||||
|
iconSprite:
|
||||||
|
- sprite: _CP14/Objects/ModularTools/Magic/Holders/magic_crystals_holder_iron.rsi
|
||||||
|
state: icon4
|
||||||
|
rsiPath: _CP14/Objects/ModularTools/Magic/Holders/magic_crystals_holder_iron.rsi
|
||||||
|
modifiers:
|
||||||
|
- !type:EditModularSlots
|
||||||
|
addSlots:
|
||||||
|
- HolderMagicCrystal1
|
||||||
|
- HolderMagicCrystal2
|
||||||
|
- HolderMagicCrystal3
|
||||||
|
- HolderMagicCrystal4
|
||||||
|
- !type:Inherit
|
||||||
|
copyFrom:
|
||||||
|
- BaseIronHolderManacostModify
|
||||||
|
|
||||||
|
# Gold Holders
|
||||||
|
- type: modularPart
|
||||||
|
id: BaseGoldHolderManacostModify
|
||||||
|
modifiers:
|
||||||
|
- !type:EditManacostModify
|
||||||
|
modifiers:
|
||||||
|
Earth: 1.05
|
||||||
|
Fire: 1.05
|
||||||
|
Gate: 1.05
|
||||||
|
Healing: 1.05
|
||||||
|
LightDarkness: 1.05
|
||||||
|
Meta: 1.05
|
||||||
|
Movement: 1.05
|
||||||
|
Water: 1.05
|
||||||
|
Necromancy: 1.05
|
||||||
|
|
||||||
|
- type: modularPart
|
||||||
|
id: StaffMagicCrystalHolder_Gold1
|
||||||
|
targetSlot: MagicCrystalHolder
|
||||||
|
sourcePart: CP14MagicCrystalHolder_Gold1
|
||||||
|
iconSprite:
|
||||||
|
- sprite: _CP14/Objects/ModularTools/Magic/Holders/magic_crystals_holder_gold.rsi
|
||||||
|
state: icon1
|
||||||
|
rsiPath: _CP14/Objects/ModularTools/Magic/Holders/magic_crystals_holder_gold.rsi
|
||||||
|
modifiers:
|
||||||
|
- !type:EditModularSlots
|
||||||
|
addSlots:
|
||||||
|
- HolderMagicCrystal1
|
||||||
|
- !type:Inherit
|
||||||
|
copyFrom:
|
||||||
|
- BaseGoldHolderManacostModify
|
||||||
|
|
||||||
|
- type: modularPart
|
||||||
|
id: StaffMagicCrystalHolder_Gold2
|
||||||
|
targetSlot: MagicCrystalHolder
|
||||||
|
sourcePart: CP14MagicCrystalHolder_Gold2
|
||||||
|
iconSprite:
|
||||||
|
- sprite: _CP14/Objects/ModularTools/Magic/Holders/magic_crystals_holder_gold.rsi
|
||||||
|
state: icon2
|
||||||
|
rsiPath: _CP14/Objects/ModularTools/Magic/Holders/magic_crystals_holder_gold.rsi
|
||||||
|
modifiers:
|
||||||
|
- !type:EditModularSlots
|
||||||
|
addSlots:
|
||||||
|
- HolderMagicCrystal1
|
||||||
|
- HolderMagicCrystal3
|
||||||
|
- !type:Inherit
|
||||||
|
copyFrom:
|
||||||
|
- BaseGoldHolderManacostModify
|
||||||
|
|
||||||
|
- type: modularPart
|
||||||
|
id: StaffMagicCrystalHolder_Gold3
|
||||||
|
targetSlot: MagicCrystalHolder
|
||||||
|
sourcePart: CP14MagicCrystalHolder_Gold3
|
||||||
|
iconSprite:
|
||||||
|
- sprite: _CP14/Objects/ModularTools/Magic/Holders/magic_crystals_holder_gold.rsi
|
||||||
|
state: icon3
|
||||||
|
rsiPath: _CP14/Objects/ModularTools/Magic/Holders/magic_crystals_holder_gold.rsi
|
||||||
|
modifiers:
|
||||||
|
- !type:EditModularSlots
|
||||||
|
addSlots:
|
||||||
|
- HolderMagicCrystal1
|
||||||
|
- HolderMagicCrystal2
|
||||||
|
- HolderMagicCrystal4
|
||||||
|
- !type:Inherit
|
||||||
|
copyFrom:
|
||||||
|
- BaseGoldHolderManacostModify
|
||||||
|
|
||||||
|
- type: modularPart
|
||||||
|
id: StaffMagicCrystalHolder_Gold4
|
||||||
|
targetSlot: MagicCrystalHolder
|
||||||
|
sourcePart: CP14MagicCrystalHolder_Gold4
|
||||||
|
iconSprite:
|
||||||
|
- sprite: _CP14/Objects/ModularTools/Magic/Holders/magic_crystals_holder_gold.rsi
|
||||||
|
state: icon4
|
||||||
|
rsiPath: _CP14/Objects/ModularTools/Magic/Holders/magic_crystals_holder_gold.rsi
|
||||||
|
modifiers:
|
||||||
|
- !type:EditModularSlots
|
||||||
|
addSlots:
|
||||||
|
- HolderMagicCrystal1
|
||||||
|
- HolderMagicCrystal2
|
||||||
|
- HolderMagicCrystal3
|
||||||
|
- HolderMagicCrystal4
|
||||||
|
- !type:Inherit
|
||||||
|
copyFrom:
|
||||||
|
- BaseGoldHolderManacostModify
|
||||||
@@ -2,6 +2,38 @@
|
|||||||
id: Blade
|
id: Blade
|
||||||
name: cp14-modular-slot-blade
|
name: cp14-modular-slot-blade
|
||||||
|
|
||||||
|
- type: modularSlot
|
||||||
|
id: HolderMagicCrystal1
|
||||||
|
name: cp14-modular-slot-magical-crystal
|
||||||
|
|
||||||
|
- type: modularSlot
|
||||||
|
id: HolderMagicCrystal2
|
||||||
|
name: cp14-modular-slot-magical-crystal
|
||||||
|
|
||||||
|
- type: modularSlot
|
||||||
|
id: HolderMagicCrystal3
|
||||||
|
name: cp14-modular-slot-magical-crystal
|
||||||
|
|
||||||
|
- type: modularSlot
|
||||||
|
id: HolderMagicCrystal4
|
||||||
|
name: cp14-modular-slot-magic-crystal
|
||||||
|
|
||||||
|
- type: modularSlot
|
||||||
|
id: MagicCrystalHolder
|
||||||
|
name: cp14-modular-slot-magic-crystal-holder
|
||||||
|
|
||||||
- type: modularSlot
|
- type: modularSlot
|
||||||
id: Garde
|
id: Garde
|
||||||
name: cp14-modular-slot-garde
|
name: cp14-modular-slot-garde
|
||||||
|
|
||||||
|
- type: modularSlot
|
||||||
|
id: RingMagicCrystal1
|
||||||
|
name: cp14-modular-slot-magical-crystal
|
||||||
|
|
||||||
|
- type: modularSlot
|
||||||
|
id: MagicArtifact1
|
||||||
|
name: cp14-modular-slot-magic-artifact
|
||||||
|
|
||||||
|
- type: modularSlot
|
||||||
|
id: StaffHolderMagicCrystal1
|
||||||
|
name: cp14-modular-slot-magic-crystal
|
||||||
|
|||||||
@@ -7,7 +7,7 @@
|
|||||||
- CP14DemiplaneCave
|
- CP14DemiplaneCave
|
||||||
layers:
|
layers:
|
||||||
- !type:OreDunGen
|
- !type:OreDunGen
|
||||||
entityMask:
|
entityMask:
|
||||||
- CP14WallStone
|
- CP14WallStone
|
||||||
entity: CP14WallStoneGoldOre # Hellish gold 666
|
entity: CP14WallStoneGoldOre # Hellish gold 666
|
||||||
count: 6
|
count: 6
|
||||||
@@ -23,7 +23,7 @@
|
|||||||
- CP14DemiplaneCave
|
- CP14DemiplaneCave
|
||||||
layers:
|
layers:
|
||||||
- !type:OreDunGen
|
- !type:OreDunGen
|
||||||
entityMask:
|
entityMask:
|
||||||
- CP14WallStone
|
- CP14WallStone
|
||||||
entity: CP14WallStoneIronOre
|
entity: CP14WallStoneIronOre
|
||||||
count: 5
|
count: 5
|
||||||
@@ -39,7 +39,7 @@
|
|||||||
- CP14DemiplaneCave
|
- CP14DemiplaneCave
|
||||||
layers:
|
layers:
|
||||||
- !type:OreDunGen
|
- !type:OreDunGen
|
||||||
entityMask:
|
entityMask:
|
||||||
- CP14WallStone
|
- CP14WallStone
|
||||||
entity: CP14WallStoneCopperOre
|
entity: CP14WallStoneCopperOre
|
||||||
count: 10
|
count: 10
|
||||||
@@ -54,7 +54,7 @@
|
|||||||
- CP14DemiplaneCave
|
- CP14DemiplaneCave
|
||||||
layers:
|
layers:
|
||||||
- !type:OreDunGen
|
- !type:OreDunGen
|
||||||
tileMask:
|
tileMask:
|
||||||
- CP14FloorBase
|
- CP14FloorBase
|
||||||
entity: CP14QuartzCrystal
|
entity: CP14QuartzCrystal
|
||||||
count: 10
|
count: 10
|
||||||
@@ -71,7 +71,7 @@
|
|||||||
- CP14DemiplaneUnderground
|
- CP14DemiplaneUnderground
|
||||||
layers:
|
layers:
|
||||||
- !type:OreDunGen
|
- !type:OreDunGen
|
||||||
tileMask:
|
tileMask:
|
||||||
- CP14FloorBase
|
- CP14FloorBase
|
||||||
entity: CP14CrystalRubiesMedium
|
entity: CP14CrystalRubiesMedium
|
||||||
count: 30
|
count: 30
|
||||||
@@ -87,7 +87,7 @@
|
|||||||
- CP14DemiplaneCave
|
- CP14DemiplaneCave
|
||||||
layers:
|
layers:
|
||||||
- !type:OreDunGen
|
- !type:OreDunGen
|
||||||
tileMask:
|
tileMask:
|
||||||
- CP14FloorBase
|
- CP14FloorBase
|
||||||
- CP14FloorSand
|
- CP14FloorSand
|
||||||
entity: CP14CrystalTopazesMedium
|
entity: CP14CrystalTopazesMedium
|
||||||
@@ -104,7 +104,7 @@
|
|||||||
- CP14DemiplaneCave
|
- CP14DemiplaneCave
|
||||||
layers:
|
layers:
|
||||||
- !type:OreDunGen
|
- !type:OreDunGen
|
||||||
tileMask:
|
tileMask:
|
||||||
- CP14FloorBase
|
- CP14FloorBase
|
||||||
- CP14FloorGrass
|
- CP14FloorGrass
|
||||||
- CP14FloorGrassLight
|
- CP14FloorGrassLight
|
||||||
@@ -123,7 +123,7 @@
|
|||||||
- CP14DemiplaneCave
|
- CP14DemiplaneCave
|
||||||
layers:
|
layers:
|
||||||
- !type:OreDunGen
|
- !type:OreDunGen
|
||||||
tileMask:
|
tileMask:
|
||||||
- CP14FloorBase
|
- CP14FloorBase
|
||||||
- CP14FloorGrass
|
- CP14FloorGrass
|
||||||
- CP14FloorGrassLight
|
- CP14FloorGrassLight
|
||||||
@@ -143,7 +143,7 @@
|
|||||||
- CP14DemiplaneUnderground
|
- CP14DemiplaneUnderground
|
||||||
layers:
|
layers:
|
||||||
- !type:OreDunGen
|
- !type:OreDunGen
|
||||||
tileMask:
|
tileMask:
|
||||||
- CP14FloorBase
|
- CP14FloorBase
|
||||||
entity: CP14CrystalAmethystsMedium
|
entity: CP14CrystalAmethystsMedium
|
||||||
count: 30
|
count: 30
|
||||||
@@ -160,7 +160,7 @@
|
|||||||
- CP14DemiplaneUnderground
|
- CP14DemiplaneUnderground
|
||||||
layers:
|
layers:
|
||||||
- !type:OreDunGen
|
- !type:OreDunGen
|
||||||
tileMask:
|
tileMask:
|
||||||
- CP14FloorBase
|
- CP14FloorBase
|
||||||
- CP14FloorSand
|
- CP14FloorSand
|
||||||
entity: CP14CrystalDiamondsMedium
|
entity: CP14CrystalDiamondsMedium
|
||||||
@@ -177,7 +177,7 @@
|
|||||||
- CP14DemiplaneOpenSky
|
- CP14DemiplaneOpenSky
|
||||||
layers:
|
layers:
|
||||||
- !type:OreDunGen
|
- !type:OreDunGen
|
||||||
tileMask:
|
tileMask:
|
||||||
- CP14FloorGrass
|
- CP14FloorGrass
|
||||||
- CP14FloorGrassLight
|
- CP14FloorGrassLight
|
||||||
- CP14FloorGrassTall
|
- CP14FloorGrassTall
|
||||||
@@ -194,7 +194,7 @@
|
|||||||
- CP14DemiplaneGrass
|
- CP14DemiplaneGrass
|
||||||
layers:
|
layers:
|
||||||
- !type:OreDunGen
|
- !type:OreDunGen
|
||||||
tileMask:
|
tileMask:
|
||||||
- CP14FloorBase
|
- CP14FloorBase
|
||||||
- CP14FloorGrass
|
- CP14FloorGrass
|
||||||
- CP14FloorGrassLight
|
- CP14FloorGrassLight
|
||||||
@@ -212,7 +212,7 @@
|
|||||||
- CP14DemiplaneGrass
|
- CP14DemiplaneGrass
|
||||||
layers:
|
layers:
|
||||||
- !type:OreDunGen
|
- !type:OreDunGen
|
||||||
tileMask:
|
tileMask:
|
||||||
- CP14FloorGrass
|
- CP14FloorGrass
|
||||||
- CP14FloorGrassLight
|
- CP14FloorGrassLight
|
||||||
- CP14FloorGrassTall
|
- CP14FloorGrassTall
|
||||||
@@ -229,7 +229,7 @@
|
|||||||
- CP14DemiplaneGrass
|
- CP14DemiplaneGrass
|
||||||
layers:
|
layers:
|
||||||
- !type:OreDunGen
|
- !type:OreDunGen
|
||||||
tileMask:
|
tileMask:
|
||||||
- CP14FloorGrass
|
- CP14FloorGrass
|
||||||
- CP14FloorGrassLight
|
- CP14FloorGrassLight
|
||||||
- CP14FloorGrassTall
|
- CP14FloorGrassTall
|
||||||
@@ -247,7 +247,7 @@
|
|||||||
- CP14DemiplaneOpenSky
|
- CP14DemiplaneOpenSky
|
||||||
layers:
|
layers:
|
||||||
- !type:OreDunGen
|
- !type:OreDunGen
|
||||||
tileMask:
|
tileMask:
|
||||||
- CP14FloorGrass
|
- CP14FloorGrass
|
||||||
- CP14FloorGrassLight
|
- CP14FloorGrassLight
|
||||||
- CP14FloorGrassTall
|
- CP14FloorGrassTall
|
||||||
@@ -264,7 +264,7 @@
|
|||||||
- CP14DemiplaneUnderground
|
- CP14DemiplaneUnderground
|
||||||
layers:
|
layers:
|
||||||
- !type:OreDunGen
|
- !type:OreDunGen
|
||||||
tileMask:
|
tileMask:
|
||||||
- CP14FloorGrass
|
- CP14FloorGrass
|
||||||
- CP14FloorGrassLight
|
- CP14FloorGrassLight
|
||||||
- CP14FloorGrassTall
|
- CP14FloorGrassTall
|
||||||
@@ -400,7 +400,7 @@
|
|||||||
- CP14DemiplaneCave
|
- CP14DemiplaneCave
|
||||||
layers:
|
layers:
|
||||||
- !type:OreDunGen
|
- !type:OreDunGen
|
||||||
tileMask:
|
tileMask:
|
||||||
- CP14FloorBase
|
- CP14FloorBase
|
||||||
entity: CP14MobMonsterMole
|
entity: CP14MobMonsterMole
|
||||||
count: 6
|
count: 6
|
||||||
@@ -416,7 +416,7 @@
|
|||||||
- CP14DemiplaneGrass
|
- CP14DemiplaneGrass
|
||||||
layers:
|
layers:
|
||||||
- !type:OreDunGen
|
- !type:OreDunGen
|
||||||
tileMask:
|
tileMask:
|
||||||
- CP14FloorGrass
|
- CP14FloorGrass
|
||||||
- CP14FloorGrassLight
|
- CP14FloorGrassLight
|
||||||
- CP14FloorGrassTall
|
- CP14FloorGrassTall
|
||||||
@@ -435,7 +435,7 @@
|
|||||||
- CP14DemiplaneGrass
|
- CP14DemiplaneGrass
|
||||||
layers:
|
layers:
|
||||||
- !type:OreDunGen
|
- !type:OreDunGen
|
||||||
tileMask:
|
tileMask:
|
||||||
- CP14FloorGrass
|
- CP14FloorGrass
|
||||||
- CP14FloorGrassLight
|
- CP14FloorGrassLight
|
||||||
- CP14FloorGrassTall
|
- CP14FloorGrassTall
|
||||||
@@ -467,7 +467,7 @@
|
|||||||
- CP14DemiplaneOpenSky
|
- CP14DemiplaneOpenSky
|
||||||
layers:
|
layers:
|
||||||
- !type:OreDunGen
|
- !type:OreDunGen
|
||||||
tileMask:
|
tileMask:
|
||||||
- CP14FloorGrass
|
- CP14FloorGrass
|
||||||
- CP14FloorGrassLight
|
- CP14FloorGrassLight
|
||||||
- CP14FloorGrassTall
|
- CP14FloorGrassTall
|
||||||
|
|||||||
@@ -384,4 +384,205 @@
|
|||||||
craftTime: 4
|
craftTime: 4
|
||||||
stacks:
|
stacks:
|
||||||
CP14GoldBar: 2
|
CP14GoldBar: 2
|
||||||
result: CP14ModularBladeGoldAxe
|
result: CP14ModularBladeGoldAxe
|
||||||
|
|
||||||
|
- type: CP14Recipe
|
||||||
|
id: CP14ClothingMagicRingBlue
|
||||||
|
tag: CP14RecipeAnvil
|
||||||
|
craftTime: 4
|
||||||
|
stacks:
|
||||||
|
CP14GlowingIronBar: 1
|
||||||
|
result: CP14ClothingMagicRingBlue
|
||||||
|
|
||||||
|
- type: CP14Recipe
|
||||||
|
id: CP14ClothingMagicRingCooper
|
||||||
|
tag: CP14RecipeAnvil
|
||||||
|
craftTime: 4
|
||||||
|
stacks:
|
||||||
|
CP14CopperBar: 1
|
||||||
|
result: CP14ClothingMagicRingCooper
|
||||||
|
|
||||||
|
- type: CP14Recipe
|
||||||
|
id: CP14ClothingMagicRingIron
|
||||||
|
tag: CP14RecipeAnvil
|
||||||
|
craftTime: 4
|
||||||
|
stacks:
|
||||||
|
CP14IronBar: 1
|
||||||
|
result: CP14ClothingMagicRingIron
|
||||||
|
|
||||||
|
- type: CP14Recipe
|
||||||
|
id: CP14ClothingMagicRingGold
|
||||||
|
tag: CP14RecipeAnvil
|
||||||
|
craftTime: 4
|
||||||
|
stacks:
|
||||||
|
CP14GoldBar: 1
|
||||||
|
result: CP14ClothingMagicRingGold
|
||||||
|
|
||||||
|
- type: CP14Recipe
|
||||||
|
id: CP14MagicCrystalHolder_Blue1
|
||||||
|
tag: CP14RecipeAnvil
|
||||||
|
craftTime: 4
|
||||||
|
stacks:
|
||||||
|
CP14GlowingIronBar: 1
|
||||||
|
result: CP14MagicCrystalHolder_Blue1
|
||||||
|
|
||||||
|
- type: CP14Recipe
|
||||||
|
id: CP14MagicCrystalHolder_Blue2
|
||||||
|
tag: CP14RecipeAnvil
|
||||||
|
craftTime: 4
|
||||||
|
stacks:
|
||||||
|
CP14GlowingIronBar: 2
|
||||||
|
result: CP14MagicCrystalHolder_Blue2
|
||||||
|
|
||||||
|
- type: CP14Recipe
|
||||||
|
id: CP14MagicCrystalHolder_Blue3
|
||||||
|
tag: CP14RecipeAnvil
|
||||||
|
craftTime: 4
|
||||||
|
stacks:
|
||||||
|
CP14GlowingIronBar: 3
|
||||||
|
result: CP14MagicCrystalHolder_Blue3
|
||||||
|
|
||||||
|
- type: CP14Recipe
|
||||||
|
id: CP14MagicCrystalHolder_Blue4
|
||||||
|
tag: CP14RecipeAnvil
|
||||||
|
craftTime: 4
|
||||||
|
stacks:
|
||||||
|
CP14GlowingIronBar: 4
|
||||||
|
result: CP14MagicCrystalHolder_Blue4
|
||||||
|
|
||||||
|
- type: CP14Recipe
|
||||||
|
id: CP14MagicCrystalHolder_Cooper1
|
||||||
|
tag: CP14RecipeAnvil
|
||||||
|
craftTime: 4
|
||||||
|
stacks:
|
||||||
|
CP14CopperBar: 1
|
||||||
|
result: CP14MagicCrystalHolder_Cooper1
|
||||||
|
|
||||||
|
- type: CP14Recipe
|
||||||
|
id: CP14MagicCrystalHolder_Cooper2
|
||||||
|
tag: CP14RecipeAnvil
|
||||||
|
craftTime: 4
|
||||||
|
stacks:
|
||||||
|
CP14CopperBar: 2
|
||||||
|
result: CP14MagicCrystalHolder_Cooper2
|
||||||
|
|
||||||
|
- type: CP14Recipe
|
||||||
|
id: CP14MagicCrystalHolder_Cooper3
|
||||||
|
tag: CP14RecipeAnvil
|
||||||
|
craftTime: 4
|
||||||
|
stacks:
|
||||||
|
CP14CopperBar: 3
|
||||||
|
result: CP14MagicCrystalHolder_Cooper3
|
||||||
|
|
||||||
|
- type: CP14Recipe
|
||||||
|
id: CP14MagicCrystalHolder_Cooper4
|
||||||
|
tag: CP14RecipeAnvil
|
||||||
|
craftTime: 4
|
||||||
|
stacks:
|
||||||
|
CP14CopperBar: 4
|
||||||
|
result: CP14MagicCrystalHolder_Cooper4
|
||||||
|
|
||||||
|
- type: CP14Recipe
|
||||||
|
id: CP14MagicCrystalHolder_Iron1
|
||||||
|
tag: CP14RecipeAnvil
|
||||||
|
craftTime: 4
|
||||||
|
stacks:
|
||||||
|
CP14IronBar: 1
|
||||||
|
result: CP14MagicCrystalHolder_Iron1
|
||||||
|
|
||||||
|
- type: CP14Recipe
|
||||||
|
id: CP14MagicCrystalHolder_Iron2
|
||||||
|
tag: CP14RecipeAnvil
|
||||||
|
craftTime: 4
|
||||||
|
stacks:
|
||||||
|
CP14IronBar: 2
|
||||||
|
result: CP14MagicCrystalHolder_Iron2
|
||||||
|
|
||||||
|
- type: CP14Recipe
|
||||||
|
id: CP14MagicCrystalHolder_Iron3
|
||||||
|
tag: CP14RecipeAnvil
|
||||||
|
craftTime: 4
|
||||||
|
stacks:
|
||||||
|
CP14IronBar: 3
|
||||||
|
result: CP14MagicCrystalHolder_Iron3
|
||||||
|
|
||||||
|
- type: CP14Recipe
|
||||||
|
id: CP14MagicCrystalHolder_Iron4
|
||||||
|
tag: CP14RecipeAnvil
|
||||||
|
craftTime: 4
|
||||||
|
stacks:
|
||||||
|
CP14IronBar: 4
|
||||||
|
result: CP14MagicCrystalHolder_Iron4
|
||||||
|
|
||||||
|
- type: CP14Recipe
|
||||||
|
id: CP14MagicCrystalHolder_Gold1
|
||||||
|
tag: CP14RecipeAnvil
|
||||||
|
craftTime: 4
|
||||||
|
stacks:
|
||||||
|
CP14GoldBar: 1
|
||||||
|
result: CP14MagicCrystalHolder_Gold1
|
||||||
|
|
||||||
|
- type: CP14Recipe
|
||||||
|
id: CP14MagicCrystalHolder_Gold2
|
||||||
|
tag: CP14RecipeAnvil
|
||||||
|
craftTime: 4
|
||||||
|
stacks:
|
||||||
|
CP14GoldBar: 2
|
||||||
|
result: CP14MagicCrystalHolder_Gold2
|
||||||
|
|
||||||
|
- type: CP14Recipe
|
||||||
|
id: CP14MagicCrystalHolder_Gold3
|
||||||
|
tag: CP14RecipeAnvil
|
||||||
|
craftTime: 4
|
||||||
|
stacks:
|
||||||
|
CP14GoldBar: 3
|
||||||
|
result: CP14MagicCrystalHolder_Gold3
|
||||||
|
|
||||||
|
- type: CP14Recipe
|
||||||
|
id: CP14MagicCrystalHolder_Gold4
|
||||||
|
tag: CP14RecipeAnvil
|
||||||
|
craftTime: 4
|
||||||
|
stacks:
|
||||||
|
CP14GoldBar: 4
|
||||||
|
result: CP14MagicCrystalHolder_Gold4
|
||||||
|
|
||||||
|
- type: CP14Recipe
|
||||||
|
id: CP14MagicStaff_GlowingIron
|
||||||
|
tag: CP14RecipeAnvil
|
||||||
|
craftTime: 4
|
||||||
|
stacks:
|
||||||
|
CP14GlowingIronBar: 2
|
||||||
|
result: CP14MagicStaff_GlowingIron
|
||||||
|
|
||||||
|
- type: CP14Recipe
|
||||||
|
id: CP14MagicStaff_GlowingIronHolder
|
||||||
|
tag: CP14RecipeAnvil
|
||||||
|
craftTime: 4
|
||||||
|
stacks:
|
||||||
|
CP14GlowingIronBar: 2
|
||||||
|
CP14IronBar: 1
|
||||||
|
result: CP14MagicStaff_GlowingIronHolder
|
||||||
|
|
||||||
|
- type: CP14Recipe
|
||||||
|
id: CP14MagicStaff_Cooper
|
||||||
|
tag: CP14RecipeAnvil
|
||||||
|
craftTime: 4
|
||||||
|
stacks:
|
||||||
|
CP14CopperBar: 2
|
||||||
|
result: CP14MagicStaff_Cooper
|
||||||
|
|
||||||
|
- type: CP14Recipe
|
||||||
|
id: CP14MagicStaff_Iron
|
||||||
|
tag: CP14RecipeAnvil
|
||||||
|
craftTime: 4
|
||||||
|
stacks:
|
||||||
|
CP14IronBar: 2
|
||||||
|
result: CP14MagicStaff_Iron
|
||||||
|
|
||||||
|
- type: CP14Recipe
|
||||||
|
id: CP14MagicStaff_Gold
|
||||||
|
tag: CP14RecipeAnvil
|
||||||
|
craftTime: 4
|
||||||
|
stacks:
|
||||||
|
CP14GoldBar: 2
|
||||||
|
result: CP14MagicStaff_Gold
|
||||||
|
|||||||
@@ -28,4 +28,12 @@
|
|||||||
craftTime: 4
|
craftTime: 4
|
||||||
entities:
|
entities:
|
||||||
CP14QuartzShard: 1
|
CP14QuartzShard: 1
|
||||||
result: CP14GlassSheet1
|
result: CP14GlassSheet1
|
||||||
|
|
||||||
|
- type: CP14Recipe
|
||||||
|
id: CP14GlowingIron1
|
||||||
|
tag: CP14RecipeMeltingFurnace
|
||||||
|
craftTime: 4
|
||||||
|
entities:
|
||||||
|
CP14OreGlowingIron: 4
|
||||||
|
result: CP14GlowingIronBar1
|
||||||
|
|||||||
@@ -85,3 +85,19 @@
|
|||||||
stacks:
|
stacks:
|
||||||
CP14WoodenPlanks: 2
|
CP14WoodenPlanks: 2
|
||||||
result: CP14ModularGripWoodenLong
|
result: CP14ModularGripWoodenLong
|
||||||
|
|
||||||
|
- type: CP14Recipe
|
||||||
|
id: CP14MagicStaff_GlowingWooden
|
||||||
|
tag: CP14RecipeWorkbench
|
||||||
|
craftTime: 2
|
||||||
|
stacks:
|
||||||
|
CP14GlowingWoodenPlanks: 2
|
||||||
|
result: CP14MagicStaff_GlowingWooden
|
||||||
|
|
||||||
|
- type: CP14Recipe
|
||||||
|
id: CP14MagicStaff_Wooden
|
||||||
|
tag: CP14RecipeWorkbench
|
||||||
|
craftTime: 2
|
||||||
|
stacks:
|
||||||
|
CP14WoodenPlanks: 2
|
||||||
|
result: CP14MagicStaff_Wooden
|
||||||
|
|||||||
@@ -67,3 +67,17 @@
|
|||||||
icon: { sprite: "_CP14/Objects/Materials/flora.rsi", state: grass_material1 }
|
icon: { sprite: "_CP14/Objects/Materials/flora.rsi", state: grass_material1 }
|
||||||
spawn: CP14FloraMaterial1
|
spawn: CP14FloraMaterial1
|
||||||
maxCount: 2
|
maxCount: 2
|
||||||
|
|
||||||
|
- type: stack
|
||||||
|
id: CP14GlowingIronBar
|
||||||
|
name: cp14-stack-glowing-iron-bars
|
||||||
|
spawn: CP14GlowingIronBar1
|
||||||
|
icon: { sprite: _CP14/Objects/Materials/glowingiron_bar.rsi, state: bar_2 }
|
||||||
|
maxCount: 10
|
||||||
|
|
||||||
|
- type: stack
|
||||||
|
id: CP14GlowingWoodenPlanks
|
||||||
|
name: cp14-stack-glowing-wood-planks
|
||||||
|
spawn: CP14GlowingWoodenPlanks1
|
||||||
|
icon: { sprite: _CP14/Objects/Materials/wood.rsi, state: planks_2 }
|
||||||
|
maxCount: 10
|
||||||
|
|||||||
BIN
Resources/Textures/_CP14/Clothing/Rings/rings.rsi/blue_ring.png
Normal file
|
After Width: | Height: | Size: 639 B |
|
After Width: | Height: | Size: 631 B |
BIN
Resources/Textures/_CP14/Clothing/Rings/rings.rsi/gold_ring.png
Normal file
|
After Width: | Height: | Size: 626 B |
BIN
Resources/Textures/_CP14/Clothing/Rings/rings.rsi/iron_ring.png
Normal file
|
After Width: | Height: | Size: 638 B |
@@ -10,6 +10,18 @@
|
|||||||
{
|
{
|
||||||
"name": "brass_ring"
|
"name": "brass_ring"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"name": "blue_ring"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "cooper_ring"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "iron_ring"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "gold_ring"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "saphhire_stone_small"
|
"name": "saphhire_stone_small"
|
||||||
},
|
},
|
||||||
|
|||||||
|
After Width: | Height: | Size: 626 B |
|
After Width: | Height: | Size: 607 B |
|
After Width: | Height: | Size: 602 B |
|
After Width: | Height: | Size: 613 B |
@@ -0,0 +1,23 @@
|
|||||||
|
{
|
||||||
|
"version": 1,
|
||||||
|
"license": "CLA",
|
||||||
|
"copyright": "Created by omsoyk (Discord). Recolored by comasqw (Github)",
|
||||||
|
"size": {
|
||||||
|
"x": 32,
|
||||||
|
"y": 32
|
||||||
|
},
|
||||||
|
"states": [
|
||||||
|
{
|
||||||
|
"name": "base1"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "base2"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "base3"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "base4"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
After Width: | Height: | Size: 646 B |
|
After Width: | Height: | Size: 655 B |
|
After Width: | Height: | Size: 668 B |
|
After Width: | Height: | Size: 662 B |
@@ -0,0 +1,23 @@
|
|||||||
|
{
|
||||||
|
"version": 1,
|
||||||
|
"size": {
|
||||||
|
"x": 32,
|
||||||
|
"y": 32
|
||||||
|
},
|
||||||
|
"license": "CC-BY-SA-3.0",
|
||||||
|
"copyright": "Created by comasqw (Github)",
|
||||||
|
"states": [
|
||||||
|
{
|
||||||
|
"name": "icon1"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "icon2"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "icon3"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "icon4"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
After Width: | Height: | Size: 644 B |
|
After Width: | Height: | Size: 661 B |
|
After Width: | Height: | Size: 671 B |
|
After Width: | Height: | Size: 662 B |
@@ -0,0 +1,23 @@
|
|||||||
|
{
|
||||||
|
"version": 1,
|
||||||
|
"size": {
|
||||||
|
"x": 32,
|
||||||
|
"y": 32
|
||||||
|
},
|
||||||
|
"license": "CC-BY-SA-3.0",
|
||||||
|
"copyright": "Created by comasqw (Github)",
|
||||||
|
"states": [
|
||||||
|
{
|
||||||
|
"name": "icon1"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "icon2"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "icon3"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "icon4"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
After Width: | Height: | Size: 652 B |
|
After Width: | Height: | Size: 661 B |
|
After Width: | Height: | Size: 670 B |
|
After Width: | Height: | Size: 671 B |
@@ -0,0 +1,23 @@
|
|||||||
|
{
|
||||||
|
"version": 1,
|
||||||
|
"size": {
|
||||||
|
"x": 32,
|
||||||
|
"y": 32
|
||||||
|
},
|
||||||
|
"license": "CC-BY-SA-3.0",
|
||||||
|
"copyright": "Created by comasqw (Github)",
|
||||||
|
"states": [
|
||||||
|
{
|
||||||
|
"name": "icon1"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "icon2"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "icon3"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "icon4"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
After Width: | Height: | Size: 641 B |
|
After Width: | Height: | Size: 654 B |
|
After Width: | Height: | Size: 665 B |
|
After Width: | Height: | Size: 657 B |
@@ -0,0 +1,23 @@
|
|||||||
|
{
|
||||||
|
"version": 1,
|
||||||
|
"size": {
|
||||||
|
"x": 32,
|
||||||
|
"y": 32
|
||||||
|
},
|
||||||
|
"license": "CC-BY-SA-3.0",
|
||||||
|
"copyright": "Created by comasqw (Github)",
|
||||||
|
"states": [
|
||||||
|
{
|
||||||
|
"name": "icon1"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "icon2"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "icon3"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "icon4"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
After Width: | Height: | Size: 606 B |
@@ -0,0 +1,14 @@
|
|||||||
|
{
|
||||||
|
"version": 1,
|
||||||
|
"size": {
|
||||||
|
"x": 32,
|
||||||
|
"y": 32
|
||||||
|
},
|
||||||
|
"license": "CC-BY-SA-3.0",
|
||||||
|
"copyright": "Created by TheShuEd (Github). Recolored comasqw (Github)",
|
||||||
|
"states": [
|
||||||
|
{
|
||||||
|
"name": "crystal_grey"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
After Width: | Height: | Size: 650 B |
|
After Width: | Height: | Size: 750 B |
|
After Width: | Height: | Size: 792 B |
@@ -0,0 +1,20 @@
|
|||||||
|
{
|
||||||
|
"version": 1,
|
||||||
|
"size": {
|
||||||
|
"x": 32,
|
||||||
|
"y": 32
|
||||||
|
},
|
||||||
|
"license": "CLA",
|
||||||
|
"copyright": "Created by TheShuEd (Github). Recolored by comasqw (Github)",
|
||||||
|
"states": [
|
||||||
|
{
|
||||||
|
"name": "bar"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "bar_2"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "bar_3"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
@@ -0,0 +1,20 @@
|
|||||||
|
{
|
||||||
|
"version": 1,
|
||||||
|
"size": {
|
||||||
|
"x": 32,
|
||||||
|
"y": 32
|
||||||
|
},
|
||||||
|
"license": "CLA",
|
||||||
|
"copyright": "Created by TheShuEd (Github). Recolored by github: comasqw",
|
||||||
|
"states": [
|
||||||
|
{
|
||||||
|
"name": "ore1"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "ore2"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "ore3"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
After Width: | Height: | Size: 771 B |
|
After Width: | Height: | Size: 736 B |
|
After Width: | Height: | Size: 721 B |
|
After Width: | Height: | Size: 618 B |
|
After Width: | Height: | Size: 568 B |
|
After Width: | Height: | Size: 573 B |
|
After Width: | Height: | Size: 572 B |
|
After Width: | Height: | Size: 569 B |
|
After Width: | Height: | Size: 636 B |
|
After Width: | Height: | Size: 638 B |
@@ -0,0 +1,43 @@
|
|||||||
|
{
|
||||||
|
"version": 1,
|
||||||
|
"license": "CLA",
|
||||||
|
"copyright": "Created by TheShuEd (Github). Recolored and cut by comasqw (Github)",
|
||||||
|
"size": {
|
||||||
|
"x": 32,
|
||||||
|
"y": 32
|
||||||
|
},
|
||||||
|
"states": [
|
||||||
|
{
|
||||||
|
"name": "icon1"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "icon2"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "icon3"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "icon4"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "inhand-left",
|
||||||
|
"directions": 4
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "inhand-right",
|
||||||
|
"directions": 4
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "wielded-inhand-left",
|
||||||
|
"directions": 4
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "wielded-inhand-right",
|
||||||
|
"directions": 4
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "equipped-NECK",
|
||||||
|
"directions": 4
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
After Width: | Height: | Size: 683 B |
|
After Width: | Height: | Size: 683 B |
|
After Width: | Height: | Size: 615 B |
|
After Width: | Height: | Size: 569 B |
|
After Width: | Height: | Size: 578 B |
|
After Width: | Height: | Size: 578 B |
|
After Width: | Height: | Size: 566 B |
|
After Width: | Height: | Size: 633 B |
|
After Width: | Height: | Size: 635 B |
@@ -0,0 +1,43 @@
|
|||||||
|
{
|
||||||
|
"version": 1,
|
||||||
|
"license": "CLA",
|
||||||
|
"copyright": "Created by TheShuEd (Github). Recolored and cut by comasqw (Github)",
|
||||||
|
"size": {
|
||||||
|
"x": 32,
|
||||||
|
"y": 32
|
||||||
|
},
|
||||||
|
"states": [
|
||||||
|
{
|
||||||
|
"name": "icon1"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "icon2"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "icon3"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "icon4"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "inhand-left",
|
||||||
|
"directions": 4
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "inhand-right",
|
||||||
|
"directions": 4
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "wielded-inhand-left",
|
||||||
|
"directions": 4
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "wielded-inhand-right",
|
||||||
|
"directions": 4
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "equipped-NECK",
|
||||||
|
"directions": 4
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
After Width: | Height: | Size: 694 B |
|
After Width: | Height: | Size: 694 B |
|
After Width: | Height: | Size: 613 B |
|
After Width: | Height: | Size: 573 B |
|
After Width: | Height: | Size: 580 B |
|
After Width: | Height: | Size: 588 B |
|
After Width: | Height: | Size: 573 B |
|
After Width: | Height: | Size: 634 B |
|
After Width: | Height: | Size: 633 B |
@@ -0,0 +1,43 @@
|
|||||||
|
{
|
||||||
|
"version": 1,
|
||||||
|
"license": "CLA",
|
||||||
|
"copyright": "Created by TheShuEd (Github). Recolored and cut by comasqw (Github)",
|
||||||
|
"size": {
|
||||||
|
"x": 32,
|
||||||
|
"y": 32
|
||||||
|
},
|
||||||
|
"states": [
|
||||||
|
{
|
||||||
|
"name": "icon1"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "icon2"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "icon3"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "icon4"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "inhand-left",
|
||||||
|
"directions": 4
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "inhand-right",
|
||||||
|
"directions": 4
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "wielded-inhand-left",
|
||||||
|
"directions": 4
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "wielded-inhand-right",
|
||||||
|
"directions": 4
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "equipped-NECK",
|
||||||
|
"directions": 4
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
After Width: | Height: | Size: 696 B |