mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-07-21 04:57:57 +01:00
Fixes the font issues, removes 3 mutations R.I.P
This commit is contained in:
@@ -18,9 +18,6 @@
|
||||
#define STEALTH "Cloak Of Darkness"
|
||||
#define CHAMELEON "Chameleon"
|
||||
#define WACKY "Wacky"
|
||||
#define JOKE "Joke"
|
||||
#define VINETA "Vineta"
|
||||
#define PAPYRUS "Papyrus"
|
||||
#define MUT_MUTE "Mute"
|
||||
#define SMILE "Smile"
|
||||
#define UNINTELLIGABLE "Unintelligable"
|
||||
@@ -64,7 +61,7 @@
|
||||
#define DNA_FACIAL_HAIR_STYLE_BLOCK 6
|
||||
#define DNA_HAIR_STYLE_BLOCK 7
|
||||
|
||||
#define DNA_STRUC_ENZYMES_BLOCKS 26
|
||||
#define DNA_STRUC_ENZYMES_BLOCKS 23
|
||||
#define DNA_UNIQUE_ENZYMES_LEN 32
|
||||
|
||||
//Transformation proc stuff
|
||||
|
||||
@@ -9,40 +9,6 @@
|
||||
message = "<span class='sans'>[message]</span>"
|
||||
return message
|
||||
|
||||
/datum/mutation/human/joke
|
||||
name = "Joke"
|
||||
quality = MINOR_NEGATIVE
|
||||
text_gain_indication = "<span class='jokerman'>You feel an off sensation in your voicebox.</span>"
|
||||
text_lose_indication = "<span class='notice'>The off sensation passes.</span>"
|
||||
|
||||
/datum/mutation/human/joke/say_mod(var/message)
|
||||
if(message)
|
||||
message = "<span class='jokerman'>[message]</span>"
|
||||
return message
|
||||
|
||||
/datum/mutation/human/papyrus
|
||||
name = "Papyrus"
|
||||
quality = MINOR_NEGATIVE
|
||||
text_gain_indication = "<span class='papyrus'>You feel an off sensation in your voicebox.</span>"
|
||||
text_lose_indication = "<span class='notice'>The off sensation passes.</span>"
|
||||
|
||||
/datum/mutation/human/papyrus/say_mod(var/message)
|
||||
if(message)
|
||||
message = "<span class='papyrus'>[message]</span>"
|
||||
return message
|
||||
|
||||
/datum/mutation/human/vineta
|
||||
name = "Vineta"
|
||||
quality = MINOR_NEGATIVE
|
||||
text_gain_indication = "<span class='vineta'>You feel an off sensation in your voicebox.</span>"
|
||||
text_lose_indication = "<span class='notice'>The off sensation passes.</span>"
|
||||
|
||||
/datum/mutation/human/vineta/say_mod(var/message)
|
||||
if(message)
|
||||
message = "<span class='vineta'>[message]</span>"
|
||||
return message
|
||||
|
||||
|
||||
/datum/mutation/human/mute
|
||||
name = "Mute"
|
||||
quality = NEGATIVE
|
||||
|
||||
@@ -288,42 +288,6 @@
|
||||
..()
|
||||
add_mutations.Add(mutations_list[WACKY])
|
||||
|
||||
/obj/item/weapon/dnainjector/antijoke
|
||||
name = "\improper DNA injector (Anti-joke)"
|
||||
New()
|
||||
..()
|
||||
remove_mutations.Add(mutations_list[JOKE])
|
||||
|
||||
/obj/item/weapon/dnainjector/jokemut
|
||||
name = "\improper DNA injector (Joke)"
|
||||
New()
|
||||
..()
|
||||
add_mutations.Add(mutations_list[JOKE])
|
||||
|
||||
/obj/item/weapon/dnainjector/antipapyrus
|
||||
name = "\improper DNA injector (Anti-Papyrus)"
|
||||
New()
|
||||
..()
|
||||
remove_mutations.Add(mutations_list[PAPYRUS])
|
||||
|
||||
/obj/item/weapon/dnainjector/papyrusmut
|
||||
name = "\improper DNA injector (Papyrus)"
|
||||
New()
|
||||
..()
|
||||
add_mutations.Add(mutations_list[PAPYRUS])
|
||||
|
||||
/obj/item/weapon/dnainjector/antivineta
|
||||
name = "\improper DNA injector (Anti-Vineta)"
|
||||
New()
|
||||
..()
|
||||
remove_mutations.Add(mutations_list[VINETA])
|
||||
|
||||
/obj/item/weapon/dnainjector/vinetamut
|
||||
name = "\improper DNA injector (Vineta)"
|
||||
New()
|
||||
..()
|
||||
add_mutations.Add(mutations_list[VINETA])
|
||||
|
||||
/obj/item/weapon/dnainjector/antimute
|
||||
name = "\improper DNA injector (Anti-Mute)"
|
||||
New()
|
||||
|
||||
@@ -68,10 +68,7 @@ h1.alert, h2.alert {color: #000000;}
|
||||
.interface {color: #330033;}
|
||||
|
||||
.sans {font-family: "Comic Sans MS", cursive, sans-serif;}
|
||||
.papyrus {font-family: "Papyrus", cursive, sans-serif;}
|
||||
.vineta {font-family: "Vineta BT", cursive, sans-serif;}
|
||||
.jokerman {font-family: "Jokerman", cursive, sans-serif;}
|
||||
.robot {font-family: "OCR A Extended", cursive, sans-serif;}
|
||||
.robot {font-family: "Courier New", cursive, sans-serif;}
|
||||
|
||||
BIG IMG.icon {width: 32px; height: 32px;}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user