Skip to content

Commit

Permalink
Colonial Space Grunts
Browse files Browse the repository at this point in the history
  • Loading branch information
Releasethesea committed Nov 9, 2023
1 parent 48fb533 commit 810590e
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 5 deletions.
4 changes: 2 additions & 2 deletions code/game/machinery/vending/vending_types.dm
Original file line number Diff line number Diff line change
Expand Up @@ -412,7 +412,7 @@
/obj/item/device/camera_film = 10,
/obj/item/notepad = 5,
/obj/item/device/toner = 5,
/obj/item/paper/Almayer/CSG = 15,
/obj/item/paper/colonial_grunts = 15,
/obj/item/toy/dice/d20 = 10,
/obj/item/tool/pen = 10,
/obj/item/tool/pen/blue = 10,
Expand All @@ -439,7 +439,7 @@
/obj/item/toy/deck/uno = 15,
/obj/item/device/camera = 30,
/obj/item/device/toner = 15,
/obj/item/paper/Almayer/CSG = 5,
/obj/item/paper/colonial_grunts = 5,
/obj/item/toy/dice/d20 = 1,
/obj/item/tool/pen = 2,
/obj/item/tool/pen/blue = 2,
Expand Down
2 changes: 1 addition & 1 deletion code/modules/asset_cache/asset_list_items.dm
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@
"cmblogo.png" = 'html/images/cmblogo.png',
"faxwylogo.png" = 'html/images/faxwylogo.png',
"faxbackground.jpg" = 'html/images/faxbackground.jpg',
"colonialspacegruntsEZ.png" = 'html/images/ColonialSpaceGruntsEZ.png',
"colonialspacegruntsEZ.png" = 'html/images/colonialspacegruntsEZ.png',
)

/datum/asset/spritesheet/chat
Expand Down
10 changes: 8 additions & 2 deletions code/modules/paperwork/paper.dm
Original file line number Diff line number Diff line change
Expand Up @@ -907,7 +907,13 @@
info = parsepencode(template, null, null, FALSE)
#undef MAX_FIELDS

/obj/item/paper/Almayer/CSG
/obj/item/paper/colonial_grunts
icon = 'icons/obj/items/paper.dmi'
icon_state = "paper_stack_words"
name = "Colonial Space Grunts"
desc = "A tabletop game based around the USCM, easy to get into, simple to play, and most inportantly fun for the whole squad."
info = "<div> <img style='align:middle' src='ColonialSpaceGruntsEZ.png'>"

/obj/item/paper/colonial_grunts/Initialize(mapload, ...)
. = ..()
info = "<div> <img style='align:middle' src='[SSassets.transport.get_asset_url("colonialspacegruntsEZ.png")]'>"
update_icon()

0 comments on commit 810590e

Please sign in to comment.