Viewing old revision of Module:Game
You are viewing an old revision of this page from 2/24/2026, 6:37:35 PM.
View latest versionconst VENDOR_SELL_MODIFIER = 0.38;
function getSellPrice(buyPrice) {
return buyPrice ? Math.floor(Math.max(buyPrice * VENDOR_SELL_MODIFIER, 1)) : "N/A";
}
exports = {
getSellPrice
}