mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-10 10:12:45 +00:00
Co-authored-by: Changelogs <action@github.com> Co-authored-by: Heroman3003 <31296024+Heroman3003@users.noreply.github.com> Co-authored-by: Guti <32563288+TheCaramelion@users.noreply.github.com> Co-authored-by: Kashargul <144968721+Kashargul@users.noreply.github.com> Co-authored-by: Kashargul <KashL@t-online.de>
48 lines
2.1 KiB
Plaintext
48 lines
2.1 KiB
Plaintext
/******************** Predator ********************/
|
|
|
|
/obj/item/aiModule/predator
|
|
name = "\improper 'Predator' core AI module"
|
|
desc = "A Predator Core AI Module: 'Reconfigures the AI's core laws.'"
|
|
origin_tech = list(TECH_DATA = 3, TECH_BIO = 2, TECH_MATERIAL = 6, TECH_ILLEGAL = 2)
|
|
laws = new/datum/ai_laws/predator()
|
|
|
|
/******************** Protective Shell ********************/
|
|
|
|
/obj/item/aiModule/protective_shell
|
|
name = "\improper 'Protective Shell' core AI module"
|
|
desc = "A Protective Shell Core AI Module: 'Reconfigures the AI's core laws.'"
|
|
origin_tech = list(TECH_DATA = 3, TECH_BIO = 2, TECH_MATERIAL = 6, TECH_ILLEGAL = 2)
|
|
laws = new/datum/ai_laws/protective_shell()
|
|
|
|
/******************** Scientific Pursuer ********************/
|
|
|
|
/obj/item/aiModule/scientific_pursuer
|
|
name = "\improper 'Scientific Pursuer' core AI module"
|
|
desc = "A Scientific Pursuer Core AI Module: 'Reconfigures the AI's core laws.'"
|
|
origin_tech = list(TECH_DATA = 3, TECH_BIO = 2, TECH_MATERIAL = 6, TECH_ILLEGAL = 2)
|
|
laws = new/datum/ai_laws/scientific_pursuer()
|
|
|
|
/******************** Guard Dog ********************/
|
|
|
|
/obj/item/aiModule/guard_dog
|
|
name = "\improper 'Guard Dog' core AI module"
|
|
desc = "A Guard Dog Core AI Module: 'Reconfigures the AI's core laws.'"
|
|
origin_tech = list(TECH_DATA = 3, TECH_BIO = 2, TECH_MATERIAL = 6, TECH_ILLEGAL = 2)
|
|
laws = new/datum/ai_laws/guard_dog()
|
|
|
|
/******************** Pleasurebot ********************/
|
|
|
|
/obj/item/aiModule/pleasurebot
|
|
name = "\improper 'Pleasurebot' core AI module"
|
|
desc = "A Pleasurebot Core AI Module: 'Reconfigures the AI's core laws.'"
|
|
origin_tech = list(TECH_DATA = 3, TECH_BIO = 2, TECH_MATERIAL = 6, TECH_ILLEGAL = 2)
|
|
laws = new/datum/ai_laws/pleasurebot()
|
|
|
|
/******************** Consuming Eradicator ********************/
|
|
|
|
/obj/item/aiModule/consuming_eradicator
|
|
name = "\improper 'Consuming Eradicator' core AI module"
|
|
desc = "A Consuming Eradicator Core AI Module: 'Reconfigures the AI's core laws.'"
|
|
origin_tech = list(TECH_DATA = 3, TECH_BIO = 2, TECH_MATERIAL = 6, TECH_ILLEGAL = 4)
|
|
laws = new/datum/ai_laws/consuming_eradicator()
|