Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adding 18_uruguay pre-alpha #10093

Closed
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions lib/engine/game/g_18_uruguay.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# frozen_string_literal: true

module Engine
module Game
module G18Uruguay
end
end
end
123 changes: 123 additions & 0 deletions lib/engine/game/g_18_uruguay/companies.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,123 @@
# frozen_string_literal: true

module Engine
module Game
module G18Uruguay
module Companies
COMPANIES = [
{
name: 'P1 Amigos del Progreso',
sym: 'AP',
value: 20,
revenue: 5,
min_price: 10,
max_price: 40,
desc: 'No special abilities.',
abilities: [],
color: nil,
},
{
name: 'P2 Latifundio Agrícola',
value: 40,
min_price: 20,
max_price: 80,
revenue: 10,
desc: 'Owner (or controlling president) moves one crop cube from a countryside'\
'hex to an adjacent town or city hex each OR. Closes when the last crop cube has been moved.',
sym: 'LA_CORN',
abilities: [
{
type: 'assign_hexes',
hexes: %w[C3 D4 G13 H2 H6],
count_per_or: 1,
when: 'or_start',
owner_type: 'player',
count: 10,
description: 'Owner (or controlling president) moves one crop cube from a countryside'\
'hex to an adjacent town or city hex each OR. Closes when the last crop cube has been moved.',
},
],
color: nil,
},
{
name: 'P3 Latifundio de Ovejas',
value: 70,
min_price: 35,
max_price: 140,
revenue: 15,
desc: 'Owner (or controlling president) moves one sheep cube from a countryside'\
'hex to an adjacent town or city hex each OR. Closes when the last sheep cube has been moved.',
sym: 'LO_SHEEP',
abilities: [
{
type: 'assign_hexes',
hexes: %w[E5 E7 G5 H12 J8],
count_per_or: 1,
when: 'or_start',
owner_type: 'player',
count: 10,
description: 'Owner (or controlling president) moves one sheep cube from a countryside'\
'hex to an adjacent town or city hex each OR. Closes when the last sheep cube has been moved.',
},
],
color: nil,
},
{
name: 'P4 Latifundio de Vacas',
value: 110,
min_price: 55,
max_price: 220,
revenue: 20,
desc: 'Owner (or controlling president) moves one cattle cube from a countryside'\
'hex to an adjacent town or city hex each OR. Closes when the last cattle cube has been moved.',
sym: 'LO_CATTLE',
abilities: [
{
type: 'assign_hexes',
hexes: %w[D8 F4 F10 F12 I5],
count_per_or: 1,
when: 'or_start',
owner_type: 'player',
count: 10,
description: 'Owner (or controlling president) moves one cattle cube from a countryside'\
'hex to an adjacent town or city hex each OR. Closes when the last cattle cube has been moved.',
},
],
color: nil,
},
{
name: 'P5 John Eldon Gorst',
value: 160,
revenue: 25,
desc: 'Accompanied by the 20%
President’s Certificate of The River Plate Trust, Loan
& Agency Company, ltd (RPTLA). Closes when
RPTLA buys its first non-yellow ship. P5 is not available for purchase.',
sym: 'JOHN',
abilities: [
{ type: 'no_buy' },
{ type: 'shares', shares: 'RPTLA_0' },
],
color: nil,
},
{
name: 'P6 Senen María Rodrígue',
value: 220,
revenue: 30,
desc: 'Accompanied by
the 20% Pesident’s Certificate of the Ferrocarriles
Central del Uruguay (FCCU). Closes when FCCU
buys its first train. P6 is not available for purchase.',
sym: 'FCCU_PRIV',
abilities: [
{ type: 'no_buy' },
{ type: 'shares', shares: 'FCCU_0' },
{ type: 'close', when: 'bought_train', corporation: 'FCCU' },
],
color: nil,
},
].freeze
end
end
end
end
181 changes: 181 additions & 0 deletions lib/engine/game/g_18_uruguay/corporations.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,181 @@
# frozen_string_literal: true

# logo map 50x50
# dest

module Engine
module Game
module G18Uruguay
module Corporations
# FCE = {
# float_percent: 20,
# sym: 'FCE',
# name: 'Los Ferrocarriles y Tranvias del Estado',
# logo: '18_uruguay/FCE.alt',
# simple_logo: '18_uruguay/FCE.alt',
# color: '#025aaa',
# floatable: false,
# tokens: [0, 40, 60, 100],
# text_color: 'white',
# abilities: [],
# }

