Skip to content

Commit

Permalink
Beep beep not a sheep
Browse files Browse the repository at this point in the history
  • Loading branch information
thingpony committed Oct 15, 2023
1 parent 4e8e405 commit 31f3e68
Show file tree
Hide file tree
Showing 3 changed files with 57 additions and 0 deletions.
5 changes: 5 additions & 0 deletions modular_citadel/code/modules/client/loadout/backpack.dm
Original file line number Diff line number Diff line change
Expand Up @@ -784,3 +784,8 @@
name = "Cowboy Vest"
path = /obj/item/clothing/accessory/sheriffvest
cost = 0

/datum/gear/backpack/carchoice
name = "Car choice"
path = /obj/item/choice_beacon/car
cost = 5
52 changes: 52 additions & 0 deletions modular_coyote/code/objects.dm
Original file line number Diff line number Diff line change
Expand Up @@ -1249,4 +1249,56 @@
icon = 'modular_coyote/icons/objects/items.dmi'
icon_state = "goldfish"

//Cars
/obj/vehicle/sealed/car/sportcar
name = "sports car"
icon = 'modular_coyote/icons/objects/civ_vehicles.dmi'
icon_state = "sportscar"

/obj/vehicle/sealed/car/jeep
name = "jeep"
icon = 'modular_coyote/icons/objects/civ_vehicles.dmi'
icon_state = "jeep"

/obj/vehicle/sealed/car/jeep_mesa
name = "jeep mesa"
icon = 'modular_coyote/icons/objects/civ_vehicles.dmi'
icon_state = "jeep_mesa"

/obj/vehicle/sealed/car/policecar
name = "policecar"
icon = 'modular_coyote/icons/objects/civ_vehicles.dmi'
icon_state = "policecar"

/obj/vehicle/sealed/car/truck
name = "truck"
icon = 'modular_coyote/icons/objects/civ_vehicles.dmi'
icon_state = "truck"

/obj/vehicle/sealed/car/ambulance
name = "ambulance"
icon = 'modular_coyote/icons/objects/civ_vehicles.dmi'
icon_state = "ambulance"

/obj/item/choice_beacon/car
name = "vehicle delivery beacon"
desc = "Summon your tool of car. Beep beep"
icon_state = "gangtool-red"

/obj/item/choice_beacon/car/generate_display_names()
var/static/list/car
if(!car)
car = list()
var/list/templist = list(/obj/item/choice_beacon/car,
/obj/vehicle/sealed/car/ambulance,
/obj/vehicle/sealed/car/truck,
/obj/vehicle/sealed/car/policecar,
/obj/vehicle/sealed/car/jeep_mesa,
/obj/vehicle/sealed/car/jeep,
/obj/vehicle/sealed/car/sportcar
)
for(var/V in templist)
var/atom/A = V
car[initial(A.name)] = A
return car

Binary file added modular_coyote/icons/objects/civ_vehicles.dmi
Binary file not shown.

0 comments on commit 31f3e68

Please sign in to comment.