Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
paimoe authored Jun 10, 2018
1 parent c2a0ab7 commit b94b374
Showing 1 changed file with 58 additions and 0 deletions.
58 changes: 58 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -76,8 +76,66 @@ These were parsed as part of the [EU4Map](https://github.com/paimoe/eu4map) proj
}

### regions.json
{
'lower_don_area': {
s: "eastern_europe_superregion",
r: "crimea_region",
}
}

### tradenodes.json
{
'english_channel': {
location: 1269,
incoming: ['champagne', 'north_sea', 'chesapeake_bay', 'lubeck', 'ivory_coast'],
members: [1269, 1270, 167, ...], # Provinces in node
color: [220, 138, 57],
end: true
}
}

### religions.json
{
'Christian': [
['Anglican', 'anglican', [135, 77, 255]],
['Catholic', 'catholic', [204, 204, 0]]
]
}

### \_religions.json
Pretty much raw data from ``common/religions/00_religion.txt``

### cultures.json
{
Latin: ['romagnan', 'piedmontese', 'tuscan', 'ligurian', 'sardinian', 'neapolitan', 'lombard', 'venetian', 'sicilian',
'umbrian', 'maltese'],
}

### units.json
{
'navy': {
'heavy_frigate': {
type: "light_ship",
sprite_level: 5,
sail_speed: 10,
hull_size: 20,
trade_power: 4,
base_cannons: 25
}
},
'army': {
'bhonsle_infantry ': {
'stats': {
om: 2, # Offensive Morale
of: 3 # Offensive Fire
os: 2, # Offensive Shock
m: 1, # Maneuver
dm: 2, # Defensive Morale
ds: 2, # Defensive Shock
df: 3 # Defensive Fire
},
type: 'infantry',
unit_type: 'indian',
}
}
}

0 comments on commit b94b374

Please sign in to comment.