Ejemplo n.º 1
0
	def signal_catridges(self):
		'''
		Патроны сигнальные 18,5х60С.
		Патроны осветительные 18,5х60О.
		:return: int
		'''
		return int(Weapon.guns(self) * 4)
Ejemplo n.º 2
0
	def rubber_bullet(self):
		'''
		Патрон с резиновой пулей.
		:return: int
		'''
		return int(
			(Weapon.special_carbine(self) * 250) + (Weapon.guns(self) * 48))
Ejemplo n.º 3
0
	def pistol_catridges(self):
		'''
		Пистолетные патроны.
		:return: int
		'''
		return int((Weapon.guns(self) * 24) + (
			Weapon.pistol_gun(self) * 100))
Ejemplo n.º 4
0
	def svetozvukovye(self):
		'''
		Патрон светозвуковой.
		:return: int
		'''
		return int(Weapon.guns(self) * 24)