Skip to content

Commit

Permalink
Change: add NG rock hoppers (gen 3)
Browse files Browse the repository at this point in the history
  • Loading branch information
andythenorth committed May 19, 2024
1 parent c20a652 commit c491f4f
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 0 deletions.
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.
26 changes: 26 additions & 0 deletions src/vehicles/pony/rock_hopper_cars_pony.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,32 @@


def main(roster_id, **kwargs):
# --------------- narrow gauge -----------------------------------------------------------------

consist = HopperCarRockConsist(
roster_id=roster_id,
roster_id_providing_module=kwargs["roster_id_providing_module"],
base_numeric_id=27060,
gen=3,
subtype="A",
base_track_type_name="NG",
sprites_complete=True,
)

consist.add_unit(type=FreightCar, chassis="4_axle_ng_16px")

consist = HopperCarRockConsist(
roster_id=roster_id,
roster_id_providing_module=kwargs["roster_id_providing_module"],
base_numeric_id=21990,
gen=3,
subtype="B",
base_track_type_name="NG",
sprites_complete=True,
)

consist.add_unit(type=FreightCar, chassis="4_axle_ng_24px")

# --------------- standard gauge ---------------------------------------------------------------

consist = HopperCarRockConsist(
Expand Down

0 comments on commit c491f4f

Please sign in to comment.