Skip to content

Commit

Permalink
Change: add standard gauge ingot cars
Browse files Browse the repository at this point in the history
  • Loading branch information
andythenorth committed Sep 9, 2023
1 parent 36d70d6 commit dbf21f6
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 0 deletions.
Binary file added src/graphics/pony/ingot_car_pony_gen_1U.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/graphics/pony/ingot_car_pony_gen_4U.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
25 changes: 25 additions & 0 deletions src/vehicles/ingot_cars.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,3 +15,28 @@ def main():
)

consist.add_unit(type=IngotCar, chassis="empty_8px", repeat=2)

# --------------- pony -------------------------------------------------------------------------

consist = IngotCarConsist(
roster_id="pony",
base_numeric_id=80,
gen=1,
subtype="U",
speed=35, # note rare non-standard speed, don't spill hot ingots eh?
sprites_complete=False,
)

consist.add_unit(type=IngotCar, chassis="empty_8px", repeat=2)


consist = IngotCarConsist(
roster_id="pony",
base_numeric_id=60,
gen=4,
subtype="U",
speed=35, # note rare non-standard speed, don't spill hot ingots eh?
sprites_complete=False,
)

consist.add_unit(type=IngotCar, chassis="empty_8px", repeat=2)

0 comments on commit dbf21f6

Please sign in to comment.