-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Change: split Shoebox and Dynamo lines, making Shoeboxes heavy_genera…
…l; remove Super Shoebox as redundant, introduce Ultra Shoebox in 1995 or so, bump stats around for balance; also add Cyclone 2200 hp electric locomotive, introduced around 1994 or so, as continuation for Dynamo;
- Loading branch information
1 parent
63617e5
commit a872a0b
Showing
7 changed files
with
54 additions
and
16 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
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,37 @@ | ||
from train import EngineConsist, ElectricEngineUnit | ||
|
||
|
||
def main(roster_id): | ||
consist = EngineConsist( | ||
roster_id=roster_id, | ||
id="cyclone", | ||
base_numeric_id=8440, | ||
name="Cyclone", | ||
role="express", | ||
role_child_branch_num=-1, | ||
power_by_power_source={ | ||
"AC": 2200, | ||
}, | ||
random_reverse=True, | ||
gen=5, | ||
pantograph_type="diamond-double", | ||
intro_year_offset=4, # introduce later than gen epoch by design | ||
extended_vehicle_life=True, | ||
fixed_run_cost_points=180, # substantial cost bonus for balance against same-era steam engines | ||
additional_liveries=[], | ||
default_livery_extra_docs_examples=[ | ||
("COLOUR_PINK", "COLOUR_WHITE"), | ||
("COLOUR_LIGHT_BLUE", "COLOUR_WHITE"), | ||
("COLOUR_PALE_GREEN", "COLOUR_PINK"), | ||
], | ||
sprites_complete=True, | ||
) | ||
|
||
consist.add_unit( | ||
type=ElectricEngineUnit, weight=92, vehicle_length=8, spriterow_num=0 | ||
) | ||
|
||
consist.description = """.""" | ||
consist.foamer_facts = """ """ | ||
|
||
return consist |
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
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
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