Skip to content

Commit

Permalink
add stone to antfarm and remove smelted sheets (#24453)
Browse files Browse the repository at this point in the history
  • Loading branch information
jjpark-kb authored and FFMirrorBot committed Oct 20, 2023
1 parent dc68835 commit ad9d452
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions modular_skyrat/modules/ashwalkers/code/buildings/antfarm.dm
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,15 @@
/// the list of ore-y stuff that ants can drag up from deep within their nest
var/list/ore_list = list(
/obj/item/stack/ore/iron = 20,
/obj/item/stack/ore/glass = 20,
/obj/item/stack/sheet/mineral/plasma = 14,
/obj/item/stack/sheet/mineral/silver = 8,
/obj/item/stack/ore/glass/basalt = 20,
/obj/item/stack/ore/plasma = 14,
/obj/item/stack/ore/silver = 8,
/obj/item/xenoarch/strange_rock = 8,
/obj/item/stack/stone = 8,
/obj/item/stack/sheet/mineral/coal = 8,
/obj/item/stack/sheet/mineral/titanium = 8,
/obj/item/stack/sheet/mineral/uranium = 3,
/obj/item/stack/sheet/mineral/gold = 3,
/obj/item/stack/ore/titanium = 8,
/obj/item/stack/ore/uranium = 3,
/obj/item/stack/ore/gold = 3,
)
// The cooldown between each worm "breeding"
COOLDOWN_DECLARE(ant_timer)
Expand Down

0 comments on commit ad9d452

Please sign in to comment.