Magical contraband type (#35254)

* init

* really ponderous
This commit is contained in:
ScarKy0
2025-02-18 01:21:49 +01:00
committed by GitHub
parent 6b8ac708d6
commit 918767bcc5
12 changed files with 25 additions and 11 deletions

View File

@@ -4,6 +4,7 @@ contraband-examine-text-Restricted-department = [color=yellow]This item is restr
contraband-examine-text-Major = [color=red]This item is considered major contraband.[/color] contraband-examine-text-Major = [color=red]This item is considered major contraband.[/color]
contraband-examine-text-GrandTheft = [color=red]This item is a highly valuable target for Syndicate agents![/color] contraband-examine-text-GrandTheft = [color=red]This item is a highly valuable target for Syndicate agents![/color]
contraband-examine-text-Syndicate = [color=crimson]This item is highly illegal Syndicate contraband![/color] contraband-examine-text-Syndicate = [color=crimson]This item is highly illegal Syndicate contraband![/color]
contraband-examine-text-Magical = [color=#b337b3]This item is highly illegal Magical contraband![/color]
contraband-examine-text-avoid-carrying-around = [color=red][italic]You probably want to avoid visibly carrying this around without a good reason.[/italic][/color] contraband-examine-text-avoid-carrying-around = [color=red][italic]You probably want to avoid visibly carrying this around without a good reason.[/italic][/color]
contraband-examine-text-in-the-clear = [color=green][italic]You should be in the clear to visibly carry this around.[/italic][/color] contraband-examine-text-in-the-clear = [color=green][italic]You should be in the clear to visibly carry this around.[/italic][/color]

View File

@@ -700,7 +700,7 @@
sprite: Clothing/Belt/suspenders_black.rsi sprite: Clothing/Belt/suspenders_black.rsi
- type: entity - type: entity
parent: ClothingBeltStorageBase parent: [ ClothingBeltStorageBase, BaseMagicalContraband ]
id: ClothingBeltWand id: ClothingBeltWand
name: wand belt name: wand belt
description: A belt designed to hold various rods of power. A veritable fanny pack of exotic magic. description: A belt designed to hold various rods of power. A veritable fanny pack of exotic magic.

View File

@@ -580,7 +580,7 @@
- type: entity - type: entity
abstract: true abstract: true
parent: ClothingHeadBase parent: [ ClothingHeadBase, BaseMagicalContraband ]
id: ClothingHeadHatWizardBase id: ClothingHeadHatWizardBase
components: components:
- type: WizardClothes - type: WizardClothes

View File

@@ -677,7 +677,7 @@
#Wizard Hardsuit #Wizard Hardsuit
- type: entity - type: entity
parent: ClothingOuterHardsuitBase parent: [ ClothingOuterHardsuitBase, BaseMagicalContraband ]
id: ClothingOuterHardsuitWizard id: ClothingOuterHardsuitWizard
name: wizard hardsuit name: wizard hardsuit
description: A bizarre gem-encrusted suit that radiates magical energies. description: A bizarre gem-encrusted suit that radiates magical energies.

View File

@@ -168,7 +168,7 @@
- type: entity - type: entity
abstract: true abstract: true
parent: ClothingOuterBase parent: [ ClothingOuterBase, BaseMagicalContraband ]
id: ClothingOuterWizardBase id: ClothingOuterWizardBase
components: components:
- type: WizardClothes - type: WizardClothes

View File

@@ -1345,7 +1345,7 @@
volume: -10 volume: -10
- type: entity - type: entity
parent: BaseItem parent: [ BaseItem, BaseMagicalContraband ]
id: PonderingOrb id: PonderingOrb
name: pondering orb name: pondering orb
description: Ponderous, man... Really ponderous. description: Ponderous, man... Really ponderous.

View File

@@ -1,7 +1,7 @@
- type: entity - type: entity
id: BaseSpellbook id: BaseSpellbook
name: spellbook name: spellbook
parent: BaseItem parent: [ BaseItem, BaseMagicalContraband ]
abstract: true abstract: true
components: components:
- type: Sprite - type: Sprite
@@ -25,7 +25,7 @@
id: WizardsGrimoire id: WizardsGrimoire
name: wizards grimoire name: wizards grimoire
suffix: Wizard suffix: Wizard
parent: [ BaseItem, StorePresetSpellbook ] parent: [ BaseItem, StorePresetSpellbook, BaseMagicalContraband ]
components: components:
- type: Sprite - type: Sprite
sprite: Objects/Misc/books.rsi sprite: Objects/Misc/books.rsi

View File

@@ -1,7 +1,7 @@
- type: entity - type: entity
id: WeaponStaffBase id: WeaponStaffBase
abstract: true abstract: true
parent: BaseItem parent: [ BaseItem, BaseMagicalContraband ]
components: components:
- type: Sprite - type: Sprite
sprite: Objects/Weapons/Guns/Basic/staves.rsi sprite: Objects/Weapons/Guns/Basic/staves.rsi

View File

@@ -1,7 +1,7 @@
- type: entity - type: entity
id: WeaponWandBase id: WeaponWandBase
abstract: true abstract: true
parent: BaseItem parent: [ BaseItem, BaseMagicalContraband ]
components: components:
- type: Sprite - type: Sprite
sprite: Objects/Weapons/Guns/Basic/wands.rsi sprite: Objects/Weapons/Guns/Basic/wands.rsi

View File

@@ -1,4 +1,12 @@
# non-stealth syndicate stuff # any type of magical items used by wizards and similiar
- type: entity
id: BaseMagicalContraband
abstract: true
components:
- type: Contraband
severity: Magical
# non-stealth syndicate stuff
- type: entity - type: entity
id: BaseSyndicateContraband id: BaseSyndicateContraband
abstract: true abstract: true

View File

@@ -34,7 +34,7 @@
- type: entity - type: entity
id: AnimationStaff id: AnimationStaff
parent: BaseItem parent: [ BaseItem, BaseMagicalContraband ]
name: staff of animation name: staff of animation
description: Brings inanimate objects to life! description: Brings inanimate objects to life!
components: components:

View File

@@ -25,3 +25,8 @@
- type: contrabandSeverity - type: contrabandSeverity
id: Syndicate id: Syndicate
examineText: contraband-examine-text-Syndicate examineText: contraband-examine-text-Syndicate
# This is magical contraband and not permitted to be used IC.
- type: contrabandSeverity
id: Magical
examineText: contraband-examine-text-Magical