forked from tgstation/tgstation
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Moved some of the old pipe files into unused.
Explosions will delay a bit longer before allowing powernet rebuilds. Removed the Ionstorm Command reports at Urist's request, he said he would add something later. Added dust storms to meteor mode. Fixed most of the runtimes in the latest log. Wizards mind_transfer now needs his robes, this prevents the constant body swap mess. Z 1 lost all of its areas sometime in the last two revs. I think I got everything back in place but would not mind if a mapper took a look. git-svn-id: http://tgstation13.googlecode.com/svn/trunk@2037 316c924e-a436-60f5-8080-3fe189b3f50e
- Loading branch information
mport2004@gmail.com
committed
Aug 22, 2011
1 parent
ce93ef9
commit 6b88250
Showing
27 changed files
with
9,012 additions
and
7,222 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,72 @@ | ||
/obj/hivebot/tele//this still needs work | ||
name = "Beacon" | ||
desc = "Some odd beacon thing" | ||
icon = 'Hivebot.dmi' | ||
icon_state = "def_radar-off" | ||
health = 200 | ||
task = "thinking" | ||
aggressive = 0 | ||
wanderer = 0 | ||
armor = 5 | ||
|
||
var | ||
bot_type = "norm" | ||
bot_amt = 10 | ||
spawn_delay = 600 | ||
set_spawn = 0 | ||
auto_spawn = 1 | ||
proc | ||
warpbots() | ||
|
||
|
||
New() | ||
..() | ||
var/datum/effects/system/harmless_smoke_spread/smoke = new /datum/effects/system/harmless_smoke_spread() | ||
smoke.set_up(5, 0, src.loc) | ||
smoke.start() | ||
for(var/mob/O in viewers(src, null)) | ||
O.show_message("\red <B>The [src] warps in!</B>", 1) | ||
playsound(src.loc, 'EMPulse.ogg', 25, 1) | ||
if(auto_spawn) | ||
spawn(spawn_delay) | ||
warpbots() | ||
|
||
|
||
warpbots() | ||
icon_state = "def_radar" | ||
for(var/mob/O in viewers(src, null)) | ||
O.show_message("\red The [src] turns on!", 1) | ||
while(bot_amt > 0) | ||
bot_amt-- | ||
switch(bot_type) | ||
if("norm") | ||
new /obj/hivebot(get_turf(src)) | ||
if("range") | ||
new /obj/hivebot/range(get_turf(src)) | ||
if("rapid") | ||
new /obj/hivebot/range/rapid(get_turf(src)) | ||
spawn(100) | ||
del(src) | ||
return | ||
|
||
|
||
process() | ||
if(set_spawn) | ||
warpbots() | ||
..() | ||
|
||
|
||
/obj/hivebot/tele/massive | ||
bot_type = "norm" | ||
bot_amt = 30 | ||
auto_spawn = 0 | ||
|
||
|
||
/obj/hivebot/tele/range | ||
bot_type = "range" | ||
bot_amt = 10 | ||
|
||
|
||
/obj/hivebot/tele/rapid | ||
bot_type = "rapid" | ||
bot_amt = 10 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
/obj/item/weapon/melee/cultblade | ||
name = "Cult Blade" | ||
desc = "An arcane weapon wielded by the followers of Nar-Sie" | ||
icon_state = "cultblade" | ||
item_state = "cultblade" | ||
flags = FPRINT | ONBELT | TABLEPASS | ||
force = 40 | ||
throwforce = 10 | ||
|
||
|
||
|
||
/obj/item/clothing/head/culthood | ||
name = "cult hood" | ||
icon_state = "culthood" | ||
desc = "A hood worn by the followers of Nar-Sie." | ||
flags = FPRINT|TABLEPASS|HEADSPACE|HEADCOVERSEYES | ||
armor = list(melee = 30, bullet = 10, laser = 5, taser = 5, bomb = 0, bio = 0, rad = 0) | ||
|
||
|
||
|
||
/obj/item/clothing/suit/cultrobes | ||
name = "cult robes" | ||
desc = "A set of armored robes worn by the followers of Nar-Sie" | ||
icon_state = "cultrobes" | ||
item_state = "cultrobes" | ||
flags = FPRINT | TABLEPASS | ONESIZEFITSALL | ||
body_parts_covered = UPPER_TORSO|LOWER_TORSO|LEGS|ARMS | ||
armor = list(melee = 50, bullet = 30, laser = 50, taser = 20, bomb = 25, bio = 10, rad = 0) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.