-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Add RaS map cities * Add around 1/3 of RaS map routes * Add all Eurasia routes * Add scores for routes 7 and 8 tiles long * Add Greenland * Add Africa routes * Add Australia * Add South America * Replace Mexico by Caracas * Add NA routes
- Loading branch information
1 parent
6e85710
commit 734f638
Showing
7 changed files
with
550 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
9 changes: 9 additions & 0 deletions
9
src/ticket_to_ride/default_components/rails_and_sails/__init__.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
# This project is implemented exclusively for learning purposes and assumes no commercial use. | ||
# Neither Yury Fedotov nor organizations he is affiliated with claim any rights to the "Ticket to Ride" trademark, | ||
# game rules or other game-related artifacts. "Ticket to Ride" was designed by Alan R. Moon and released | ||
# by Days of Wonder. To the best of author's knowledge, the trademark is owned by Days of Wonder, Inc. | ||
# All rights to the original game and its elements are owned by their respective holders. | ||
# For more information about the game, please visit | ||
# the official Days of Wonder website: https://www.daysofwonder.com/ticket-to-ride/. | ||
"""Provides default component definitions for the worldwide Rails & Sails game version.""" | ||
from .map import rails_and_sails_map |
65 changes: 65 additions & 0 deletions
65
src/ticket_to_ride/default_components/rails_and_sails/cities.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,65 @@ | ||
# This project is implemented exclusively for learning purposes and assumes no commercial use. | ||
# Neither Yury Fedotov nor organizations he is affiliated with claim any rights to the "Ticket to Ride" trademark, | ||
# game rules or other game-related artifacts. "Ticket to Ride" was designed by Alan R. Moon and released | ||
# by Days of Wonder. To the best of author's knowledge, the trademark is owned by Days of Wonder, Inc. | ||
# All rights to the original game and its elements are owned by their respective holders. | ||
# For more information about the game, please visit | ||
# the official Days of Wonder website: https://www.daysofwonder.com/ticket-to-ride/. | ||
"""Default cities for the worldwide Rails & Sails game version.""" | ||
from ticket_to_ride import City | ||
|
||
_CITY_NAMES = frozenset(( | ||
"Reykjavik", | ||
"Murmansk", | ||
"Tiksi", | ||
"Yakutsk", | ||
"Petropavlovsk", | ||
"Tokyo", | ||
"Beijing", | ||
"Hong Kong", | ||
"Manila", | ||
"Honolulu", | ||
"Bangkok", | ||
"Mumbai", | ||
"Labore", | ||
"Novosibirsk", | ||
"Moskva", | ||
"Hamburg", | ||
"Marseille", | ||
"Casablanca", | ||
"Edinburgh", | ||
"Athina", | ||
"Al-Zabira", | ||
"Djubouti", | ||
"Dar Es Salaam", | ||
"Toamasina", | ||
"Cape Town", | ||
"Luanda", | ||
"Lagos", | ||
"North Pole", | ||
"Tehran", | ||
"Jakarta", | ||
"Darwin", | ||
"Perth", | ||
"Sydney", | ||
"Post Moresby", | ||
"Rio de Janeiro", | ||
"Buenos Aires", | ||
"Lima", | ||
"Valparaiso", | ||
"Caracas", | ||
"Miami", | ||
"Mexico", | ||
"Los Angeles", | ||
"New York", | ||
"Winnipeg", | ||
"Cambridge Bay", | ||
"Anchorage", | ||
"Christchurch", | ||
"Vancouver", | ||
)) | ||
|
||
default_cities = { | ||
name: City(name=name) | ||
for name in _CITY_NAMES | ||
} |
13 changes: 13 additions & 0 deletions
13
src/ticket_to_ride/default_components/rails_and_sails/map.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
# This project is implemented exclusively for learning purposes and assumes no commercial use. | ||
# Neither Yury Fedotov nor organizations he is affiliated with claim any rights to the "Ticket to Ride" trademark, | ||
# game rules or other game-related artifacts. "Ticket to Ride" was designed by Alan R. Moon and released | ||
# by Days of Wonder. To the best of author's knowledge, the trademark is owned by Days of Wonder, Inc. | ||
# All rights to the original game and its elements are owned by their respective holders. | ||
# For more information about the game, please visit | ||
# the official Days of Wonder website: https://www.daysofwonder.com/ticket-to-ride/. | ||
"""Exposes the worldwide Rails & Sails game version map.""" | ||
from ticket_to_ride import Map | ||
|
||
from .routes import default_routes | ||
|
||
rails_and_sails_map = Map(routes=default_routes, name="Rails and Sails World") |
Oops, something went wrong.