mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-10 18:22:39 +00:00
Co-authored-by: Will <7099514+Willburd@users.noreply.github.com> Co-authored-by: Kashargul <144968721+Kashargul@users.noreply.github.com>
38 lines
663 B
Plaintext
38 lines
663 B
Plaintext
/client/proc/kaboom()
|
|
var/power = tgui_input_number(src, "power?", "power?")
|
|
var/turf/T = get_turf(src.mob)
|
|
explosion(T, power)
|
|
|
|
/obj
|
|
var/explosion_resistance
|
|
|
|
/turf
|
|
var/explosion_resistance
|
|
|
|
/turf/space
|
|
explosion_resistance = 3
|
|
|
|
/turf/simulated/open
|
|
explosion_resistance = 3
|
|
|
|
/turf/simulated/floor
|
|
explosion_resistance = 1
|
|
|
|
/turf/simulated/mineral
|
|
explosion_resistance = 2
|
|
|
|
/turf/simulated/shuttle/floor
|
|
explosion_resistance = 1
|
|
|
|
/turf/simulated/shuttle/floor4
|
|
explosion_resistance = 1
|
|
|
|
/turf/simulated/shuttle/plating
|
|
explosion_resistance = 1
|
|
|
|
/turf/simulated/shuttle/wall
|
|
explosion_resistance = 10
|
|
|
|
/turf/simulated/wall
|
|
explosion_resistance = 10
|