diff --git a/code/datums/gamemode/role/weeaboo.dm b/code/datums/gamemode/role/weeaboo.dm
index 6baa00d45a1..1dd51b9b291 100644
--- a/code/datums/gamemode/role/weeaboo.dm
+++ b/code/datums/gamemode/role/weeaboo.dm
@@ -6,6 +6,7 @@
logo_state = "weeaboo-logo"
refund_value = BASE_SOLO_REFUND
wikiroute = WEEABOO
+ disallow_job = TRUE
restricted_jobs = list("Trader") //Spawns in space
/datum/role/weeaboo/OnPostSetup()
@@ -33,7 +34,7 @@
to_chat(antag.current, "
You are a Space Weeaboo.
The crew has insulted glorious Space Nippon. Equipped with your authentic Space Kimono, your Space Katana that was folded over a million times, and your honobru bushido code, you must implore them to reconsider!")
to_chat(antag.current, "Remember that guns are not honobru, and that your katana has an ancient power imbued within it. Take a closer look at it if you've forgotten how it works.")
-
+ to_chat(antag.current, "(Wiki Guide)")
//Weeb Items
@@ -201,8 +202,8 @@
if(H.mind.GetRole(WEEABOO))
var/list/choices = list(
- list("Make Shuriken", "radial_cook"),
- list("Charge Sword", "radial_zap"),
+ list("Make Shuriken", "radial_cook", "Fabricate a new shuriken. Cost: 1000."),
+ list("Charge Sword", "radial_zap", "Reset the cooldown on your blade's teleport. Cost: 40 per second."),
)
var/event/menu_event = new(owner = user)
menu_event.Add(src, "radial_check_handler")
diff --git a/code/modules/client/preferences.dm b/code/modules/client/preferences.dm
index 213ec92daff..ac5df9d199f 100644
--- a/code/modules/client/preferences.dm
+++ b/code/modules/client/preferences.dm
@@ -75,6 +75,7 @@ var/list/role_wiki=list(
ROLE_VOXRAIDER = "Vox_Raider",
ROLE_WIZARD = "Wizard",
ROLE_GRINCH = "Grinch",
+ WEEABOO = "Crazed_Weeaboo",
ROLE_MINOR = "Minor_Roles",
)