mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-07-13 16:13:19 +01:00
move all EOL comments on typepath names to dmdoc (#23928)
* move all EOL comments on typepath names to dmdoc * Apply suggestions from code review Co-authored-by: Luc <89928798+lewcc@users.noreply.github.com> * Apply suggestions from code review Co-authored-by: S34N <12197162+S34NW@users.noreply.github.com> --------- Co-authored-by: Luc <89928798+lewcc@users.noreply.github.com> Co-authored-by: S34N <12197162+S34NW@users.noreply.github.com>
This commit is contained in:
committed by
GitHub
parent
25996e232a
commit
0667f20681
@@ -133,7 +133,8 @@
|
||||
icon_state = "bluenana_peel"
|
||||
|
||||
// Other
|
||||
/obj/item/grown/bananapeel/specialpeel //used by /obj/item/clothing/shoes/clown_shoes/banana_shoes
|
||||
/// used by /obj/item/clothing/shoes/clown_shoes/banana_shoes
|
||||
/obj/item/grown/bananapeel/specialpeel
|
||||
name = "synthesized banana peel"
|
||||
desc = "A synthetic banana peel."
|
||||
|
||||
|
||||
@@ -87,7 +87,8 @@
|
||||
filling_color = "#FFD700"
|
||||
|
||||
// Combustible lemon
|
||||
/obj/item/seeds/firelemon //combustible lemon is too long so firelemon
|
||||
/// combustible lemon is too long so firelemon
|
||||
/obj/item/seeds/firelemon
|
||||
name = "pack of combustible lemon seeds"
|
||||
desc = "When life gives you lemons, don't make lemonade. Make life take the lemons back! Get mad! I don't want your damn lemons!"
|
||||
icon_state = "seed-firelemon"
|
||||
|
||||
@@ -118,7 +118,8 @@
|
||||
mutatelist = list(/obj/item/seeds/sunflower/moonflower, /obj/item/seeds/sunflower/novaflower)
|
||||
reagents_add = list("cornoil" = 0.08, "plantmatter" = 0.04)
|
||||
|
||||
/obj/item/grown/sunflower // FLOWER POWER!
|
||||
/// FLOWER POWER!
|
||||
/obj/item/grown/sunflower
|
||||
seed = /obj/item/seeds/sunflower
|
||||
name = "sunflower"
|
||||
desc = "It's beautiful! A certain person might beat you to death if you trample these."
|
||||
|
||||
@@ -28,7 +28,8 @@
|
||||
reagents_add = list("facid" = 0.25, "sacid" = 0.25)
|
||||
rarity = 20
|
||||
|
||||
/obj/item/grown/nettle //abstract type
|
||||
/// abstract type
|
||||
/obj/item/grown/nettle
|
||||
name = "nettle"
|
||||
desc = "It's probably <B>not</B> wise to touch it with bare hands..."
|
||||
icon = 'icons/obj/items.dmi'
|
||||
|
||||
@@ -119,7 +119,8 @@
|
||||
/obj/structure/bonfire/dense
|
||||
density = TRUE
|
||||
|
||||
/obj/structure/bonfire/lit //haha empty define
|
||||
/// haha empty define
|
||||
/obj/structure/bonfire/lit
|
||||
|
||||
/obj/structure/bonfire/lit/dense
|
||||
density = TRUE
|
||||
|
||||
@@ -2,7 +2,8 @@
|
||||
// Other harvested materials from plants (that are not food)
|
||||
// **********************
|
||||
|
||||
/obj/item/grown // Grown weapons
|
||||
/// Grown weapons
|
||||
/obj/item/grown
|
||||
name = "grown_weapon"
|
||||
icon = 'icons/obj/hydroponics/harvest.dmi'
|
||||
resistance_flags = FLAMMABLE
|
||||
|
||||
@@ -14,7 +14,8 @@
|
||||
// Hydroponics Tools
|
||||
// *************************************
|
||||
|
||||
/obj/item/reagent_containers/spray/weedspray // -- Skie
|
||||
/// -- Skie
|
||||
/obj/item/reagent_containers/spray/weedspray
|
||||
name = "weed spray"
|
||||
desc = "It's a toxic mixture, in spray form, to kill small weeds."
|
||||
icon = 'icons/obj/hydroponics/equipment.dmi'
|
||||
@@ -34,7 +35,8 @@
|
||||
user.visible_message("<span class='suicide'>[user] is huffing [src]! It looks like [user.p_theyre()] trying to commit suicide.</span>")
|
||||
return TOXLOSS
|
||||
|
||||
/obj/item/reagent_containers/spray/pestspray // -- Skie
|
||||
/// -- Skie
|
||||
/obj/item/reagent_containers/spray/pestspray
|
||||
name = "pest spray"
|
||||
desc = "It's some pest eliminator spray! <I>Do not inhale!</I>"
|
||||
icon = 'icons/obj/hydroponics/equipment.dmi'
|
||||
|
||||
@@ -975,7 +975,8 @@
|
||||
return ..()
|
||||
|
||||
///////////////////////////////////////////////////////////////////////////////
|
||||
/obj/machinery/hydroponics/soil //Not actually hydroponics at all! Honk!
|
||||
/// Not actually hydroponics at all! Honk!
|
||||
/obj/machinery/hydroponics/soil
|
||||
name = "soil"
|
||||
icon = 'icons/obj/hydroponics/equipment.dmi'
|
||||
icon_state = "soil"
|
||||
|
||||
@@ -450,7 +450,8 @@
|
||||
S.set_up(G.reagents, splat_location)
|
||||
S.start(smoke_amount)
|
||||
|
||||
/datum/plant_gene/trait/fire_resistance // Lavaland
|
||||
/// Lavaland
|
||||
/datum/plant_gene/trait/fire_resistance
|
||||
name = "Fire Resistance"
|
||||
|
||||
/datum/plant_gene/trait/fire_resistance/apply_vars(obj/item/seeds/S)
|
||||
@@ -461,7 +462,8 @@
|
||||
if(!(G.resistance_flags & FIRE_PROOF))
|
||||
G.resistance_flags |= FIRE_PROOF
|
||||
|
||||
/datum/plant_gene/trait/plant_type // Parent type
|
||||
/// Parent type
|
||||
/datum/plant_gene/trait/plant_type
|
||||
name = "you shouldn't see this"
|
||||
trait_id = "plant_type"
|
||||
|
||||
|
||||
Reference in New Issue
Block a user