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