forked from Bubberstation/Bubberstation
-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'Bubberstation:master' into master
- Loading branch information
Showing
15 changed files
with
105 additions
and
185 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
/obj/item/gun/ballistic/shotgun/bulldog | ||
burst_size: NULL | ||
fire_delay: 1 | ||
burst_size = NULL | ||
fire_delay = 1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,61 @@ | ||
#define BOW_EMBED_STATS list( \ | ||
embed_chance = 100, \ | ||
fall_chance = 0, \ | ||
jostle_chance = 0, \ | ||
ignore_throwspeed_threshold = TRUE, \ | ||
pain_stam_pct = 0.5, \ | ||
pain_mult = 1, \ | ||
jostle_pain_mult = 1, \ | ||
rip_time = 1 SECONDS \ | ||
) | ||
|
||
/obj/projectile/bullet/arrow | ||
damage = 20 | ||
weak_against_armour = TRUE | ||
wound_bonus = CANT_WOUND | ||
range = 16 | ||
embedding = BOW_EMBED_STATS | ||
var/tribal_damage_bonus = 20 //If you're an icemoon dweller, or an ashwalker. | ||
faction_bonus_force = 10 //Bonus force dealt against certain factions | ||
nemesis_paths = list( | ||
/mob/living/simple_animal/hostile/asteroid, | ||
/mob/living/basic/mining, | ||
/mob/living/basic/wumborian_fugu, | ||
) | ||
|
||
/obj/projectile/bullet/arrow/prehit_pierce(mob/living/target, mob/living/carbon/human/user) | ||
|
||
if(isnull(target)) | ||
return ..() | ||
|
||
if(user?.mind?.special_role == ROLE_LAVALAND) | ||
damage += tribal_damage_bonus | ||
weak_against_armour = FALSE | ||
|
||
return ..() | ||
|
||
/obj/projectile/bullet/arrow/holy | ||
damage = 25 // Increase from 20 | ||
embedding = BOW_EMBED_STATS | ||
|
||
/obj/projectile/bullet/arrow/ash | ||
damage = 20 | ||
armour_penetration = 20 // Buff from 0 | ||
faction_bonus_force = 20 // Nerf from 60 | ||
embedding = BOW_EMBED_STATS | ||
|
||
/obj/projectile/bullet/arrow/bone | ||
damage = 25 | ||
armour_penetration = 30 // Buff from 20 | ||
wound_bonus = CANT_WOUND | ||
faction_bonus_force = 30 // Nerf from 35 | ||
embedding = BOW_EMBED_STATS | ||
|
||
/obj/projectile/bullet/arrow/bronze | ||
damage = 30 | ||
armour_penetration = 30 | ||
wound_bonus = CANT_WOUND | ||
faction_bonus_force = 90 | ||
embedding = BOW_EMBED_STATS | ||
|
||
#undef BOW_EMBED_STATS |
File renamed without changes.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.