Files
Polaris/code/unused/hivebot/hivebotdefine.dm
elly1989@rocketmail.com 4073ac9b00 Replaced all 'file.extension' references with 'relativepath/file.extension' using a script by thvortex of ss13-daedalus.
All credits to the author for this handy little script.
I Committed the modified python script to tool directory. Although it needs to be in the root folder of your repo to work.

To notice the improved compile times, in dreammaker go to Build > Preferences > and untick "automatically set file_dir for subfolders"

If this commit inteferes with any large projects just revert it, do your thing, then rerun the script. Easy-peasy.

git-svn-id: http://tgstation13.googlecode.com/svn/trunk@4488 316c924e-a436-60f5-8080-3fe189b3f50e
2012-08-18 16:33:40 +00:00

46 lines
1.0 KiB
Plaintext

/mob/living/silicon/hivebot
name = "Robot"
icon = 'icons/mob/hivebot.dmi'
icon_state = "basic"
health = 80
var/health_max = 80
robot_talk_understand = 2
//HUD
var/obj/screen/cells = null
var/obj/screen/inv1 = null
var/obj/screen/inv2 = null
var/obj/screen/inv3 = null
//3 Modules can be activated at any one time.
var/obj/item/weapon/robot_module/module = null
var/module_active = null
var/module_state_1 = null
var/module_state_2 = null
var/module_state_3 = null
var/obj/item/device/radio/radio = null
var/list/req_access = list(access_robotics)
var/energy = 4000
var/energy_max = 4000
var/jetpack = 0
var/mob/living/silicon/hive_mainframe/mainframe = null
var/dependent = 0
var/shell = 1
/mob/living/silicon/hive_mainframe
name = "Robot Mainframe"
voice_name = "synthesized voice"
icon_state = "hive_main"
health = 200
var/health_max = 200
robot_talk_understand = 2
anchored = 1
var/online = 1
var/mob/living/silicon/hivebot = null
var/hivebot_name = null
var/force_mind = 0