| 1427 | } |
| 1428 | |
| 1429 | bool Game_Actor::HasHalfSpCost() const { |
| 1430 | bool rc = false; |
| 1431 | ForEachEquipment<false, true>(GetWholeEquipment(), [&](auto& item) { rc |= item.half_sp_cost; }); |
| 1432 | return rc; |
| 1433 | } |
| 1434 | |
| 1435 | int Game_Actor::CalculateWeaponSpCost(Weapon weapon) const { |
| 1436 | int cost = 0; |
no outgoing calls
no test coverage detected