intrepidcoder / monopoly

A fully functional Monopoly game in JavaScript and HTML/CSS. Play online: https://www.intrepidcoder.com/projects/monopoly/
MIT License
341 stars 211 forks source link

Mortgage interest should be 10% of the mortgage value #36

Closed jemeador closed 3 years ago

jemeador commented 3 years ago

https://github.com/intrepidcoder/monopoly/blob/15e8a09ab78044e67007a07b5f7dbae88578a8a7/monopoly.js#L1588

The official rules state that "in order to lift the mortgage, the owner must pay the Bank the amount of the mortgage plus 10% interest." The loan amount is the mortgage value, so it seems reasonable to interpret this as 10% of half the price, or %55 of the list price in total to unmortgage.

Right now it is implemented at 10% of the list price or %60 in total.

intrepidcoder commented 3 years ago

I think you're right, actually. Thanks