CORPORATIONS = [
{
float_percent: 20,
sym: 'FCE',
name: 'Los Ferrocarriles y Tranvias del Estado',
logo: '18_uruguay/FCE.alt',
simple_logo: '18_uruguay/FCE.alt',
color: '#025aaa',
floatable: false,
ipoed: false,
tokens: [0, 40, 60, 100],
text_color: 'white',
abilities: [],
},
{
float_percent: 20,
sym: 'RPTLA',
name: 'The River Plate Trust, Loan & Agency Company, ltd',
logo: '1848/BOE',
simple_logo: '18_uruguay/RPTLA.alt',
color: '#FF0000',
tokens: [0],
coordinates: 'K15',
text_color: 'black',
abilities: [],
type: :bank,
capitalization: :incremental,
always_market_price: true,
},
{
float_percent: 50,
sym: 'FCCU',
name: 'FC Central del Uruguay',
logo: '18_uruguay/FCCU.alt',
simple_logo: '18_uruguay/FCCU.alt',
color: :'#1a1919',
reservation_color: '#1a1919',
text_color: 'white',
tokens: [0, 40, 60, 100],
coordinates: 'J6',
city: 1,
abilities: [],
destination_coordinates: 'F6',
destination_icon: '18_uruguay/FCCU.alt',
},
{
float_percent: 50,
sym: 'FCNE',
name: 'FC Nordeste del Uruguay',
logo: '18_uruguay/FCNE.alt',
simple_logo: '18_uruguay/FCNE.alt',
color: :'#fff104',
text_color: 'black',
reservation_color: '#fff104',
tokens: [0, 40, 60, 100],
coordinates: 'I9',
destination_coordinates: 'E13',
destination_icon: '18_uruguay/FCNE.alt',
},
{
float_percent: 50,
sym: 'WER',
name: 'Western Extension Railway',
logo: '18_uruguay/WER.alt',
simple_logo: '18_uruguay/WER.alt',
color: :'#f47d20',
reservation_color: '#f47d20',
tokens: [0, 40, 60],
coordinates: 'G3',
destination_coordinates: 'J12',
destination_icon: '18_uruguay/WER.alt',
},
{
float_percent: 50,
sym: 'FCNO',
name: 'FC Nordueste de Montevideo',
logo: '18_uruguay/FCNO',
simple_logo: '18_uruguay/FCNO.alt',
color: '#12a969',
reservation_color: '#12a969',
tokens: [0, 40, 60],
coordinates: 'D2',
destination_coordinates: 'C9',
destination_icon: '18_uruguay/FCNO.alt',
},
{
float_percent: 50,
sym: 'FCMU',
name: 'FC Midland del Uruguay',
logo: '18_uruguay/FCMU.alt',
simple_logo: '18_uruguay/FCMU.alt',
color: :'#e1ad01',
text_color: 'black',
reservation_color: '#e1ad01',
tokens: [0, 40, 60],
coordinates: 'F6',
destination_coordinates: 'I3',
destination_icon: '18_uruguay/FCMU.alt',
},
{
float_percent: 50,
sym: 'EER',
name: 'Eastern Extension Railway',
logo: '18_uruguay/EER.alt',
simple_logo: '18_uruguay/EER.alt',
color: '#772c7b',
reservation_color: '#772c7b',
tokens: [0, 40, 60],
coordinates: 'E13',
destination_coordinates: 'D6',
destination_icon: '18_uruguay/EER.alt',
},
{
float_percent: 50,
sym: 'FCNU',
name: 'FC del Norte del Uruguay',
logo: '18_uruguay/FCNU.alt',
simple_logo: '18_uruguay/FCNU.alt',
color: '#0189c4',
reservation_color: '#0189c4',
tokens: [0, 40, 60],
coordinates: 'B6',
destination_coordinates: 'E3',
destination_icon: '18_uruguay/FCNU.alt',
},
{
float_percent: 50,
sym: 'PTC',
name: 'Panamerican Trans-Continental Railway',
logo: '18_uruguay/PTC.alt',
simple_logo: '18_uruguay/PTC.alt',
color: :'#fad5e4',
text_color: 'black',
reservation_color: '#fad5e4',
tokens: [0, 40, 60],
coordinates: 'H14',
destination_coordinates: 'G3',
destination_icon: '18_uruguay/BM',
},
{
float_percent: 50,
sym: 'ECR',
name: 'East Coast Railways',
logo: '18_uruguay/ECR.alt',
simple_logo: '18_uruguay/ECR.alt',
color: '#43c6db',
text_color: 'black',
reservation_color: '#43c6db',
tokens: [0, 40, 60],
coordinates: 'J6',
city: 3,
destination_coordinates: 'H14',
destination_icon: '18_uruguay/CO',
},
].freeze
end
end
end
end
Loading