forked from shiptest-ss13/Shiptest
-
-
Notifications
You must be signed in to change notification settings - Fork 80
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #607 from Mirag1993/Fix-revolver
Фикс G36
- Loading branch information
Showing
4 changed files
with
43 additions
and
14 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,15 +1,35 @@ | ||
/datum/supply_pack/ammo/g36_ammo | ||
name = "G-36 5.56mm Magazine Crate" | ||
desc = "Содержит два магазина калибра 5,56 мм для винтовки p16, каждый из которых содержит по 30 патронов. Также в комплект входит коробка стандартных патронов." | ||
contains = list(/obj/item/ammo_box/magazine/p16/g36sh, | ||
/obj/item/ammo_box/magazine/p16/g36sh, | ||
desc = "Содержит два магазина калибра 5,56 мм для винтовки p16, каждый из которых содержит по 30 патронов. Также в комплект входят коробки стандартных патронов." | ||
contains = list(/obj/item/ammo_box/magazine/p16, | ||
/obj/item/ammo_box/magazine/p16, | ||
/obj/item/ammo_box/a556_box, | ||
/obj/item/ammo_box/a556_box) | ||
cost = 3500 | ||
cost = 3000 | ||
|
||
/datum/supply_pack/ammo/morita_ammo | ||
name = "Morita Mk.I .308 Magazine Crate" | ||
desc = "Содержит два магазина калибра .308 мм для винтовки Morita Mk.I, каждый из которых содержит по 10 патронов. Также в комплект входит коробка стандартных патронов." | ||
desc = "Содержит два магазина калибра .308 мм для винтовки Morita Mk.I, каждый из которых содержит по 10 патронов. Также в комплект входят коробки стандартных патронов." | ||
contains = list(/obj/item/ammo_box/magazine/morita1/small, | ||
/obj/item/ammo_box/magazine/morita1/small, | ||
/obj/item/ammo_box/a308, | ||
/obj/item/ammo_box/a308) | ||
cost = 4000 | ||
cost = 3000 | ||
|
||
/datum/supply_pack/ammo/box556 | ||
name = "5.56mm ammo Crate" | ||
desc = "Содержит коробку патронов калибра 5,56 мм для автоматических винтовок." | ||
contains = list(/obj/item/ammo_box/a556_box) | ||
cost = 400 | ||
|
||
/datum/supply_pack/ammo/box556/a856 | ||
name = "5.56mm(а856) ammo Crate" | ||
desc = "Содержит коробку патронов калибра 5,56 мм для автоматических винтовок." | ||
contains = list(/obj/item/ammo_box/a556_box/a856) | ||
cost = 600 | ||
|
||
/datum/supply_pack/ammo/box556/m903 | ||
name = "5.56mm(m903) ammo Crate" | ||
desc = "Содержит коробку патронов калибра 5,56 мм для автоматических винтовок." | ||
contains = list(/obj/item/ammo_box/a556_box/m903) | ||
cost = 1200 |
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
2 changes: 1 addition & 1 deletion
2
mod_celadon/weapons/code/modules/projectiles/ammunition/ballistic/rifle.dm
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