diff --git a/code/modules/mob/living/carbon/alien/humanoid/alien_powers.dm b/code/modules/mob/living/carbon/alien/humanoid/alien_powers.dm
index 0a119c8ccfc..3c8a0cb0bc7 100644
--- a/code/modules/mob/living/carbon/alien/humanoid/alien_powers.dm
+++ b/code/modules/mob/living/carbon/alien/humanoid/alien_powers.dm
@@ -122,14 +122,14 @@ Doesn't work on other aliens/AI.*/
if (get_dist(user,M) <= 1)
M.adjustPlasma(amount)
user.adjustPlasma(-amount)
- M << "[user] has transfered [amount] plasma to you."
- user << "You trasfer [amount] plasma to [M]"
+ M << "[user] has transferred [amount] plasma to you."
+ user << "You transfer [amount] plasma to [M]"
else
user << "You need to be closer!"
return
/obj/effect/proc_holder/alien/acid
- name = "Corrossive Acid"
+ name = "Corrosive Acid"
desc = "Drench an object in acid, destroying it over time."
plasma_cost = 200
action_icon_state = "alien_acid"
diff --git a/code/modules/mob/living/carbon/alien/larva/powers.dm b/code/modules/mob/living/carbon/alien/larva/powers.dm
index 642031e8541..cc89dfa95f9 100644
--- a/code/modules/mob/living/carbon/alien/larva/powers.dm
+++ b/code/modules/mob/living/carbon/alien/larva/powers.dm
@@ -1,6 +1,6 @@
/obj/effect/proc_holder/alien/hide
name = "Hide"
- desc = "Allows to hide beneath tables or certain items. Toggled on or off."
+ desc = "Allows aliens to hide beneath tables or certain items. Toggled on or off."
plasma_cost = 0
action_icon_state = "alien_hide"
@@ -15,14 +15,14 @@
"You are now hiding.")
else
user.layer = MOB_LAYER
- user.visible_message("[user.] slowly peaks up from the ground...", \
+ user.visible_message("[user.] slowly peeks up from the ground...", \
"You stop hiding.")
return 1
/obj/effect/proc_holder/alien/larva_evolve
name = "Evolve"
- desc = "Evolve into a fully grown Alien."
+ desc = "Evolve into a higher alien caste."
plasma_cost = 0
action_icon_state = "alien_evolve_larva"
@@ -38,9 +38,9 @@
if(L.amount_grown >= L.max_grown) //TODO ~Carn
L << "You are growing into a beautiful alien! It is time to choose a caste."
L << "There are three to choose from:"
- L << "Hunters are the most agile caste tasked with hunting for hosts. They are faster than a human and can even pounce, but are not much tougher than a drone."
+ L << "Hunters are the most agile caste, tasked with hunting for hosts. They are faster than a human and can even pounce, but are not much tougher than a drone."
L << "Sentinels are tasked with protecting the hive. With their ranged spit, invisibility, and high health, they make formidable guardians and acceptable secondhand hunters."
- L << "Drones are the weakest and slowest of the castes, but can grow into the queen if there is none, and are vital to maintaining a hive with their resin secretion abilities."
+ L << "Drones are the weakest and slowest of the castes, but can grow into a praetorian and then queen if no queen exists, and are vital to maintaining a hive with their resin secretion abilities."
var/alien_caste = alert(L, "Please choose which alien caste you shall belong to.",,"Hunter","Sentinel","Drone")
if(user.incapacitated()) //something happened to us while we were choosing.