mirror of
https://github.com/WWhiteDreamProject/wwdpublic.git
synced 2026-04-16 21:17:39 +03:00
Variant Latent Psychics (#2176)
# Description This PR adds a dedicated "Psionics" tab to the traits menu, where every single Psionics related trait has been moved to. It includes subcategories for Psicaster Type, Feats, and Powers. There are currently 3 different variants of "Psicaster", two of which are new. **Latent Psychic**: Exactly as before with Psionics V3. No changes here. **PsychoHistorian**: A new variant psicaster that enjoys significantly faster power development, with a heavy focus on "Utility" powers. As a tradeoff, they can ONLY obtain utility powers. **Elementalist**: The second new variant psicaster type. Elementalists have the option to buy powers directly from the Anomalist power category. The tradeoff here is that these are the only powers they will ever have. Elementalists will never generate new powers during a round, and cannot gain Potentia. All 3 Psicaster Types have their own dedicated "Shop" that is accessed via the Powers tab in the traits menu. They each have their own separate costs and availabilities. They also all 3 have their own random power charts. # TODO <details><summary><h1>Media</h1></summary> <p>  </p> </details> # Changelog 🆑 - add: Added a dedicated Psionics tab to the Traits menu. - add: Added PsychoHistorian as a new psionic variant. PsychoHistorians have significantly faster new power generation, but are strictly limited to the Mentalics power category. They essentially only get "Utility" powers. PsychoHistorians have Telepathy as a free bonus power. - add: Added Elementalist as a new psionic variant. Elementalists do not generate new powers at all during the round. Instead, they purchase powers directly at character creation, using the Anomalist powers category. - add: @#$%(*&FAREWELL, FRIEND. @#&#^!@*(&^$I @*#$&^@#$% WAS @#$@#$*&^@#$ALWAYS A *&#^@$@#THOUSAND *(&@^#$TIMES *(@#$(*&MORE *(&^*&(EVIL ^&*((*&^THAN (*&^&*(^%*(&THOU! (cherry picked from commit 7cc86ec5558c6fbe42cdfc4cd61ac31e4bd69232)
This commit is contained in:
@@ -9,6 +9,7 @@ using Content.Shared.Actions.Events;
|
||||
using Content.Shared.Clothing.Components;
|
||||
using Content.Shared.DoAfter;
|
||||
using Content.Shared.Inventory;
|
||||
using Content.Shared.Magic;
|
||||
using Content.Shared.Mindshield.Components;
|
||||
using Content.Shared.Popups;
|
||||
using Content.Shared.RadialSelector;
|
||||
@@ -34,6 +35,7 @@ public sealed class BloodCultSpellsSystem : EntitySystem
|
||||
[Dependency] private readonly PopupSystem _popup = default!;
|
||||
[Dependency] private readonly StatusEffectsSystem _statusEffects = default!;
|
||||
[Dependency] private readonly UserInterfaceSystem _ui = default!;
|
||||
[Dependency] private readonly SharedMagicSystem _magicSystem = default!;
|
||||
|
||||
public override void Initialize()
|
||||
{
|
||||
@@ -177,6 +179,9 @@ public sealed class BloodCultSpellsSystem : EntitySystem
|
||||
if (ev.Handled)
|
||||
return;
|
||||
|
||||
if (ev.Speech is not null)
|
||||
_magicSystem.Speak(ev.Performer, ev.Speech, ev.InvokeChatType);
|
||||
|
||||
foreach (var (slot, protoId) in ev.Prototypes)
|
||||
{
|
||||
var entity = Spawn(protoId, _transform.GetMapCoordinates(ev.Performer));
|
||||
|
||||
@@ -425,6 +425,6 @@ public sealed partial class CharacterItemGroupRequirement : CharacterRequirement
|
||||
("group", Loc.GetString($"character-item-group-{Group}")),
|
||||
("max", group.MaxItems));
|
||||
|
||||
return count < group.MaxItems;
|
||||
return !Inverted ? count < group.MaxItems : count >= group.MaxItems - 1;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -9,5 +9,6 @@ public interface ISpeakSpell // The speak n spell interface
|
||||
/// </summary>
|
||||
public string? Speech { get; }
|
||||
|
||||
[DataField]
|
||||
public InGameICChatType ChatType { get; }
|
||||
}
|
||||
|
||||
@@ -2,6 +2,7 @@
|
||||
using Content.Shared.Actions;
|
||||
using Content.Shared.Body.Components;
|
||||
using Content.Shared.Body.Systems;
|
||||
using Content.Shared.Chat;
|
||||
using Content.Shared.Coordinates.Helpers;
|
||||
using Content.Shared.Doors.Components;
|
||||
using Content.Shared.Doors.Systems;
|
||||
@@ -508,7 +509,7 @@ public abstract class SharedMagicSystem : EntitySystem
|
||||
|
||||
// When any spell is cast it will raise this as an event, so then it can be played in server or something. At least until chat gets moved to shared
|
||||
// TODO: Temp until chat is in shared
|
||||
private void Speak(BaseActionEvent args)
|
||||
public void Speak(BaseActionEvent args)
|
||||
{
|
||||
if (args is not ISpeakSpell speak || string.IsNullOrWhiteSpace(speak.Speech))
|
||||
return;
|
||||
@@ -516,4 +517,10 @@ public abstract class SharedMagicSystem : EntitySystem
|
||||
var ev = new SpeakSpellEvent(args.Performer, speak.Speech, speak.ChatType);
|
||||
RaiseLocalEvent(ref ev);
|
||||
}
|
||||
|
||||
public void Speak(EntityUid uid, string speech, InGameICChatType inGameICChatType)
|
||||
{
|
||||
var ev = new SpeakSpellEvent(uid, speech, inGameICChatType);
|
||||
RaiseLocalEvent(ref ev);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -33,7 +33,7 @@ public sealed class CultItemSystem : EntitySystem
|
||||
|
||||
private void OnActivate(Entity<CultItemComponent> item, ref ActivateInWorldEvent args)
|
||||
{
|
||||
if (CanUse(args.User))
|
||||
if (CanUse(args.User, item))
|
||||
return;
|
||||
|
||||
args.Handled = true;
|
||||
@@ -42,7 +42,7 @@ public sealed class CultItemSystem : EntitySystem
|
||||
|
||||
private void OnUseInHand(Entity<CultItemComponent> item, ref UseInHandEvent args)
|
||||
{
|
||||
if (CanUse(args.User) ||
|
||||
if (CanUse(args.User, item) ||
|
||||
// Allow non-cultists to remove embedded cultist weapons and getting knocked down afterwards on pickup
|
||||
(TryComp<EmbeddableProjectileComponent>(item.Owner, out var embeddable) && embeddable.Target != null))
|
||||
return;
|
||||
@@ -53,7 +53,7 @@ public sealed class CultItemSystem : EntitySystem
|
||||
|
||||
private void OnBeforeGettingThrown(Entity<CultItemComponent> item, ref BeforeGettingThrownEvent args)
|
||||
{
|
||||
if (CanUse(args.PlayerUid))
|
||||
if (CanUse(args.PlayerUid, item))
|
||||
return;
|
||||
|
||||
args.Cancelled = true;
|
||||
@@ -62,7 +62,7 @@ public sealed class CultItemSystem : EntitySystem
|
||||
|
||||
private void OnEquipAttempt(Entity<CultItemComponent> item, ref BeingEquippedAttemptEvent args)
|
||||
{
|
||||
if (CanUse(args.EquipTarget))
|
||||
if (CanUse(args.EquipTarget, item))
|
||||
return;
|
||||
|
||||
args.Cancel();
|
||||
@@ -71,7 +71,7 @@ public sealed class CultItemSystem : EntitySystem
|
||||
|
||||
private void OnMeleeAttempt(Entity<CultItemComponent> item, ref AttemptMeleeEvent args)
|
||||
{
|
||||
if (CanUse(args.PlayerUid))
|
||||
if (CanUse(args.PlayerUid, item))
|
||||
return;
|
||||
|
||||
args.Cancelled = true;
|
||||
@@ -80,7 +80,7 @@ public sealed class CultItemSystem : EntitySystem
|
||||
|
||||
private void OnBeforeBlocking(Entity<CultItemComponent> item, ref BeforeBlockingEvent args)
|
||||
{
|
||||
if (CanUse(args.User))
|
||||
if (CanUse(args.User, item))
|
||||
return;
|
||||
|
||||
args.Cancel();
|
||||
@@ -99,5 +99,6 @@ public sealed class CultItemSystem : EntitySystem
|
||||
_hands.TryDrop(user);
|
||||
}
|
||||
|
||||
private bool CanUse(EntityUid? uid) => HasComp<BloodCultistComponent>(uid) || HasComp<GhostComponent>(uid);
|
||||
private bool CanUse(EntityUid? uid, Entity<CultItemComponent> item) =>
|
||||
item.Comp.AllowUseToEveryone || HasComp<BloodCultistComponent>(uid) || HasComp<GhostComponent>(uid);
|
||||
}
|
||||
|
||||
@@ -62,6 +62,9 @@ public sealed partial class SummonEquipmentEvent : InstantActionEvent, ISpeakSpe
|
||||
[DataField]
|
||||
public bool Force { get; set; } = true;
|
||||
|
||||
[DataField]
|
||||
public InGameICChatType InvokeChatType = InGameICChatType.Whisper;
|
||||
|
||||
public InGameICChatType ChatType => InGameICChatType.Whisper;
|
||||
}
|
||||
|
||||
|
||||
@@ -4,8 +4,12 @@ trait-category-Uncategorized = Uncategorized
|
||||
trait-category-Auditory = Auditory
|
||||
trait-category-Mental = Mental
|
||||
trait-category-Physical = Physical
|
||||
trait-category-Psionics = Psionics
|
||||
trait-category-TraitsPsionicsCasterTypes = Psicaster Type
|
||||
trait-category-TraitsPsionicsFeats = Feats
|
||||
trait-category-TraitsPsionicsPowers = Powers
|
||||
trait-category-Speech = Speech
|
||||
trait-category-TraitsSpeechUncategorized = Uncategorized
|
||||
trait-category-TraitsSpeechAccents = Accents
|
||||
trait-category-TraitsSpeechLanguages = Languages
|
||||
trait-category-Visual = Visual
|
||||
trait-category-Visual = Visual
|
||||
|
||||
40
Resources/Locale/en-US/traits/psionics.ftl
Normal file
40
Resources/Locale/en-US/traits/psionics.ftl
Normal file
@@ -0,0 +1,40 @@
|
||||
character-item-group-TraitsCasterType = Psicaster Type
|
||||
|
||||
trait-name-LatentPsychic = Latent Psychic
|
||||
trait-description-LatentPsychic =
|
||||
Your mind and soul are open to the noosphere, allowing for use of Telepathy.
|
||||
Thus, you are eligible for potentially receiving psychic powers.
|
||||
It is possible that you may be hunted by otherworldly forces, so consider keeping your powers a secret.
|
||||
Latent psychics have no special abilities, modifiers, or unique features compared to other psions.
|
||||
However they can become more or less anything given time and resources.
|
||||
|
||||
trait-name-PsionicInsulation = χ Waveform Misalignment
|
||||
trait-description-PsionicInsulation =
|
||||
You are a flesh automaton animated by neurotransmitters. Within your skull lies a
|
||||
1.5kg sack of meat pretending at sentience. By modern epistemiological theory, you aren't even a sophont.
|
||||
The good news is that you are immune to most positive and negative effects of psychic powers.
|
||||
There may be other consequences to this malady.
|
||||
|
||||
trait-name-Elementalist = Elementalist
|
||||
trait-description-Elementalist =
|
||||
'Elementalists' are a rare and modern form of Psion, noted for their potential for bombastic feats of "Kinesis".
|
||||
So rare were these individuals, that at one point in time they were known by titles such as Sorcerer, or Magician, if they weren't a charlatan that is.
|
||||
As an Elementalist, your talent for developing new powers is severely limited.
|
||||
Yet despite this tradeoff, your powers are more exclusively the realm of flashy and dangerous. You will never generate any powers known as "Mentalics".
|
||||
You are almost certainly going to be hunted. Let others know what you can do at the peril of your very soul.
|
||||
|
||||
- You can never "roll" new powers. The powers you buy at character creation are all you will ever have.
|
||||
- Your available powers are strictly limited to "Kinetics".
|
||||
- You will never be Telepathic.
|
||||
|
||||
trait-name-PsychoHistorian = Psycho-Historian
|
||||
trait-description-PsychoHistorian =
|
||||
Psycho-Historians are a fairly common and well-studied branch of psionic users, whose powers are documented in the public domain
|
||||
as far back as the 1970s on Earth. Mythological accounts of such individuals can also be traced back thousands of years. Today,
|
||||
Psycho-Historians make up the overwhelming bulk of the Epistemics Cult's awakened members. Your powers are generally regarded as "Safe", as they
|
||||
exclusively interact from one mind to another without need of interacting with extra-planar forces. However, you will never be able
|
||||
to learn any powers known as "Kinesis".
|
||||
|
||||
- Your powers are developed at a significantly faster rate than other psychics.
|
||||
- Your available powers are strictly limited to "Mentalics"
|
||||
- You are automatically considered Telepathic.
|
||||
17
Resources/Locale/en-US/traits/psychoHistorianPowers.ftl
Normal file
17
Resources/Locale/en-US/traits/psychoHistorianPowers.ftl
Normal file
@@ -0,0 +1,17 @@
|
||||
# All of the descriptions are intentionally omitted.
|
||||
trait-name-PsychoHistorianAssayPower = Assay
|
||||
trait-name-PsychoHistorianDispelPower = Dispel
|
||||
trait-name-PsychoHistorianMetapsionicPower = Metapsionic Pulse
|
||||
trait-name-PsychoHistorianPsychognomyPower = Psychognomy
|
||||
trait-name-PsychoHistorianXenoglossyPower = Xenoglossy
|
||||
trait-name-PsychoHistorianTelegnosisPower = Telegnosis
|
||||
trait-name-PsychoHistorianPsionicInvisibilityPower = Psionic Invisibility
|
||||
|
||||
trait-name-ElementalistShadeskipPower = Shadeskip
|
||||
trait-name-ElementalistAnoigoPower = Anoigo
|
||||
trait-name-ElementalistHealingWordPower = Healing Word
|
||||
trait-name-ElementalistTelekineticPulsePower = Telekinetic Pulse
|
||||
trait-name-ElementalistNoosphericZapPower = Noospheric Zap
|
||||
trait-name-ElementalistDarkSwapPower = Dark Swap
|
||||
trait-name-ElementalistRevivifyPower = Revivify
|
||||
trait-name-ElementalistPyrokineticFlarePower = Pyrokinetic Flare
|
||||
@@ -312,19 +312,6 @@ trait-description-Mystic =
|
||||
trait-name-Singer = Singer
|
||||
trait-description-Singer = You are naturally capable of singing simple melodies with your voice.
|
||||
|
||||
trait-name-LatentPsychic = Latent Psychic
|
||||
trait-description-LatentPsychic =
|
||||
Your mind and soul are open to the noosphere, allowing for use of Telepathy.
|
||||
Thus, you are eligible for potentially receiving psychic powers.
|
||||
It is possible that you may be hunted by otherworldly forces, so consider keeping your powers a secret.
|
||||
|
||||
trait-name-PsionicInsulation = χ Waveform Misalignment
|
||||
trait-description-PsionicInsulation =
|
||||
You are a flesh automaton animated by neurotransmitters. Within your skull lies a
|
||||
1.5kg sack of meat pretending at sentience. By modern epistemiological theory, you aren't even a sophont.
|
||||
The good news is that you are immune to most positive and negative effects of psychic powers.
|
||||
There may be other consequences to this malady.
|
||||
|
||||
trait-name-NaturalTelepath = Natural Telepath
|
||||
trait-description-NaturalTelepath =
|
||||
As a naturally occuring Telepath, you are capable of fluent telepathic communication, regardless of
|
||||
@@ -632,11 +619,11 @@ trait-description-Weakling =
|
||||
|
||||
trait-name-Bodybuilder = Bodybuilder
|
||||
trait-description-Bodybuilder =
|
||||
Through extensive training or body modification, you have achieved the pinnacle of physique.
|
||||
Through extensive training or body modification, you have achieved the pinnacle of physique.
|
||||
This trait halves the movement speed penalty when dragging something.
|
||||
|
||||
trait-name-RestrictedGear = Restricted Gear
|
||||
trait-description-RestrictedGear =
|
||||
trait-description-RestrictedGear =
|
||||
Either through personal ownership or theft, you have access to equipment that isn't particularly standard issue.
|
||||
Note that starting with an item [color=red]doesn't certify its legality[/color]. Conceal it or justify it.
|
||||
(You equip other jobs' items in the loadouts menu)
|
||||
(You equip other jobs' items in the loadouts menu)
|
||||
|
||||
@@ -120,3 +120,6 @@ SophicScribe: SophicScribeSpawner
|
||||
|
||||
# 2024-12-22
|
||||
VendingMachineRestockSalvageEquipment: null
|
||||
|
||||
# 2025-04-05 Dear Maintainer, say nothing about this.
|
||||
AntiPsychicKnife: null
|
||||
|
||||
@@ -0,0 +1,12 @@
|
||||
- type: characterItemGroup
|
||||
id: TraitsCasterType
|
||||
maxItems: 1
|
||||
items:
|
||||
- type: trait
|
||||
id: LatentPsychic
|
||||
- type: trait # Here for simplifying Yml requirements
|
||||
id: PsionicInsulation
|
||||
- type: trait
|
||||
id: PsychoHistorian
|
||||
- type: trait
|
||||
id: Elementalist
|
||||
@@ -9,7 +9,6 @@
|
||||
# - id: FlashlightSeclite # Deltav - Detective is in charge of investigating crimes.
|
||||
# - id: ForensicScanner
|
||||
# - id: BoxForensicPad
|
||||
- id: AntiPsychicKnife
|
||||
- id: FlashlightLantern # DeltaV - To replace their lost flashlight
|
||||
- id: BoxZiptie # DeltaV - Give the mantis some zipties
|
||||
- id: WeaponPistolPsiBreaker # DeltaV - Mantis mindbreaker pistol, see Resources/Prototypes/DeltaV/Entities?Objects/Weapons/Guns/Pistols/pistols.yml
|
||||
|
||||
@@ -30,6 +30,3 @@
|
||||
- type: Tag
|
||||
tags:
|
||||
- ForensicBeltEquip
|
||||
- HighRiskItem
|
||||
- type: StealTarget
|
||||
stealGroup: AntiPsychicKnife
|
||||
|
||||
@@ -1,6 +0,0 @@
|
||||
- type: stealTargetGroup
|
||||
id: AntiPsychicKnife
|
||||
name: steal-target-anti-psychic-knife
|
||||
sprite:
|
||||
sprite: Nyanotrasen/Objects/Weapons/Melee/anti_psychic_knife.rsi
|
||||
state: icon
|
||||
@@ -1,14 +1,3 @@
|
||||
- type: entity
|
||||
categories: [ HideSpawnMenu ]
|
||||
parent: BaseTraitorStealObjective
|
||||
id: MantisKnifeStealObjective
|
||||
components:
|
||||
- type: NotJobRequirement
|
||||
job: ForensicMantis
|
||||
- type: StealCondition
|
||||
stealGroup: AntiPsychicKnife
|
||||
owner: job-name-mantis
|
||||
|
||||
#- type: entity
|
||||
# id: BecomeGolemObjective
|
||||
# parent: BaseTraitorObjective
|
||||
|
||||
@@ -22,14 +22,12 @@
|
||||
inverted: true
|
||||
traits:
|
||||
- Pacifist
|
||||
- !type:CharacterTraitRequirement
|
||||
inverted: true
|
||||
traits:
|
||||
- ShadowkinBlackeye
|
||||
- !type:CharacterEmployerRequirement
|
||||
inverted: true
|
||||
employers:
|
||||
- Unemployed
|
||||
- !type:CharacterItemGroupRequirement
|
||||
group: TraitsCasterType
|
||||
startingGear: ForensicMantisGear
|
||||
icon: "JobIconForensicMantis"
|
||||
supervisors: job-supervisors-rd
|
||||
@@ -44,13 +42,17 @@
|
||||
components:
|
||||
- type: Psionic
|
||||
powerSlots: 2
|
||||
baselinePowerCost: 75
|
||||
nextPowerCost: 75
|
||||
removable: false
|
||||
powerPool: PsychoHistorianPowerPool
|
||||
- !type:AddComponentSpecial
|
||||
components:
|
||||
- type: InnatePsionicPowers
|
||||
powersToAdd:
|
||||
- MetapsionicPower
|
||||
- TelepathyPower
|
||||
- AssayPower
|
||||
- MantisSummonBlackBlade # Dear Maintainer, say NOTHING about this.
|
||||
|
||||
- type: startingGear
|
||||
id: ForensicMantisGear
|
||||
|
||||
@@ -1,6 +1,8 @@
|
||||
- type: weightedRandom
|
||||
id: RandomPsionicPowerPool
|
||||
weights:
|
||||
MetapsionicPower: 1
|
||||
AnoigoPower: 1
|
||||
DispelPower: 1
|
||||
#TelegnosisPower: 1
|
||||
PsionicRegenerationPower: 1
|
||||
@@ -20,3 +22,24 @@
|
||||
DarkSwapPower: 0.1
|
||||
RevivifyPower: 0.3
|
||||
#wwdp edit end
|
||||
|
||||
- type: weightedRandom
|
||||
id: PsychoHistorianPowerPool # Significantly trimmed down pool, MUCH faster power generation. Free Telepathy.
|
||||
weights:
|
||||
MetapsionicPower: 1
|
||||
DispelPower: 1
|
||||
TelegnosisPower: 1
|
||||
PsionicRegenerationPower: 1
|
||||
MassSleepPower: 0.3
|
||||
PsionicInvisibilityPower: 0.15
|
||||
MindSwapPower: 0.1
|
||||
|
||||
- type: weightedRandom
|
||||
id: ElementalistPowerPool # Significantly slower power generation. No Telepathy.
|
||||
weights:
|
||||
AnoigoPower: 1
|
||||
HealingWordPower: 0.9
|
||||
ShadeskipPower: 0.1
|
||||
TelekineticPulsePower: 0.15
|
||||
PyrokineticFlare: 0.5
|
||||
NoosphericZapPower: 0.5
|
||||
|
||||
87
Resources/Prototypes/Psionics/mantisPowers.yml
Normal file
87
Resources/Prototypes/Psionics/mantisPowers.yml
Normal file
@@ -0,0 +1,87 @@
|
||||
# Dear maintainer, say nothing about this.
|
||||
# Dear player, do not explain this to anyone.
|
||||
# Dear random github reader, this file does not exist.
|
||||
- type: psionicPower
|
||||
id: MantisSummonBlackBlade
|
||||
name: Summon Black Blade
|
||||
powerCategories:
|
||||
- Mentalic
|
||||
- Dangerous
|
||||
initializeFunctions:
|
||||
- !type:AddPsionicActions
|
||||
actions:
|
||||
- ActionMantisSummonBlackBlade
|
||||
removalFunctions:
|
||||
- !type:RemovePsionicActions
|
||||
|
||||
- type: entity
|
||||
id: ActionMantisSummonBlackBlade
|
||||
name: Summon Black Blade
|
||||
description: Beckon forth the testament of your sins.
|
||||
categories: [ HideSpawnMenu ]
|
||||
components:
|
||||
- type: Sprite
|
||||
sprite: WhiteDream/BloodCult/Entities/Items/Weapons/cult_blade.rsi
|
||||
state: icon
|
||||
- type: InstantAction
|
||||
useDelay: 20
|
||||
checkCanInteract: false
|
||||
itemIconStyle: BigAction
|
||||
icon:
|
||||
sprite: WhiteDream/BloodCult/Entities/Items/Weapons/cult_blade.rsi
|
||||
state: icon
|
||||
event: !type:SummonEquipmentEvent
|
||||
speech: "I CALL ON THE HEART OF QLIPPOTH, OF WOE AND THE END OF ALL THINGS. TO THIS DOOMED PLANE OF MORTAL MEN, I SHALL BRING A SEA OF BLOOD. TO MY HAND, BLACK BLADE"
|
||||
invokeChatType: Speak
|
||||
prototypes:
|
||||
hand1: MantisBlackBlade
|
||||
- type: BaseCultSpell
|
||||
|
||||
- type: entity
|
||||
name: black sword
|
||||
parent: BaseItem
|
||||
id: MantisBlackBlade
|
||||
description: A huge black sword covered in strange runes. It whispers incessantly to its wielder.
|
||||
components:
|
||||
- type: Sharp
|
||||
- type: Sprite
|
||||
sprite: WhiteDream/BloodCult/Entities/Items/Weapons/cult_blade.rsi
|
||||
state: icon
|
||||
- type: MeleeWeapon
|
||||
wideAnimationRotation: -135
|
||||
attackRate: 1.3333
|
||||
range: 1.65
|
||||
damage:
|
||||
types:
|
||||
Slash: 10
|
||||
Holy: 15
|
||||
heavyDamageBaseModifier: 1.2
|
||||
heavyStaminaCost: 10
|
||||
maxTargets: 3
|
||||
angle: 90
|
||||
soundHit:
|
||||
path: /Audio/Weapons/bladeslice.ogg
|
||||
- type: AntiPsionicWeapon
|
||||
punish: false
|
||||
modifiers:
|
||||
coefficients:
|
||||
Slash: 1.5
|
||||
Holy: 2
|
||||
- type: Item
|
||||
size: Normal
|
||||
- type: Clothing
|
||||
slots:
|
||||
- back
|
||||
- type: DisarmMalus
|
||||
- type: CultItem
|
||||
allowUseToEveryone: true
|
||||
- type: PointLight
|
||||
color: "#793a80"
|
||||
radius: 1.5
|
||||
energy: 12.5
|
||||
- type: DeleteOnDrop
|
||||
- type: AmbientSound
|
||||
range: 5
|
||||
volume: -5
|
||||
sound:
|
||||
path: /Audio/Ambience/anomaly_scary.ogg
|
||||
@@ -16,19 +16,12 @@
|
||||
- !type:CharacterTraitRequirement
|
||||
traits:
|
||||
- AnomalousPositronics
|
||||
- !type:CharacterLogicOrRequirement
|
||||
requirements:
|
||||
- !type:CharacterSpeciesRequirement
|
||||
species:
|
||||
- Shadowkin
|
||||
- !type:CharacterTraitRequirement
|
||||
inverted: true
|
||||
traits:
|
||||
- ShadowkinBlackeye
|
||||
- !type:CharacterEmployerRequirement
|
||||
inverted: true
|
||||
employers:
|
||||
- Unemployed
|
||||
- !type:CharacterItemGroupRequirement
|
||||
group: TraitsCasterType
|
||||
startingGear: ChaplainGear
|
||||
icon: "JobIconChaplain"
|
||||
supervisors: job-supervisors-rd
|
||||
@@ -42,9 +35,11 @@
|
||||
- type: BibleUser
|
||||
- type: Psionic
|
||||
powerRollMultiplier: 3
|
||||
baselinePowerCost: 150
|
||||
nextPowerCost: 150
|
||||
powerPool: ElementalistPowerPool
|
||||
- type: InnatePsionicPowers
|
||||
powersToAdd:
|
||||
- TelepathyPower
|
||||
- HealingWordPower
|
||||
- SummonRemiliaPower
|
||||
|
||||
|
||||
@@ -16,14 +16,12 @@
|
||||
- !type:CharacterTraitRequirement
|
||||
traits:
|
||||
- AnomalousPositronics
|
||||
- !type:CharacterTraitRequirement
|
||||
inverted: true
|
||||
traits:
|
||||
- ShadowkinBlackeye
|
||||
- !type:CharacterEmployerRequirement
|
||||
inverted: true
|
||||
employers:
|
||||
- Unemployed
|
||||
- !type:CharacterItemGroupRequirement
|
||||
group: TraitsCasterType
|
||||
startingGear: LibrarianGear
|
||||
icon: "JobIconLibrarian"
|
||||
supervisors: job-supervisors-rd
|
||||
@@ -35,10 +33,15 @@
|
||||
- !type:AddComponentSpecial
|
||||
components:
|
||||
- type: Psionic
|
||||
baselinePowerCost: 75
|
||||
nextPowerCost: 75
|
||||
removable: false
|
||||
powerPool: PsychoHistorianPowerPool
|
||||
- type: InnatePsionicPowers
|
||||
powersToAdd:
|
||||
- XenoglossyPower
|
||||
- TelepathyPower
|
||||
- AssayPower
|
||||
|
||||
|
||||
- type: startingGear
|
||||
|
||||
@@ -4,6 +4,8 @@
|
||||
description: job-description-rd
|
||||
playTimeTracker: JobResearchDirector
|
||||
requirements:
|
||||
- !type:CharacterItemGroupRequirement
|
||||
group: TraitsCasterType
|
||||
- !type:CharacterLogicOrRequirement
|
||||
requirements:
|
||||
- !type:CharacterSpeciesRequirement
|
||||
@@ -13,10 +15,6 @@
|
||||
- !type:CharacterTraitRequirement
|
||||
traits:
|
||||
- AnomalousPositronics
|
||||
- !type:CharacterTraitRequirement
|
||||
inverted: true
|
||||
traits:
|
||||
- ShadowkinBlackeye
|
||||
- !type:CharacterTraitRequirement
|
||||
inverted: true
|
||||
traits:
|
||||
@@ -46,6 +44,8 @@
|
||||
- type: BibleUser # Nyano - Lets them heal with bibles
|
||||
- type: Psionic # Nyano - They start with telepathic chat
|
||||
powerSlots: 3
|
||||
baselinePowerCost: 75
|
||||
nextPowerCost: 75 # No that's fully intended that he has the "Full" power pull. Have fun with being a crew-aligned wizard/cultist.
|
||||
- !type:AddImplantSpecial
|
||||
implants: [ MindShieldImplant ]
|
||||
- !type:AddComponentSpecial
|
||||
|
||||
134
Resources/Prototypes/Traits/Psionics/casterTypes.yml
Normal file
134
Resources/Prototypes/Traits/Psionics/casterTypes.yml
Normal file
@@ -0,0 +1,134 @@
|
||||
- type: trait
|
||||
id: LatentPsychic
|
||||
category: TraitsPsionicsCasterTypes
|
||||
points: -4
|
||||
functions:
|
||||
- !type:TraitAddComponent
|
||||
components:
|
||||
- type: Psionic
|
||||
requirements:
|
||||
- !type:CharacterItemGroupRequirement
|
||||
group: TraitsCasterType
|
||||
- !type:CharacterJobRequirement
|
||||
inverted: true
|
||||
jobs:
|
||||
- Borg
|
||||
- MedicalBorg
|
||||
- ResearchDirector
|
||||
- ForensicMantis
|
||||
- Chaplain
|
||||
- Librarian
|
||||
- !type:CharacterLogicOrRequirement
|
||||
requirements:
|
||||
- !type:CharacterSpeciesRequirement
|
||||
inverted: true
|
||||
species:
|
||||
- IPC
|
||||
- !type:CharacterTraitRequirement
|
||||
traits:
|
||||
- AnomalousPositronics
|
||||
- !type:CharacterItemGroupRequirement
|
||||
group: TraitsMachine
|
||||
|
||||
- type: trait
|
||||
id: PsionicInsulation
|
||||
category: TraitsPsionicsCasterTypes
|
||||
points: -10 #Buy a significant disability to get this.
|
||||
functions:
|
||||
- !type:TraitAddComponent
|
||||
components:
|
||||
- type: PsionicInsulation
|
||||
- type: Mindbroken
|
||||
requirements:
|
||||
- !type:CharacterItemGroupRequirement
|
||||
group: TraitsCasterType
|
||||
- !type:CharacterJobRequirement
|
||||
inverted: true
|
||||
jobs:
|
||||
- Borg
|
||||
- MedicalBorg
|
||||
- ResearchDirector
|
||||
- ForensicMantis
|
||||
- Chaplain
|
||||
- Librarian
|
||||
- !type:CharacterLogicOrRequirement
|
||||
requirements:
|
||||
- !type:CharacterSpeciesRequirement
|
||||
inverted: true
|
||||
species:
|
||||
- IPC
|
||||
- !type:CharacterTraitRequirement
|
||||
traits:
|
||||
- AnomalousPositronics
|
||||
|
||||
- type: trait
|
||||
id: PsychoHistorian
|
||||
category: TraitsPsionicsCasterTypes
|
||||
points: -4
|
||||
functions:
|
||||
- !type:TraitAddComponent
|
||||
components:
|
||||
- type: Psionic
|
||||
baselinePowerCost: 75
|
||||
nextPowerCost: 75
|
||||
removable: false
|
||||
powerPool: PsychoHistorianPowerPool
|
||||
- !type:TraitAddPsionics
|
||||
psionicPowers:
|
||||
- TelepathyPower
|
||||
requirements:
|
||||
- !type:CharacterItemGroupRequirement
|
||||
group: TraitsCasterType
|
||||
- !type:CharacterJobRequirement
|
||||
inverted: true
|
||||
jobs:
|
||||
- Borg
|
||||
- MedicalBorg
|
||||
- ResearchDirector
|
||||
- ForensicMantis
|
||||
- Chaplain
|
||||
- Librarian
|
||||
- !type:CharacterLogicOrRequirement
|
||||
requirements:
|
||||
- !type:CharacterSpeciesRequirement
|
||||
inverted: true
|
||||
species:
|
||||
- IPC
|
||||
- !type:CharacterTraitRequirement
|
||||
traits:
|
||||
- AnomalousPositronics
|
||||
- !type:CharacterItemGroupRequirement
|
||||
group: TraitsMachine
|
||||
|
||||
- type: trait
|
||||
id: Elementalist
|
||||
category: TraitsPsionicsCasterTypes
|
||||
points: -5
|
||||
functions:
|
||||
- !type:TraitAddComponent
|
||||
components:
|
||||
- type: Psionic
|
||||
roller: false
|
||||
requirements:
|
||||
- !type:CharacterItemGroupRequirement
|
||||
group: TraitsCasterType
|
||||
- !type:CharacterJobRequirement
|
||||
inverted: true
|
||||
jobs:
|
||||
- Borg
|
||||
- MedicalBorg
|
||||
- ResearchDirector
|
||||
- ForensicMantis
|
||||
- Chaplain
|
||||
- Librarian
|
||||
- !type:CharacterLogicOrRequirement
|
||||
requirements:
|
||||
- !type:CharacterSpeciesRequirement
|
||||
inverted: true
|
||||
species:
|
||||
- IPC
|
||||
- !type:CharacterTraitRequirement
|
||||
traits:
|
||||
- AnomalousPositronics
|
||||
- !type:CharacterItemGroupRequirement
|
||||
group: TraitsMachine
|
||||
103
Resources/Prototypes/Traits/Psionics/elementalistShop.yml
Normal file
103
Resources/Prototypes/Traits/Psionics/elementalistShop.yml
Normal file
@@ -0,0 +1,103 @@
|
||||
- type: trait
|
||||
id: ElementalistAnoigoPower
|
||||
category: TraitsPsionicsPowers
|
||||
points: -5
|
||||
requirements:
|
||||
- !type:CharacterTraitRequirement
|
||||
traits:
|
||||
- Elementalist
|
||||
functions:
|
||||
- !type:TraitAddPsionics
|
||||
psionicPowers:
|
||||
- AnoigoPower
|
||||
|
||||
- type: trait
|
||||
id: ElementalistHealingWordPower
|
||||
category: TraitsPsionicsPowers
|
||||
points: -5
|
||||
requirements:
|
||||
- !type:CharacterTraitRequirement
|
||||
traits:
|
||||
- Elementalist
|
||||
functions:
|
||||
- !type:TraitAddPsionics
|
||||
psionicPowers:
|
||||
- HealingWordPower
|
||||
|
||||
- type: trait
|
||||
id: ElementalistRevivifyPower
|
||||
category: TraitsPsionicsPowers
|
||||
points: -10
|
||||
requirements:
|
||||
- !type:CharacterTraitRequirement
|
||||
traits:
|
||||
- ElementalistHealingWordPower
|
||||
functions:
|
||||
- !type:TraitAddPsionics
|
||||
psionicPowers:
|
||||
- RevivifyPower
|
||||
|
||||
- type: trait
|
||||
id: ElementalistShadeskipPower
|
||||
category: TraitsPsionicsPowers
|
||||
points: -3
|
||||
requirements:
|
||||
- !type:CharacterTraitRequirement
|
||||
traits:
|
||||
- Elementalist
|
||||
functions:
|
||||
- !type:TraitAddPsionics
|
||||
psionicPowers:
|
||||
- ShadeskipPower
|
||||
|
||||
- type: trait
|
||||
id: ElementalistDarkSwapPower
|
||||
category: TraitsPsionicsPowers
|
||||
points: -10
|
||||
requirements:
|
||||
- !type:CharacterTraitRequirement
|
||||
traits:
|
||||
- ElementalistShadeskipPower
|
||||
functions:
|
||||
- !type:TraitAddPsionics
|
||||
psionicPowers:
|
||||
- DarkSwapPower
|
||||
|
||||
- type: trait
|
||||
id: ElementalistTelekineticPulsePower
|
||||
category: TraitsPsionicsPowers
|
||||
points: -5
|
||||
requirements:
|
||||
- !type:CharacterTraitRequirement
|
||||
traits:
|
||||
- Elementalist
|
||||
functions:
|
||||
- !type:TraitAddPsionics
|
||||
psionicPowers:
|
||||
- TelekineticPulsePower
|
||||
|
||||
- type: trait
|
||||
id: ElementalistPyrokineticFlarePower
|
||||
category: TraitsPsionicsPowers
|
||||
points: -4
|
||||
requirements:
|
||||
- !type:CharacterTraitRequirement
|
||||
traits:
|
||||
- Elementalist
|
||||
functions:
|
||||
- !type:TraitAddPsionics
|
||||
psionicPowers:
|
||||
- PyrokineticFlare
|
||||
|
||||
- type: trait
|
||||
id: ElementalistNoosphericZapPower
|
||||
category: TraitsPsionicsPowers
|
||||
points: -6
|
||||
requirements:
|
||||
- !type:CharacterTraitRequirement
|
||||
traits:
|
||||
- Elementalist
|
||||
functions:
|
||||
- !type:TraitAddPsionics
|
||||
psionicPowers:
|
||||
- NoosphericZapPower
|
||||
234
Resources/Prototypes/Traits/Psionics/feats.yml
Normal file
234
Resources/Prototypes/Traits/Psionics/feats.yml
Normal file
@@ -0,0 +1,234 @@
|
||||
- type: trait
|
||||
id: HighPotential
|
||||
category: TraitsPsionicsFeats
|
||||
points: -5
|
||||
requirements:
|
||||
- !type:CharacterTraitRequirement
|
||||
traits:
|
||||
- LatentPsychic
|
||||
- PsychoHistorian
|
||||
- Elementalist
|
||||
- !type:CharacterLogicOrRequirement
|
||||
requirements:
|
||||
- !type:CharacterSpeciesRequirement
|
||||
inverted: true
|
||||
species:
|
||||
- IPC
|
||||
- !type:CharacterTraitRequirement
|
||||
traits:
|
||||
- AnomalousPositronics
|
||||
- !type:CharacterSpeciesRequirement
|
||||
inverted: true
|
||||
species:
|
||||
- Oni
|
||||
- !type:CharacterSpeciesRequirement
|
||||
inverted: true
|
||||
species:
|
||||
- Shadowkin
|
||||
- !type:CharacterTraitRequirement
|
||||
inverted: true
|
||||
traits:
|
||||
- LowPotential
|
||||
- !type:CharacterItemGroupRequirement
|
||||
group: TraitsMachine
|
||||
functions:
|
||||
- !type:TraitReplaceComponent
|
||||
components:
|
||||
- type: PotentiaModifier
|
||||
potentiaMultiplier: 1.5
|
||||
|
||||
- type: trait
|
||||
id: LowPotential
|
||||
category: TraitsPsionicsFeats
|
||||
points: 5
|
||||
requirements:
|
||||
- !type:CharacterTraitRequirement
|
||||
traits:
|
||||
- LatentPsychic
|
||||
- PsychoHistorian
|
||||
- Elementalist
|
||||
- !type:CharacterLogicOrRequirement
|
||||
requirements:
|
||||
- !type:CharacterSpeciesRequirement
|
||||
inverted: true
|
||||
species:
|
||||
- IPC
|
||||
- !type:CharacterTraitRequirement
|
||||
traits:
|
||||
- AnomalousPositronics
|
||||
- !type:CharacterSpeciesRequirement
|
||||
inverted: true
|
||||
species:
|
||||
- Oni
|
||||
- !type:CharacterSpeciesRequirement
|
||||
inverted: true
|
||||
species:
|
||||
- Shadowkin
|
||||
- !type:CharacterTraitRequirement
|
||||
inverted: true
|
||||
traits:
|
||||
- HighPotential
|
||||
- !type:CharacterItemGroupRequirement
|
||||
group: TraitsMachine
|
||||
functions:
|
||||
- !type:TraitReplaceComponent
|
||||
components:
|
||||
- type: PotentiaModifier
|
||||
potentiaMultiplier: 0.5
|
||||
|
||||
- type: trait
|
||||
id: LowAmplification
|
||||
category: TraitsPsionicsFeats
|
||||
points: 3
|
||||
requirements:
|
||||
- !type:CharacterTraitRequirement
|
||||
traits:
|
||||
- LatentPsychic
|
||||
- PsychoHistorian
|
||||
- Elementalist
|
||||
- !type:CharacterLogicOrRequirement
|
||||
requirements:
|
||||
- !type:CharacterSpeciesRequirement
|
||||
inverted: true
|
||||
species:
|
||||
- IPC
|
||||
- !type:CharacterTraitRequirement
|
||||
traits:
|
||||
- AnomalousPositronics
|
||||
- !type:CharacterSpeciesRequirement
|
||||
inverted: true
|
||||
species:
|
||||
- Shadowkin
|
||||
- !type:CharacterTraitRequirement
|
||||
inverted: true
|
||||
traits:
|
||||
- HighAmplification
|
||||
- PowerOverwhelming
|
||||
- !type:CharacterItemGroupRequirement
|
||||
group: TraitsMachine
|
||||
functions:
|
||||
- !type:TraitAddPsionics
|
||||
psionicPowers:
|
||||
- LowAmplification
|
||||
|
||||
- type: trait
|
||||
id: HighAmplification
|
||||
category: TraitsPsionicsFeats
|
||||
points: -3
|
||||
requirements:
|
||||
- !type:CharacterTraitRequirement
|
||||
traits:
|
||||
- LatentPsychic
|
||||
- PsychoHistorian
|
||||
- Elementalist
|
||||
- !type:CharacterLogicOrRequirement
|
||||
requirements:
|
||||
- !type:CharacterSpeciesRequirement
|
||||
inverted: true
|
||||
species:
|
||||
- IPC
|
||||
- !type:CharacterTraitRequirement
|
||||
traits:
|
||||
- AnomalousPositronics
|
||||
- !type:CharacterTraitRequirement
|
||||
inverted: true
|
||||
traits:
|
||||
- LowAmplification
|
||||
- PowerOverwhelming
|
||||
- !type:CharacterItemGroupRequirement
|
||||
group: TraitsMachine
|
||||
functions:
|
||||
- !type:TraitAddPsionics
|
||||
psionicPowers:
|
||||
- HighAmplification
|
||||
|
||||
- type: trait
|
||||
id: PowerOverwhelming
|
||||
category: TraitsPsionicsFeats
|
||||
points: -10
|
||||
requirements:
|
||||
- !type:CharacterTraitRequirement
|
||||
traits:
|
||||
- LatentPsychic
|
||||
- PsychoHistorian
|
||||
- Elementalist
|
||||
- !type:CharacterLogicOrRequirement
|
||||
requirements:
|
||||
- !type:CharacterSpeciesRequirement
|
||||
inverted: true
|
||||
species:
|
||||
- IPC
|
||||
- !type:CharacterTraitRequirement
|
||||
traits:
|
||||
- AnomalousPositronics
|
||||
- !type:CharacterTraitRequirement
|
||||
inverted: true
|
||||
traits:
|
||||
- LowAmplification
|
||||
- HighAmplification
|
||||
- !type:CharacterItemGroupRequirement
|
||||
group: TraitsMachine
|
||||
functions:
|
||||
- !type:TraitAddPsionics
|
||||
psionicPowers:
|
||||
- PowerOverwhelming
|
||||
|
||||
- type: trait
|
||||
id: LowDampening
|
||||
category: TraitsPsionicsFeats
|
||||
points: 3
|
||||
requirements:
|
||||
- !type:CharacterTraitRequirement
|
||||
traits:
|
||||
- LatentPsychic
|
||||
- PsychoHistorian
|
||||
- Elementalist
|
||||
- !type:CharacterLogicOrRequirement
|
||||
requirements:
|
||||
- !type:CharacterSpeciesRequirement
|
||||
inverted: true
|
||||
species:
|
||||
- IPC
|
||||
- !type:CharacterTraitRequirement
|
||||
traits:
|
||||
- AnomalousPositronics
|
||||
- !type:CharacterTraitRequirement
|
||||
inverted: true
|
||||
traits:
|
||||
- HighDampening
|
||||
- !type:CharacterItemGroupRequirement
|
||||
group: TraitsMachine
|
||||
functions:
|
||||
- !type:TraitAddPsionics
|
||||
psionicPowers:
|
||||
- LowDampening
|
||||
|
||||
- type: trait
|
||||
id: HighDampening
|
||||
category: TraitsPsionicsFeats
|
||||
points: -3
|
||||
requirements:
|
||||
- !type:CharacterTraitRequirement
|
||||
traits:
|
||||
- LatentPsychic
|
||||
- PsychoHistorian
|
||||
- Elementalist
|
||||
- !type:CharacterLogicOrRequirement
|
||||
requirements:
|
||||
- !type:CharacterSpeciesRequirement
|
||||
inverted: true
|
||||
species:
|
||||
- IPC
|
||||
- !type:CharacterTraitRequirement
|
||||
traits:
|
||||
- AnomalousPositronics
|
||||
- !type:CharacterTraitRequirement
|
||||
inverted: true
|
||||
traits:
|
||||
- LowDampening
|
||||
- !type:CharacterItemGroupRequirement
|
||||
group: TraitsMachine
|
||||
functions:
|
||||
- !type:TraitAddPsionics
|
||||
psionicPowers:
|
||||
- HighDampening
|
||||
160
Resources/Prototypes/Traits/Psionics/latentShop.yml
Normal file
160
Resources/Prototypes/Traits/Psionics/latentShop.yml
Normal file
@@ -0,0 +1,160 @@
|
||||
- type: trait
|
||||
id: DispelPower
|
||||
category: TraitsPsionicsPowers
|
||||
points: -4
|
||||
requirements:
|
||||
- !type:CharacterTraitRequirement
|
||||
traits:
|
||||
- LatentPsychic
|
||||
- !type:CharacterLogicOrRequirement
|
||||
requirements:
|
||||
- !type:CharacterSpeciesRequirement
|
||||
inverted: true
|
||||
species:
|
||||
- IPC
|
||||
- !type:CharacterTraitRequirement
|
||||
traits:
|
||||
- AnomalousPositronics
|
||||
- !type:CharacterJobRequirement
|
||||
inverted: true
|
||||
jobs:
|
||||
- ResearchDirector
|
||||
- !type:CharacterItemGroupRequirement
|
||||
group: TraitsMachine
|
||||
functions:
|
||||
- !type:TraitAddPsionics
|
||||
psionicPowers:
|
||||
- DispelPower
|
||||
|
||||
- type: trait
|
||||
id: MetapsionicPower
|
||||
category: TraitsPsionicsPowers
|
||||
points: -2
|
||||
requirements:
|
||||
- !type:CharacterTraitRequirement
|
||||
traits:
|
||||
- LatentPsychic
|
||||
- !type:CharacterLogicOrRequirement
|
||||
requirements:
|
||||
- !type:CharacterSpeciesRequirement
|
||||
inverted: true
|
||||
species:
|
||||
- IPC
|
||||
- !type:CharacterTraitRequirement
|
||||
traits:
|
||||
- AnomalousPositronics
|
||||
- !type:CharacterJobRequirement
|
||||
inverted: true
|
||||
jobs:
|
||||
- ResearchDirector
|
||||
- ForensicMantis
|
||||
- !type:CharacterItemGroupRequirement
|
||||
group: TraitsMachine
|
||||
functions:
|
||||
- !type:TraitAddPsionics
|
||||
psionicPowers:
|
||||
- MetapsionicPower
|
||||
|
||||
- type: trait
|
||||
id: XenoglossyPower
|
||||
category: TraitsPsionicsPowers
|
||||
points: -10
|
||||
requirements:
|
||||
- !type:CharacterLogicOrRequirement
|
||||
requirements:
|
||||
- !type:CharacterTraitRequirement
|
||||
traits:
|
||||
- LatentPsychic
|
||||
- NaturalTelepath
|
||||
- !type:CharacterJobRequirement
|
||||
jobs:
|
||||
- Chaplain
|
||||
- ResearchDirector
|
||||
- ForensicMantis
|
||||
- !type:CharacterLogicOrRequirement
|
||||
requirements:
|
||||
- !type:CharacterSpeciesRequirement
|
||||
inverted: true
|
||||
species:
|
||||
- IPC
|
||||
- !type:CharacterTraitRequirement
|
||||
traits:
|
||||
- AnomalousPositronics
|
||||
- !type:CharacterJobRequirement
|
||||
inverted: true
|
||||
jobs:
|
||||
- Librarian
|
||||
- !type:CharacterItemGroupRequirement
|
||||
group: TraitsMachine
|
||||
functions:
|
||||
- !type:TraitAddPsionics
|
||||
psionicPowers:
|
||||
- XenoglossyPower
|
||||
|
||||
- type: trait
|
||||
id: PsychognomyPower
|
||||
category: TraitsPsionicsPowers
|
||||
points: -1
|
||||
requirements:
|
||||
- !type:CharacterLogicOrRequirement
|
||||
requirements:
|
||||
- !type:CharacterTraitRequirement
|
||||
traits:
|
||||
- LatentPsychic
|
||||
- NaturalTelepath
|
||||
- !type:CharacterJobRequirement
|
||||
jobs:
|
||||
- Chaplain
|
||||
- ResearchDirector
|
||||
- ForensicMantis
|
||||
- Librarian
|
||||
- !type:CharacterLogicOrRequirement
|
||||
requirements:
|
||||
- !type:CharacterSpeciesRequirement
|
||||
inverted: true
|
||||
species:
|
||||
- IPC
|
||||
- !type:CharacterTraitRequirement
|
||||
traits:
|
||||
- AnomalousPositronics
|
||||
- !type:CharacterItemGroupRequirement
|
||||
group: TraitsMachine
|
||||
functions:
|
||||
- !type:TraitAddPsionics
|
||||
psionicPowers:
|
||||
- PsychognomyPower
|
||||
|
||||
- type: trait
|
||||
id: HealingWordPower
|
||||
category: TraitsPsionicsPowers
|
||||
points: -6
|
||||
requirements:
|
||||
- !type:CharacterLogicOrRequirement
|
||||
requirements:
|
||||
- !type:CharacterTraitRequirement
|
||||
traits:
|
||||
- LatentPsychic
|
||||
- !type:CharacterJobRequirement
|
||||
jobs:
|
||||
- Librarian
|
||||
- ForensicMantis
|
||||
- ResearchDirector
|
||||
- !type:CharacterLogicOrRequirement
|
||||
requirements:
|
||||
- !type:CharacterSpeciesRequirement
|
||||
inverted: true
|
||||
species:
|
||||
- IPC
|
||||
- !type:CharacterTraitRequirement
|
||||
traits:
|
||||
- AnomalousPositronics
|
||||
- !type:CharacterJobRequirement
|
||||
inverted: true
|
||||
jobs:
|
||||
- Chaplain
|
||||
- !type:CharacterItemGroupRequirement
|
||||
group: TraitsMachine
|
||||
functions:
|
||||
- !type:TraitAddPsionics
|
||||
psionicPowers:
|
||||
- HealingWordPower
|
||||
104
Resources/Prototypes/Traits/Psionics/psychoHistorianShop.yml
Normal file
104
Resources/Prototypes/Traits/Psionics/psychoHistorianShop.yml
Normal file
@@ -0,0 +1,104 @@
|
||||
- type: trait
|
||||
id: PsychoHistorianMetapsionicPower
|
||||
category: TraitsPsionicsPowers
|
||||
points: -2
|
||||
requirements:
|
||||
- !type:CharacterTraitRequirement
|
||||
traits:
|
||||
- PsychoHistorian
|
||||
functions:
|
||||
- !type:TraitAddPsionics
|
||||
psionicPowers:
|
||||
- MetapsionicPower
|
||||
|
||||
- type: trait
|
||||
id: PsychoHistorianDispelPower
|
||||
category: TraitsPsionicsPowers
|
||||
points: -2
|
||||
requirements:
|
||||
- !type:CharacterTraitRequirement
|
||||
traits:
|
||||
- PsychoHistorian
|
||||
functions:
|
||||
- !type:TraitAddPsionics
|
||||
psionicPowers:
|
||||
- DispelPower
|
||||
|
||||
- type: trait
|
||||
id: PsychoHistorianTelegnosisPower
|
||||
category: TraitsPsionicsPowers
|
||||
points: -5
|
||||
requirements:
|
||||
- !type:CharacterTraitRequirement
|
||||
traits:
|
||||
- PsychoHistorian
|
||||
functions:
|
||||
- !type:TraitAddPsionics
|
||||
psionicPowers:
|
||||
- TelegnosisPower
|
||||
|
||||
# Seriously broken power, should probably bring this back as a single target ability.
|
||||
# - type: trait
|
||||
# id: PsychoHistorianMassSleepPower
|
||||
# category: TraitsPsionicsPowers
|
||||
# points: -10
|
||||
# requirements:
|
||||
# - !type:CharacterTraitRequirement
|
||||
# traits:
|
||||
# - PsychoHistorian
|
||||
# functions:
|
||||
# - !type:TraitAddPsionics
|
||||
# psionicPowers:
|
||||
# - MassSleepPower
|
||||
|
||||
- type: trait
|
||||
id: PsychoHistorianPsionicInvisibilityPower
|
||||
category: TraitsPsionicsPowers
|
||||
points: -8
|
||||
requirements:
|
||||
- !type:CharacterTraitRequirement
|
||||
traits:
|
||||
- PsychoHistorian
|
||||
functions:
|
||||
- !type:TraitAddPsionics
|
||||
psionicPowers:
|
||||
- PsionicInvisibilityPower
|
||||
|
||||
- type: trait
|
||||
id: PsychoHistorianXenoglossyPower
|
||||
category: TraitsPsionicsPowers
|
||||
points: -2
|
||||
requirements:
|
||||
- !type:CharacterTraitRequirement
|
||||
traits:
|
||||
- PsychoHistorian
|
||||
functions:
|
||||
- !type:TraitAddPsionics
|
||||
psionicPowers:
|
||||
- XenoglossyPower
|
||||
|
||||
- type: trait
|
||||
id: PsychoHistorianPsychognomyPower
|
||||
category: TraitsPsionicsPowers
|
||||
points: -2
|
||||
requirements:
|
||||
- !type:CharacterTraitRequirement
|
||||
traits:
|
||||
- PsychoHistorian
|
||||
functions:
|
||||
- !type:TraitAddPsionics
|
||||
psionicPowers:
|
||||
- PsychognomyPower
|
||||
|
||||
- type: trait
|
||||
id: PsychoHistorianAssayPower
|
||||
category: TraitsPsionicsPowers
|
||||
points: -2
|
||||
requirements:
|
||||
- !type:CharacterTraitRequirement
|
||||
traits:
|
||||
- PsychoHistorianMetapsionicPower
|
||||
functions:
|
||||
- !type:TraitAddPsionics
|
||||
psionicPowers:
|
||||
- AssayPower
|
||||
@@ -16,6 +16,23 @@
|
||||
id: Physical
|
||||
root: true
|
||||
|
||||
- type: traitCategory
|
||||
id: Psionics
|
||||
root: true
|
||||
subCategories:
|
||||
- TraitsPsionicsCasterTypes
|
||||
- TraitsPsionicsFeats
|
||||
- TraitsPsionicsPowers
|
||||
|
||||
- type: traitCategory
|
||||
id: TraitsPsionicsCasterTypes
|
||||
|
||||
- type: traitCategory
|
||||
id: TraitsPsionicsFeats
|
||||
|
||||
- type: traitCategory
|
||||
id: TraitsPsionicsPowers
|
||||
|
||||
- type: traitCategory
|
||||
id: Speech
|
||||
root: true
|
||||
@@ -39,4 +56,4 @@
|
||||
|
||||
- type: traitCategory
|
||||
id: Language
|
||||
root: true
|
||||
root: true
|
||||
|
||||
@@ -1,485 +0,0 @@
|
||||
- type: trait
|
||||
id: HighPotential
|
||||
category: Mental
|
||||
points: -5
|
||||
requirements:
|
||||
- !type:CharacterLogicOrRequirement
|
||||
requirements:
|
||||
- !type:CharacterTraitRequirement
|
||||
traits:
|
||||
- LatentPsychic
|
||||
- !type:CharacterJobRequirement
|
||||
jobs:
|
||||
- Chaplain
|
||||
- Librarian
|
||||
- ResearchDirector
|
||||
- ForensicMantis
|
||||
- !type:CharacterLogicOrRequirement
|
||||
requirements:
|
||||
- !type:CharacterSpeciesRequirement
|
||||
inverted: true
|
||||
species:
|
||||
- IPC
|
||||
- !type:CharacterTraitRequirement
|
||||
traits:
|
||||
- AnomalousPositronics
|
||||
- !type:CharacterSpeciesRequirement
|
||||
inverted: true
|
||||
species:
|
||||
- Oni
|
||||
- !type:CharacterSpeciesRequirement
|
||||
inverted: true
|
||||
species:
|
||||
- Shadowkin
|
||||
- !type:CharacterTraitRequirement
|
||||
inverted: true
|
||||
traits:
|
||||
- LowPotential
|
||||
- !type:CharacterItemGroupRequirement
|
||||
group: TraitsMachine
|
||||
functions:
|
||||
- !type:TraitReplaceComponent
|
||||
components:
|
||||
- type: PotentiaModifier
|
||||
potentiaMultiplier: 1.5
|
||||
|
||||
- type: trait
|
||||
id: LowPotential
|
||||
category: Mental
|
||||
points: 5
|
||||
requirements:
|
||||
- !type:CharacterLogicOrRequirement
|
||||
requirements:
|
||||
- !type:CharacterTraitRequirement
|
||||
traits:
|
||||
- LatentPsychic
|
||||
- !type:CharacterJobRequirement
|
||||
jobs:
|
||||
- Chaplain
|
||||
- Librarian
|
||||
- ResearchDirector
|
||||
- ForensicMantis
|
||||
- !type:CharacterLogicOrRequirement
|
||||
requirements:
|
||||
- !type:CharacterSpeciesRequirement
|
||||
inverted: true
|
||||
species:
|
||||
- IPC
|
||||
- !type:CharacterTraitRequirement
|
||||
traits:
|
||||
- AnomalousPositronics
|
||||
- !type:CharacterSpeciesRequirement
|
||||
inverted: true
|
||||
species:
|
||||
- Oni
|
||||
- !type:CharacterSpeciesRequirement
|
||||
inverted: true
|
||||
species:
|
||||
- Shadowkin
|
||||
- !type:CharacterTraitRequirement
|
||||
inverted: true
|
||||
traits:
|
||||
- HighPotential
|
||||
- !type:CharacterItemGroupRequirement
|
||||
group: TraitsMachine
|
||||
functions:
|
||||
- !type:TraitReplaceComponent
|
||||
components:
|
||||
- type: PotentiaModifier
|
||||
potentiaMultiplier: 0.5
|
||||
|
||||
- type: trait
|
||||
id: LowAmplification
|
||||
category: Mental
|
||||
points: 3
|
||||
requirements:
|
||||
- !type:CharacterLogicOrRequirement
|
||||
requirements:
|
||||
- !type:CharacterTraitRequirement
|
||||
traits:
|
||||
- LatentPsychic
|
||||
- !type:CharacterJobRequirement
|
||||
jobs:
|
||||
- Chaplain
|
||||
- Librarian
|
||||
- ResearchDirector
|
||||
- ForensicMantis
|
||||
- !type:CharacterLogicOrRequirement
|
||||
requirements:
|
||||
- !type:CharacterSpeciesRequirement
|
||||
inverted: true
|
||||
species:
|
||||
- IPC
|
||||
- !type:CharacterTraitRequirement
|
||||
traits:
|
||||
- AnomalousPositronics
|
||||
- !type:CharacterSpeciesRequirement
|
||||
inverted: true
|
||||
species:
|
||||
- Shadowkin
|
||||
- !type:CharacterTraitRequirement
|
||||
inverted: true
|
||||
traits:
|
||||
- HighAmplification
|
||||
- PowerOverwhelming
|
||||
- !type:CharacterItemGroupRequirement
|
||||
group: TraitsMachine
|
||||
functions:
|
||||
- !type:TraitAddPsionics
|
||||
psionicPowers:
|
||||
- LowAmplification
|
||||
|
||||
- type: trait
|
||||
id: HighAmplification
|
||||
category: Mental
|
||||
points: -3
|
||||
requirements:
|
||||
- !type:CharacterLogicOrRequirement
|
||||
requirements:
|
||||
- !type:CharacterTraitRequirement
|
||||
traits:
|
||||
- LatentPsychic
|
||||
- !type:CharacterJobRequirement
|
||||
jobs:
|
||||
- Chaplain
|
||||
- Librarian
|
||||
- ResearchDirector
|
||||
- ForensicMantis
|
||||
- !type:CharacterLogicOrRequirement
|
||||
requirements:
|
||||
- !type:CharacterSpeciesRequirement
|
||||
inverted: true
|
||||
species:
|
||||
- IPC
|
||||
- !type:CharacterTraitRequirement
|
||||
traits:
|
||||
- AnomalousPositronics
|
||||
- !type:CharacterTraitRequirement
|
||||
inverted: true
|
||||
traits:
|
||||
- LowAmplification
|
||||
- PowerOverwhelming
|
||||
- !type:CharacterItemGroupRequirement
|
||||
group: TraitsMachine
|
||||
functions:
|
||||
- !type:TraitAddPsionics
|
||||
psionicPowers:
|
||||
- HighAmplification
|
||||
|
||||
- type: trait
|
||||
id: PowerOverwhelming
|
||||
category: Mental
|
||||
points: -10
|
||||
requirements:
|
||||
- !type:CharacterLogicOrRequirement
|
||||
requirements:
|
||||
- !type:CharacterTraitRequirement
|
||||
traits:
|
||||
- LatentPsychic
|
||||
- !type:CharacterJobRequirement
|
||||
jobs:
|
||||
- Chaplain
|
||||
- Librarian
|
||||
- ResearchDirector
|
||||
- ForensicMantis
|
||||
- !type:CharacterLogicOrRequirement
|
||||
requirements:
|
||||
- !type:CharacterSpeciesRequirement
|
||||
inverted: true
|
||||
species:
|
||||
- IPC
|
||||
- !type:CharacterTraitRequirement
|
||||
traits:
|
||||
- AnomalousPositronics
|
||||
- !type:CharacterTraitRequirement
|
||||
inverted: true
|
||||
traits:
|
||||
- LowAmplification
|
||||
- HighAmplification
|
||||
- !type:CharacterItemGroupRequirement
|
||||
group: TraitsMachine
|
||||
functions:
|
||||
- !type:TraitAddPsionics
|
||||
psionicPowers:
|
||||
- PowerOverwhelming
|
||||
|
||||
- type: trait
|
||||
id: LowDampening
|
||||
category: Mental
|
||||
points: 3
|
||||
requirements:
|
||||
- !type:CharacterLogicOrRequirement
|
||||
requirements:
|
||||
- !type:CharacterTraitRequirement
|
||||
traits:
|
||||
- LatentPsychic
|
||||
- !type:CharacterJobRequirement
|
||||
jobs:
|
||||
- Chaplain
|
||||
- Librarian
|
||||
- ResearchDirector
|
||||
- ForensicMantis
|
||||
- !type:CharacterLogicOrRequirement
|
||||
requirements:
|
||||
- !type:CharacterSpeciesRequirement
|
||||
inverted: true
|
||||
species:
|
||||
- IPC
|
||||
- !type:CharacterTraitRequirement
|
||||
traits:
|
||||
- AnomalousPositronics
|
||||
- !type:CharacterTraitRequirement
|
||||
inverted: true
|
||||
traits:
|
||||
- HighDampening
|
||||
- !type:CharacterItemGroupRequirement
|
||||
group: TraitsMachine
|
||||
functions:
|
||||
- !type:TraitAddPsionics
|
||||
psionicPowers:
|
||||
- LowDampening
|
||||
|
||||
- type: trait
|
||||
id: HighDampening
|
||||
category: Mental
|
||||
points: -3
|
||||
requirements:
|
||||
- !type:CharacterLogicOrRequirement
|
||||
requirements:
|
||||
- !type:CharacterTraitRequirement
|
||||
traits:
|
||||
- LatentPsychic
|
||||
- !type:CharacterJobRequirement
|
||||
jobs:
|
||||
- Chaplain
|
||||
- Librarian
|
||||
- ResearchDirector
|
||||
- ForensicMantis
|
||||
- !type:CharacterLogicOrRequirement
|
||||
requirements:
|
||||
- !type:CharacterSpeciesRequirement
|
||||
inverted: true
|
||||
species:
|
||||
- IPC
|
||||
- !type:CharacterTraitRequirement
|
||||
traits:
|
||||
- AnomalousPositronics
|
||||
- !type:CharacterTraitRequirement
|
||||
inverted: true
|
||||
traits:
|
||||
- LowDampening
|
||||
- !type:CharacterItemGroupRequirement
|
||||
group: TraitsMachine
|
||||
functions:
|
||||
- !type:TraitAddPsionics
|
||||
psionicPowers:
|
||||
- HighDampening
|
||||
|
||||
- type: trait
|
||||
id: DispelPower
|
||||
category: Mental
|
||||
points: -4
|
||||
requirements:
|
||||
- !type:CharacterLogicOrRequirement
|
||||
requirements:
|
||||
- !type:CharacterSpeciesRequirement
|
||||
species:
|
||||
- Shadowkin # Innate Psionics
|
||||
- !type:CharacterTraitRequirement
|
||||
traits:
|
||||
- LatentPsychic
|
||||
- !type:CharacterJobRequirement
|
||||
jobs:
|
||||
- Chaplain
|
||||
- Librarian
|
||||
- ForensicMantis
|
||||
- !type:CharacterLogicOrRequirement
|
||||
requirements:
|
||||
- !type:CharacterSpeciesRequirement
|
||||
inverted: true
|
||||
species:
|
||||
- IPC
|
||||
- !type:CharacterTraitRequirement
|
||||
traits:
|
||||
- AnomalousPositronics
|
||||
- !type:CharacterTraitRequirement
|
||||
inverted: true
|
||||
traits:
|
||||
- ShadowkinBlackeye
|
||||
- !type:CharacterJobRequirement
|
||||
inverted: true
|
||||
jobs:
|
||||
- ResearchDirector
|
||||
- !type:CharacterItemGroupRequirement
|
||||
group: TraitsMachine
|
||||
functions:
|
||||
- !type:TraitAddPsionics
|
||||
psionicPowers:
|
||||
- DispelPower
|
||||
|
||||
- type: trait
|
||||
id: MetapsionicPower
|
||||
category: Mental
|
||||
points: -2
|
||||
requirements:
|
||||
- !type:CharacterLogicOrRequirement
|
||||
requirements:
|
||||
- !type:CharacterSpeciesRequirement
|
||||
species:
|
||||
- Shadowkin # Innate Psionics
|
||||
- !type:CharacterTraitRequirement
|
||||
traits:
|
||||
- LatentPsychic
|
||||
- !type:CharacterJobRequirement
|
||||
jobs:
|
||||
- Chaplain
|
||||
- Librarian
|
||||
- !type:CharacterLogicOrRequirement
|
||||
requirements:
|
||||
- !type:CharacterSpeciesRequirement
|
||||
inverted: true
|
||||
species:
|
||||
- IPC
|
||||
- !type:CharacterTraitRequirement
|
||||
traits:
|
||||
- AnomalousPositronics
|
||||
- !type:CharacterTraitRequirement
|
||||
inverted: true
|
||||
traits:
|
||||
- ShadowkinBlackeye
|
||||
- !type:CharacterJobRequirement
|
||||
inverted: true
|
||||
jobs:
|
||||
- ResearchDirector
|
||||
- ForensicMantis
|
||||
- !type:CharacterItemGroupRequirement
|
||||
group: TraitsMachine
|
||||
functions:
|
||||
- !type:TraitAddPsionics
|
||||
psionicPowers:
|
||||
- MetapsionicPower
|
||||
|
||||
- type: trait
|
||||
id: XenoglossyPower
|
||||
category: Mental
|
||||
points: -10
|
||||
requirements:
|
||||
- !type:CharacterLogicOrRequirement
|
||||
requirements:
|
||||
- !type:CharacterSpeciesRequirement
|
||||
species:
|
||||
- Shadowkin # Innate Psionics
|
||||
- !type:CharacterTraitRequirement
|
||||
traits:
|
||||
- LatentPsychic
|
||||
- NaturalTelepath
|
||||
- !type:CharacterJobRequirement
|
||||
jobs:
|
||||
- Chaplain
|
||||
- ResearchDirector
|
||||
- ForensicMantis
|
||||
- !type:CharacterLogicOrRequirement
|
||||
requirements:
|
||||
- !type:CharacterSpeciesRequirement
|
||||
inverted: true
|
||||
species:
|
||||
- IPC
|
||||
- !type:CharacterTraitRequirement
|
||||
traits:
|
||||
- AnomalousPositronics
|
||||
- !type:CharacterTraitRequirement
|
||||
inverted: true
|
||||
traits:
|
||||
- ShadowkinBlackeye
|
||||
- !type:CharacterJobRequirement
|
||||
inverted: true
|
||||
jobs:
|
||||
- Librarian
|
||||
- !type:CharacterItemGroupRequirement
|
||||
group: TraitsMachine
|
||||
functions:
|
||||
- !type:TraitAddPsionics
|
||||
psionicPowers:
|
||||
- XenoglossyPower
|
||||
|
||||
- type: trait
|
||||
id: PsychognomyPower
|
||||
category: Mental
|
||||
points: -1
|
||||
requirements:
|
||||
- !type:CharacterLogicOrRequirement
|
||||
requirements:
|
||||
- !type:CharacterSpeciesRequirement
|
||||
species:
|
||||
- Shadowkin # Innate Psionics
|
||||
- !type:CharacterTraitRequirement
|
||||
traits:
|
||||
- LatentPsychic
|
||||
- NaturalTelepath
|
||||
- !type:CharacterJobRequirement
|
||||
jobs:
|
||||
- Chaplain
|
||||
- ResearchDirector
|
||||
- ForensicMantis
|
||||
- Librarian
|
||||
- !type:CharacterLogicOrRequirement
|
||||
requirements:
|
||||
- !type:CharacterSpeciesRequirement
|
||||
inverted: true
|
||||
species:
|
||||
- IPC
|
||||
- !type:CharacterTraitRequirement
|
||||
traits:
|
||||
- AnomalousPositronics
|
||||
- !type:CharacterItemGroupRequirement
|
||||
group: TraitsMachine
|
||||
- !type:CharacterTraitRequirement
|
||||
inverted: true
|
||||
traits:
|
||||
- ShadowkinBlackeye
|
||||
functions:
|
||||
- !type:TraitAddPsionics
|
||||
psionicPowers:
|
||||
- PsychognomyPower
|
||||
|
||||
- type: trait
|
||||
id: HealingWordPower
|
||||
category: Mental
|
||||
points: -6
|
||||
requirements:
|
||||
- !type:CharacterLogicOrRequirement
|
||||
requirements:
|
||||
- !type:CharacterSpeciesRequirement
|
||||
species:
|
||||
- Shadowkin # Innate Psionics
|
||||
- !type:CharacterTraitRequirement
|
||||
traits:
|
||||
- LatentPsychic
|
||||
- !type:CharacterJobRequirement
|
||||
jobs:
|
||||
- Librarian
|
||||
- ForensicMantis
|
||||
- ResearchDirector
|
||||
- !type:CharacterLogicOrRequirement
|
||||
requirements:
|
||||
- !type:CharacterSpeciesRequirement
|
||||
inverted: true
|
||||
species:
|
||||
- IPC
|
||||
- !type:CharacterTraitRequirement
|
||||
traits:
|
||||
- AnomalousPositronics
|
||||
- !type:CharacterTraitRequirement
|
||||
inverted: true
|
||||
traits:
|
||||
- ShadowkinBlackeye
|
||||
- !type:CharacterJobRequirement
|
||||
inverted: true
|
||||
jobs:
|
||||
- Chaplain
|
||||
- !type:CharacterItemGroupRequirement
|
||||
group: TraitsMachine
|
||||
functions:
|
||||
- !type:TraitAddPsionics
|
||||
psionicPowers:
|
||||
- HealingWordPower
|
||||
@@ -207,85 +207,6 @@
|
||||
- type: Singer
|
||||
proto: HarpySingerAll
|
||||
|
||||
- type: trait
|
||||
id: LatentPsychic
|
||||
category: Mental
|
||||
points: -4
|
||||
functions:
|
||||
- !type:TraitAddComponent
|
||||
components:
|
||||
- type: Psionic
|
||||
requirements:
|
||||
- !type:CharacterJobRequirement
|
||||
inverted: true
|
||||
jobs:
|
||||
- Borg
|
||||
- MedicalBorg
|
||||
- ResearchDirector
|
||||
- ForensicMantis
|
||||
- Chaplain
|
||||
- Librarian
|
||||
- !type:CharacterLogicOrRequirement
|
||||
requirements:
|
||||
- !type:CharacterSpeciesRequirement
|
||||
inverted: true
|
||||
species:
|
||||
- IPC
|
||||
- !type:CharacterTraitRequirement
|
||||
traits:
|
||||
- AnomalousPositronics
|
||||
- !type:CharacterLogicOrRequirement
|
||||
requirements:
|
||||
- !type:CharacterSpeciesRequirement
|
||||
inverted: true
|
||||
species:
|
||||
- Shadowkin
|
||||
- !type:CharacterTraitRequirement
|
||||
inverted: true
|
||||
traits:
|
||||
- PsionicInsulation
|
||||
- !type:CharacterItemGroupRequirement
|
||||
group: TraitsMachine
|
||||
|
||||
- type: trait
|
||||
id: PsionicInsulation
|
||||
category: Mental
|
||||
points: -10 #Buy a significant disability to get this.
|
||||
functions:
|
||||
- !type:TraitAddComponent
|
||||
components:
|
||||
- type: PsionicInsulation
|
||||
- type: Mindbroken
|
||||
requirements:
|
||||
- !type:CharacterJobRequirement
|
||||
inverted: true
|
||||
jobs:
|
||||
- Borg
|
||||
- MedicalBorg
|
||||
- ResearchDirector
|
||||
- ForensicMantis
|
||||
- Chaplain
|
||||
- Librarian
|
||||
- !type:CharacterLogicOrRequirement
|
||||
requirements:
|
||||
- !type:CharacterSpeciesRequirement
|
||||
inverted: true
|
||||
species:
|
||||
- IPC
|
||||
- !type:CharacterTraitRequirement
|
||||
traits:
|
||||
- AnomalousPositronics
|
||||
- !type:CharacterTraitRequirement
|
||||
inverted: true
|
||||
traits:
|
||||
- LatentPsychic
|
||||
- !type:CharacterLogicOrRequirement
|
||||
requirements:
|
||||
- !type:CharacterSpeciesRequirement
|
||||
inverted: true
|
||||
species:
|
||||
- Shadowkin
|
||||
|
||||
- type: trait
|
||||
id: NaturalTelepath
|
||||
category: Mental
|
||||
|
||||
Reference in New Issue
Block a user