mirror of
https://github.com/Yawn-Wider/YWPolarisVore.git
synced 2026-08-25 05:57:21 +01:00
* Update settings * Whitespace changes * Comment out merger hooks in gitattributes Corrupt maps would have to be resolved in repo before hooks could be updated * Revert "Whitespace changes" This reverts commit afbdd1d8442973f5d570c30920d9d865b5acd479. * Whitespace again minus example * Gitignore example changelog * Restore changelog merge setting * Keep older dmi hook attribute until hooks can be updated * update vscode settings too * Renormalize remaining * Revert "Gitignore example changelog" This reverts commit de22ad375d3ee4d5930c550da2fd23a29a86e616. * Attempt to normalize example.yml (and another file I guess) * Try again
24 lines
656 B
Plaintext
24 lines
656 B
Plaintext
/obj/item/weapon/material/star
|
|
name = "shuriken"
|
|
desc = "A sharp, perfectly weighted piece of metal."
|
|
icon_state = "star"
|
|
force_divisor = 0.1 // 6 with hardness 60 (steel)
|
|
thrown_force_divisor = 0.75 // 15 with weight 20 (steel)
|
|
throw_speed = 10
|
|
throw_range = 15
|
|
sharp = TRUE
|
|
edge = TRUE
|
|
|
|
/obj/item/weapon/material/star/New()
|
|
..()
|
|
src.pixel_x = rand(-12, 12)
|
|
src.pixel_y = rand(-12, 12)
|
|
|
|
/obj/item/weapon/material/star/throw_impact(atom/hit_atom)
|
|
..()
|
|
if(material.radioactivity>0 && istype(hit_atom,/mob/living))
|
|
var/mob/living/M = hit_atom
|
|
M.adjustToxLoss(rand(20,40))
|
|
|
|
/obj/item/weapon/material/star/ninja
|
|
default_material = "uranium" |