monopolygame.csv

Description

Monopoly is a board game in which players roll two six-sided dice to move around the game board. They buy and trade properties, and once they have all street properties of one color (a monopoly) they may develop them with houses and hotels. There are also railroad and utility properties which cannot be developed, but whose rent value increases if a player owns more than one. Players collect “rent” from their opponents when an opponent lands on one of their properties. The goal is to drive all other players into bankruptcy.

Variables

Rows: 28
Columns: 13
$ name        <chr> "Mediterranean", "Baltic", "Reading RR", "Oriental", "Verm…
$ type        <chr> "street", "street", "railroad", "street", "street", "stree…
$ color       <chr> "purple", "purple", "", "lightblue", "lightblue", "lightbl…
$ spaces      <int> 1, 3, 5, 6, 8, 9, 11, 12, 13, 14, 15, 16, 18, 19, 21, 23, …
$ cost        <int> 60, 60, 200, 100, 100, 120, 140, 150, 140, 160, 200, 180, …
$ mortgage    <int> 30, 30, 100, 50, 50, 60, 70, 75, 70, 80, 100, 90, 90, 100,…
$ house_price <int> 50, 50, NA, 50, 50, 50, 100, NA, 100, 100, NA, 100, 100, 1…
$ rent_0      <int> 2, 4, NA, 6, 6, 8, 10, NA, 10, 12, NA, 14, 14, 16, 18, 18,…
$ rent_1      <int> 10, 20, NA, 30, 30, 40, 50, NA, 50, 60, NA, 70, 70, 80, 90…
$ rent_2      <int> 30, 60, NA, 90, 90, 100, 150, NA, 150, 180, NA, 200, 200, …
$ rent_3      <int> 90, 180, NA, 270, 270, 300, 450, NA, 450, 500, NA, 550, 55…
$ rent_4      <int> 160, 320, NA, 400, 400, 450, 625, NA, 625, 700, NA, 750, 7…
$ rent_hotel  <int> 250, 450, NA, 550, 550, 600, 750, NA, 750, 900, NA, 950, 9…
           name     type     color spaces cost mortgage house_price rent_0
1 Mediterranean   street    purple      1   60       30          50      2
2        Baltic   street    purple      3   60       30          50      4
3    Reading RR railroad                5  200      100          NA     NA
4      Oriental   street lightblue      6  100       50          50      6
5       Vermont   street lightblue      8  100       50          50      6
6   Connecticut   street lightblue      9  120       60          50      8
  rent_1 rent_2 rent_3 rent_4 rent_hotel
1     10     30     90    160        250
2     20     60    180    320        450
3     NA     NA     NA     NA         NA
4     30     90    270    400        550
5     30     90    270    400        550
6     40    100    300    450        600

References

Monopoly Rents (with houses and hotels)