mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-07-19 12:05:59 +01:00
Changelog and vineturf sanity checks
Added changelog and disabled most of floor procs for vines
This commit is contained in:
@@ -65,6 +65,41 @@
|
||||
/turf/simulated/floor/vines
|
||||
color = "#aa77aa"
|
||||
icon_state = "vinefloor"
|
||||
broken_states = list()
|
||||
ignoredirt = 1
|
||||
|
||||
|
||||
//All of this shit is useless for vines
|
||||
|
||||
/turf/simulated/floor/vines/attackby()
|
||||
return
|
||||
|
||||
/turf/simulated/floor/vines/burn_tile()
|
||||
return
|
||||
|
||||
/turf/simulated/floor/vines/break_tile()
|
||||
return
|
||||
|
||||
/turf/simulated/floor/vines/make_plating()
|
||||
return
|
||||
|
||||
/turf/simulated/floor/vines/break_tile_to_plating()
|
||||
return
|
||||
|
||||
/turf/simulated/floor/vines/narsie_act()
|
||||
if(prob(20))
|
||||
ChangeTurf(/turf/space) //nar sie eats this shit
|
||||
|
||||
/turf/simulated/floor/vines/singularity_pull(S, current_size)
|
||||
if(current_size >= STAGE_FIVE)
|
||||
if(prob(50))
|
||||
ChangeTurf(/turf/space)
|
||||
|
||||
/turf/simulated/floor/vines/ChangeTurf(turf/simulated/floor/T)
|
||||
for(var/obj/effect/spacevine/SV in src)
|
||||
qdel(src)
|
||||
..()
|
||||
|
||||
|
||||
/datum/spacevine_mutation/space_covering/on_grow(obj/effect/spacevine/holder)
|
||||
if(istype(holder.loc, /turf/space))
|
||||
|
||||
@@ -0,0 +1,15 @@
|
||||
|
||||
author: Razharas
|
||||
|
||||
delete-after: False
|
||||
|
||||
changes:
|
||||
- rscadd: "Vines now can grow on any tiles that is not dense, including space, shuttles, centcomm tiles and so on."
|
||||
- rscadd: "Added 'Bluespace' mutation to vines, makes them be able to grow through absolutely everything."
|
||||
- rscadd: "Added 'Space Proofing' mutation to vines, after they grow if the tile under them is space it will become special vinetile, which is just resprited regular floor, if the vine on the vinetile dies the vineturf changes back to space."
|
||||
- rscadd: "Made vines spreading speed depend on the seed's production, can be both slower and faster than current."
|
||||
- rscadd: "Made vines mutation chance be 1/10th of the potency of the seed it is spawned from."
|
||||
- rscadd: "Special chemicals added to vine seeds durning their growth can increase/decrease their potency and productivity."
|
||||
- rscadd: "Special chemicals now can remove good, bad or neutral mutations from vine seeds while they are growing, cultivating actually helpful vines is now possible."
|
||||
- rscadd: "Plant analyzers now show the vine seeds mutations."
|
||||
- tweak: "Buffed numbers in some of the more useless mutations."
|
||||
Reference in New Issue
Block a user