Let the miner unite, we won't stop the fight, a collective regime of peace and love.

Mining Cyborgs - Have a unique JACK HAMMER for mining! With included sprites (including mob carrying sprites)

Mining Tools - New sprites for pickaxes (of all types) and shovels. I used minecraft ones for parody sake (also mob carrying sprites will show custom pickaxes sprites and shovel sprites).

Other - Emergency oxygen tanks are now visible on mob carrying sprites (they were simply mislabeled by a Goon long ago).

git-svn-id: http://tgstation13.googlecode.com/svn/trunk@1299 316c924e-a436-60f5-8080-3fe189b3f50e
This commit is contained in:
tronaldnwn@hotmail.com
2011-03-28 08:33:09 +00:00
parent 109526fe83
commit 5f464d460a
5 changed files with 16 additions and 3 deletions

View File

@@ -2521,25 +2521,38 @@ var/list/datum/material_recipe/MATERIAL_RECIPES = list(
flags = FPRINT | TABLEPASS| CONDUCT | ONBELT flags = FPRINT | TABLEPASS| CONDUCT | ONBELT
force = 15.0 force = 15.0
throwforce = 4.0 throwforce = 4.0
item_state = "wrench" item_state = "pickaxe"
w_class = 4.0 w_class = 4.0
m_amt = 50 m_amt = 50
var/digspeed = 40 //moving the delay to an item var so R&D can make improved picks. --NEO var/digspeed = 40 //moving the delay to an item var so R&D can make improved picks. --NEO
silver silver
name = "Silver Pickaxe" name = "Silver Pickaxe"
icon_state = "spickaxe"
item_state = "spickaxe"
digspeed = 30 digspeed = 30
origin_tech = "materials=3" origin_tech = "materials=3"
desc = "This makes no metallurgic sense." desc = "This makes no metallurgic sense."
gold gold
name = "Golden Pickaxe" name = "Golden Pickaxe"
icon_state = "gpickaxe"
item_state = "gpickaxe"
digspeed = 20 digspeed = 20
origin_tech = "materials=4" origin_tech = "materials=4"
desc = "This makes no metallurgic sense." desc = "This makes no metallurgic sense."
jackhammer
name = "Jackhammer"
icon_state = "jackhammer"
item_state = "jackhammer"
digspeed = 20
desc = "You've dig what you dug. Look out for giant lizards."
diamond diamond
name = "Diamond Pickaxe" name = "Diamond Pickaxe"
icon_state = "dpickaxe"
item_state = "dpickaxe"
digspeed = 10 digspeed = 10
origin_tech = "materials=6" origin_tech = "materials=6"
desc = "This makes perfect sense." desc = "This makes perfect sense."
@@ -2553,7 +2566,7 @@ var/list/datum/material_recipe/MATERIAL_RECIPES = list(
flags = FPRINT | TABLEPASS| CONDUCT | ONBELT flags = FPRINT | TABLEPASS| CONDUCT | ONBELT
force = 8.0 force = 8.0
throwforce = 4.0 throwforce = 4.0
item_state = "wrench" item_state = "shovel"
w_class = 3.0 w_class = 3.0
m_amt = 50 m_amt = 50

View File

@@ -133,7 +133,7 @@
/obj/item/weapon/robot_module/miner/New() /obj/item/weapon/robot_module/miner/New()
..() ..()
src.modules += new /obj/item/weapon/pickaxe(src) src.modules += new /obj/item/weapon/pickaxe/jackhammer(src)
src.modules += new /obj/item/weapon/shovel(src) src.modules += new /obj/item/weapon/shovel(src)
src.modules += new /obj/item/weapon/satchel(src) src.modules += new /obj/item/weapon/satchel(src)
src.emag = new /obj/item/weapon/borg/stun(src) src.emag = new /obj/item/weapon/borg/stun(src)

Binary file not shown.

Before

Width:  |  Height:  |  Size: 75 KiB

After

Width:  |  Height:  |  Size: 76 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 75 KiB

After

Width:  |  Height:  |  Size: 76 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 35 KiB

After

Width:  |  Height:  |  Size: 36 KiB