Exemple #1
0
	def automat_catridges(self):
		'''
		5,45 и 7,62 мм автоматные патроны.
		:return: int
		'''
		return int(
			(Weapon.automat(self) * 246) + (Weapon.hand_gun(self) * 750))
Exemple #2
0
	def automat_catridges_tracer(self):
		'''
		5,45 и 7,62 мм автоматные патроны с трассирующе пулей.
		:return: int
		'''
		return int((Weapon.automat(self) * 54) + (Weapon.hand_gun(self) * 250))