From 98ea8045ad909b49db3bfc7298c73754c285e42e Mon Sep 17 00:00:00 2001 From: uporotiy Date: Tue, 20 Dec 2011 19:22:21 +0000 Subject: [PATCH] Upped noslip shoes cost to 3 - they're situational, but they're very powerful in the situation they're used in and it's not that hard to facilitate. Captains can't be traitors anymore. This is a placeholder, friday I'll redo that a bit - probably so that captains don't get any traitor equipment (they already have all the everything else for that) and that they can't get steal objectives (re: they already have everything). git-svn-id: http://tgstation13.googlecode.com/svn/trunk@2752 316c924e-a436-60f5-8080-3fe189b3f50e --- code/game/gamemodes/traitor/traitor.dm | 2 +- code/game/objects/devices/PDA/uplink.dm | 6 +++--- code/game/objects/items/weapons/uplinks.dm | 6 +++--- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/code/game/gamemodes/traitor/traitor.dm b/code/game/gamemodes/traitor/traitor.dm index cb6cefc022..1d2904e3dc 100644 --- a/code/game/gamemodes/traitor/traitor.dm +++ b/code/game/gamemodes/traitor/traitor.dm @@ -5,7 +5,7 @@ /datum/game_mode/traitor name = "traitor" config_tag = "traitor" - restricted_jobs = list("Cyborg", "AI", "Security Officer", "Warden", "Detective", "Head of Security")//Approved by headmins for a week test, if you see this it would be nice if you didn't spread it everywhere + restricted_jobs = list("Cyborg", "AI", "Security Officer", "Warden", "Detective", "Head of Security", "Captain") required_players = 0 required_enemies = 1 diff --git a/code/game/objects/devices/PDA/uplink.dm b/code/game/objects/devices/PDA/uplink.dm index 610fcfebe8..a7f25127ba 100644 --- a/code/game/objects/devices/PDA/uplink.dm +++ b/code/game/objects/devices/PDA/uplink.dm @@ -37,7 +37,7 @@ menu_message += "Energy Sword (4)
" menu_message += "
" menu_message += "Chameleon Jumpsuit (3)
" - menu_message += "Syndicate Shoes (2)
" + menu_message += "Syndicate Shoes (3)
" menu_message += "Syndicate Card (3)
" menu_message += "Voice-Changer (4)
" menu_message += "
" @@ -120,8 +120,8 @@ uses -= 3 new /obj/item/clothing/under/chameleon(get_turf(hostpda)) if("shoes") - if (uses >= 2) - uses -= 2 + if (uses >= 3) + uses -= 3 new /obj/item/clothing/shoes/syndigaloshes(get_turf(hostpda)) if("card") if (uses >= 3) diff --git a/code/game/objects/items/weapons/uplinks.dm b/code/game/objects/items/weapons/uplinks.dm index 5c934f2066..6aa931e847 100644 --- a/code/game/objects/items/weapons/uplinks.dm +++ b/code/game/objects/items/weapons/uplinks.dm @@ -40,7 +40,7 @@ SYNDICATE UPLINK dat += "Energy Sword (4)
" dat += "
" dat += "Chameleon Jumpsuit (3)
" - dat += "Syndicate Shoes (2)
" + dat += "Syndicate Shoes (3)
" dat += "Syndicate Card (3)
" dat += "Voice-Changer (4)
" dat += "
" @@ -114,8 +114,8 @@ SYNDICATE UPLINK src.uses -= 3 new /obj/item/clothing/under/chameleon(get_turf(src)) if("shoes") - if (uses >= 2) - uses -= 2 + if (uses >= 3) + uses -= 3 new /obj/item/clothing/shoes/syndigaloshes(get_turf(src)) if("card") if (src.uses >= 3)