Skip to content

Commit

Permalink
Change: experiment with moving Lion to 3300 hp, 87 mph, and making it…
Browse files Browse the repository at this point in the history
… longer-lived by moving replacement to Toaster instead of Stentor (33 years vs. 18 years); also note that it's also inspired by HS4000 Kestrel
  • Loading branch information
andythenorth committed Sep 3, 2023
1 parent 55d63ec commit 22c4e50
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 8 deletions.
7 changes: 4 additions & 3 deletions src/vehicles/lion.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,12 @@ def main(roster_id):
role="super_heavy_freight",
role_child_branch_num=-2,
power_by_power_source={
"DIESEL": 2950,
"DIESEL": 3300, # first high HP diesel in this roster??
},
speed=87, # for lolz
random_reverse=True,
gen=4,
intro_year_offset=10, # let's be later for this one, it's short-lived also
intro_year_offset=12, # let's be later for this one, it's long-lived also
additional_liveries=["BANGER_BLUE", "SWOOSH"],
sprites_complete=True,
)
Expand All @@ -27,6 +28,6 @@ def main(roster_id):
)

consist.description = """Good horses make short miles."""
consist.foamer_facts = """BRCW / BR D0260 Lion prototype"""
consist.foamer_facts = """BRCW / BR D0260 Lion prototype, Brush HS4000 Kestrel prototype"""

return consist
2 changes: 1 addition & 1 deletion src/vehicles/stentor.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ def main(roster_id):
base_numeric_id=14420,
name="Stentor",
role="super_heavy_freight",
role_child_branch_num=-2, # Joker eh
role_child_branch_num=-3, # Joker eh
power_by_power_source={
"DIESEL": 4200,
},
Expand Down
8 changes: 4 additions & 4 deletions src/vehicles/toaster.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,16 +8,16 @@ def main(roster_id):
base_numeric_id=13840,
name="Toaster",
role="super_heavy_freight",
role_child_branch_num=-3,
role_child_branch_num=-2,
power_by_power_source={
"DIESEL": 4150,
},
# dibble for game balance, assume super-slip control
tractive_effort_coefficient=0.38,
random_reverse=True,
gen=5,
# introduce later by design
intro_year_offset=15,
gen=6,
# introduce as gen 6 by design, but then make it early
intro_year_offset=-15,
fixed_run_cost_points=220, # unrealism: run cost nerf for being so high-powered
default_livery_extra_docs_examples=[
("COLOUR_GREEN", "COLOUR_YELLOW"),
Expand Down

0 comments on commit 22c4e50

Please sign in to comment.