diff --git a/code/modules/mob/living/carbon/human/species/drask.dm b/code/modules/mob/living/carbon/human/species/drask.dm
deleted file mode 100644
index 59789f533f6..00000000000
--- a/code/modules/mob/living/carbon/human/species/drask.dm
+++ /dev/null
@@ -1,100 +0,0 @@
-/datum/species/drask
- name = "Drask"
- name_plural = "Drask"
- icobase = 'icons/mob/human_races/r_drask.dmi'
- deform = 'icons/mob/human_races/r_drask.dmi'
- path = /mob/living/carbon/human/drask
- default_language = "Galactic Common"
- language = "Orluum"
- unarmed_type = /datum/unarmed_attack/punch
- eyes = "drask_eyes_s"
- darksight = 5
-
- speech_sounds = list('sound/voice/DraskTalk.ogg')
- speech_chance = 20
- male_scream_sound = 'sound/voice/DraskTalk2.ogg'
- female_scream_sound = 'sound/voice/DraskTalk2.ogg'
-
- burn_mod = 2
- //exotic_blood = "cryoxadone"
- body_temperature = 273
-
- blurb = "Hailing from Hoorlm, planet outside what is usually considered a habitable \
- orbit, the Drask evolved to live in extreme cold. Their strange bodies seem \
- to operate better the colder their surroundings are, and can regenerate rapidly \
- when breathing supercooled gas.
On their homeworld, the Drask live long lives \
- in their labyrinthine settlements, carved out beneath Hoorlm's icy surface, where the air \
- is of breathable density."
-
- suicide_messages = list(
- "is self-warming with friction!",
- "is jamming fingers through their big eyes!",
- "is sucking in warm air!",
- "is holding their breath!")
-
- flags = IS_WHITELISTED | HAS_LIPS
- clothing_flags = HAS_UNDERWEAR | HAS_UNDERSHIRT
- bodyflags = FEET_CLAWS | HAS_SKIN_TONE
- dietflags = DIET_OMNI
-
- cold_level_1 = -1 //Default 260 - Lower is better
- cold_level_2 = -1 //Default 200
- cold_level_3 = -1 //Default 120
- cold_env_multiplier = -1
-
- heat_level_1 = 300 //Default 360 - Higher is better
- heat_level_2 = 340 //Default 400
- heat_level_3 = 400 //Default 460
- heat_level_3_breathe = 600 //Default 1000
- hot_env_multiplier = 2
-
- flesh_color = "#a3d4eb"
- reagent_tag = PROCESS_ORG
- base_color = "#a3d4eb"
- blood_color = "#a3d4eb"
- butt_sprite = "drask"
-
- has_organ = list(
- "heart" = /obj/item/organ/internal/heart/drask,
- "lungs" = /obj/item/organ/internal/lungs/drask,
- "metabolic strainer" = /obj/item/organ/internal/liver/drask,
- "eyes" = /obj/item/organ/internal/eyes/drask,
- "brain" = /obj/item/organ/internal/brain/drask
- )
-
-
-/datum/species/drask/handle_temperature(datum/gas_mixture/breath, var/mob/living/carbon/human/H)
- if( abs(310.15 - breath.temperature) > 50)
- if(H.status_flags & GODMODE) return 1 //godmode
- if(breath.temperature < 260)
- if(prob(20))
- to_chat(H, " You feel an invigorating coldness in your lungs!")
- if(breath.temperature > heat_level_1)
- if(prob(20))
- to_chat(H, "You feel your face burning and a searing heat in your lungs!")
-
- switch(breath.temperature)
-
- if(-INFINITY to 60)
- H.adjustFireLoss(cold_env_multiplier*COLD_GAS_DAMAGE_LEVEL_3*0.5) //3 points healed, applied every 4 ticks
- H.adjustBruteLoss(cold_env_multiplier*COLD_GAS_DAMAGE_LEVEL_3)
- H.throw_alert("temp", /obj/screen/alert/cold/drask, 3)
-
- if(61 to 200)
- H.adjustFireLoss(cold_env_multiplier*COLD_GAS_DAMAGE_LEVEL_2*0.5) //1.5 healed every 4 ticks
- H.adjustBruteLoss(cold_env_multiplier*COLD_GAS_DAMAGE_LEVEL_2)
- H.throw_alert("temp", /obj/screen/alert/cold/drask, 2)
-
- if(201 to 260)
- H.adjustFireLoss(cold_env_multiplier*COLD_GAS_DAMAGE_LEVEL_1*0.5) //0.5 healed every 4 ticks
- H.adjustBruteLoss(cold_env_multiplier*COLD_GAS_DAMAGE_LEVEL_1)
- H.throw_alert("temp", /obj/screen/alert/cold/drask, 1)
-
- if(heat_level_1 to heat_level_2)
- H.apply_damage(hot_env_multiplier*HEAT_GAS_DAMAGE_LEVEL_1, BURN, "head", used_weapon = "Excessive Heat")
-
- if(heat_level_2 to heat_level_3_breathe)
- H.apply_damage(hot_env_multiplier*HEAT_GAS_DAMAGE_LEVEL_2, BURN, "head", used_weapon = "Excessive Heat")
-
- if(heat_level_3_breathe to INFINITY)
- H.apply_damage(hot_env_multiplier*HEAT_GAS_DAMAGE_LEVEL_3, BURN, "head", used_weapon = "Excessive Heat")
diff --git a/code/modules/mob/living/carbon/human/species/station.dm b/code/modules/mob/living/carbon/human/species/station.dm
index 0cef74044ce..924a7c03bf4 100644
--- a/code/modules/mob/living/carbon/human/species/station.dm
+++ b/code/modules/mob/living/carbon/human/species/station.dm
@@ -909,3 +909,103 @@
if(H)
H.update_hair()
H.update_fhair()
+
+/datum/species/drask
+ name = "Drask"
+ name_plural = "Drask"
+ icobase = 'icons/mob/human_races/r_drask.dmi'
+ deform = 'icons/mob/human_races/r_drask.dmi'
+ path = /mob/living/carbon/human/drask
+ default_language = "Galactic Common"
+ language = "Orluum"
+ unarmed_type = /datum/unarmed_attack/punch
+ eyes = "drask_eyes_s"
+ darksight = 5
+
+ speech_sounds = list('sound/voice/DraskTalk.ogg')
+ speech_chance = 20
+ male_scream_sound = 'sound/voice/DraskTalk2.ogg'
+ female_scream_sound = 'sound/voice/DraskTalk2.ogg'
+
+ burn_mod = 2
+ //exotic_blood = "cryoxadone"
+ body_temperature = 273
+
+ blurb = "Hailing from Hoorlm, planet outside what is usually considered a habitable \
+ orbit, the Drask evolved to live in extreme cold. Their strange bodies seem \
+ to operate better the colder their surroundings are, and can regenerate rapidly \
+ when breathing supercooled gas.
On their homeworld, the Drask live long lives \
+ in their labyrinthine settlements, carved out beneath Hoorlm's icy surface, where the air \
+ is of breathable density."
+
+ suicide_messages = list(
+ "is self-warming with friction!",
+ "is jamming fingers through their big eyes!",
+ "is sucking in warm air!",
+ "is holding their breath!")
+
+ flags = IS_WHITELISTED | HAS_LIPS
+ clothing_flags = HAS_UNDERWEAR | HAS_UNDERSHIRT
+ bodyflags = FEET_CLAWS | HAS_SKIN_TONE
+ dietflags = DIET_OMNI
+
+ cold_level_1 = -1 //Default 260 - Lower is better
+ cold_level_2 = -1 //Default 200
+ cold_level_3 = -1 //Default 120
+ cold_env_multiplier = -1
+
+ heat_level_1 = 300 //Default 360 - Higher is better
+ heat_level_2 = 340 //Default 400
+ heat_level_3 = 400 //Default 460
+ heat_level_3_breathe = 600 //Default 1000
+ hot_env_multiplier = 2
+
+ flesh_color = "#a3d4eb"
+ reagent_tag = PROCESS_ORG
+ base_color = "#a3d4eb"
+ blood_color = "#a3d4eb"
+ butt_sprite = "drask"
+
+ has_organ = list(
+ "heart" = /obj/item/organ/internal/heart/drask,
+ "lungs" = /obj/item/organ/internal/lungs/drask,
+ "metabolic strainer" = /obj/item/organ/internal/liver/drask,
+ "eyes" = /obj/item/organ/internal/eyes/drask,
+ "brain" = /obj/item/organ/internal/brain/drask
+ )
+
+/datum/species/drask/handle_temperature(datum/gas_mixture/breath, var/mob/living/carbon/human/H)
+ if( abs(310.15 - breath.temperature) > 50)
+ if(H.status_flags & GODMODE) return 1 //godmode
+ if(breath.temperature < 260)
+ if(prob(20))
+ to_chat(H, " You feel an invigorating coldness in your lungs!")
+ if(breath.temperature > heat_level_1)
+ if(prob(20))
+ to_chat(H, "You feel your face burning and a searing heat in your lungs!")
+
+ switch(breath.temperature)
+
+ if(-INFINITY to 60)
+ H.adjustFireLoss(cold_env_multiplier*COLD_GAS_DAMAGE_LEVEL_3*0.5) //3 points healed, applied every 4 ticks
+ H.adjustBruteLoss(cold_env_multiplier*COLD_GAS_DAMAGE_LEVEL_3)
+ H.throw_alert("temp", /obj/screen/alert/cold/drask, 3)
+
+ if(61 to 200)
+ H.adjustFireLoss(cold_env_multiplier*COLD_GAS_DAMAGE_LEVEL_2*0.5) //1.5 healed every 4 ticks
+ H.adjustBruteLoss(cold_env_multiplier*COLD_GAS_DAMAGE_LEVEL_2)
+ H.throw_alert("temp", /obj/screen/alert/cold/drask, 2)
+
+ if(201 to 260)
+ H.adjustFireLoss(cold_env_multiplier*COLD_GAS_DAMAGE_LEVEL_1*0.5) //0.5 healed every 4 ticks
+ H.adjustBruteLoss(cold_env_multiplier*COLD_GAS_DAMAGE_LEVEL_1)
+ H.throw_alert("temp", /obj/screen/alert/cold/drask, 1)
+
+ if(heat_level_1 to heat_level_2)
+ H.apply_damage(hot_env_multiplier*HEAT_GAS_DAMAGE_LEVEL_1, BURN, "head", used_weapon = "Excessive Heat")
+
+ if(heat_level_2 to heat_level_3_breathe)
+ H.apply_damage(hot_env_multiplier*HEAT_GAS_DAMAGE_LEVEL_2, BURN, "head", used_weapon = "Excessive Heat")
+
+ if(heat_level_3_breathe to INFINITY)
+ H.apply_damage(hot_env_multiplier*HEAT_GAS_DAMAGE_LEVEL_3, BURN, "head", used_weapon = "Excessive Heat")
diff --git a/paradise.dme b/paradise.dme
index 5c300cf1936..d3589defcf1 100644
--- a/paradise.dme
+++ b/paradise.dme
@@ -1527,7 +1527,6 @@
#include "code\modules\mob\living\carbon\human\interactive\prefabs.dm"
#include "code\modules\mob\living\carbon\human\species\abductor.dm"
#include "code\modules\mob\living\carbon\human\species\apollo.dm"
-#include "code\modules\mob\living\carbon\human\species\drask.dm"
#include "code\modules\mob\living\carbon\human\species\golem.dm"
#include "code\modules\mob\living\carbon\human\species\monkey.dm"
#include "code\modules\mob\living\carbon\human\species\plasmaman.dm"