diff --git a/industry/cargos/alcohol.py b/industry/cargos/alcohol.py index 5b9604bf..8d9fbe1f 100644 --- a/industry/cargos/alcohol.py +++ b/industry/cargos/alcohol.py @@ -7,4 +7,7 @@ grf.CargoClass.EXPRESS | grf.CargoClass.PIECE_GOODS | grf.CargoClass.LIQUID, weight=17, units_text=CargoUnit.LITRE, + penalty1=9, + penalty2=36, + base_price=166, ) diff --git a/industry/cargos/ammonia.py b/industry/cargos/ammonia.py index d2e6c2cc..af474bd4 100644 --- a/industry/cargos/ammonia.py +++ b/industry/cargos/ammonia.py @@ -7,4 +7,7 @@ grf.CargoClass.LIQUID | grf.CargoClass.HAZARDOUS, weight=10, units_text=CargoUnit.LITRE, + penalty1=32, + penalty2=64, + base_price=109, ) diff --git a/industry/cargos/building_materials.py b/industry/cargos/building_materials.py index 2fd672d2..d1fb966d 100644 --- a/industry/cargos/building_materials.py +++ b/industry/cargos/building_materials.py @@ -6,4 +6,7 @@ b"BDMT", grf.CargoClass.BULK | grf.CargoClass.PIECE_GOODS, units_text=CargoUnit.CRATE, + penalty1=12, + penalty2=255, + base_price=133, ) diff --git a/industry/cargos/chemicals.py b/industry/cargos/chemicals.py index af099e50..c9db59b5 100644 --- a/industry/cargos/chemicals.py +++ b/industry/cargos/chemicals.py @@ -7,4 +7,7 @@ grf.CargoClass.LIQUID | grf.CargoClass.PIECE_GOODS | grf.CargoClass.HAZARDOUS, weight=19, units_text=CargoUnit.LITRE, + penalty1=20, + penalty2=255, + base_price=115, ) diff --git a/industry/cargos/china_clay.py b/industry/cargos/china_clay.py index 647c44b2..90b030d1 100644 --- a/industry/cargos/china_clay.py +++ b/industry/cargos/china_clay.py @@ -6,4 +6,7 @@ b"KAOL", grf.CargoClass.BULK | grf.CargoClass.LIQUID | grf.CargoClass.COVERED, units_text=CargoUnit.TONNE, + penalty1=30, + penalty2=255, + base_price=100, ) diff --git a/industry/cargos/coal.py b/industry/cargos/coal.py index 2647295d..7742993c 100644 --- a/industry/cargos/coal.py +++ b/industry/cargos/coal.py @@ -6,4 +6,7 @@ b"COAL", grf.CargoClass.BULK, units_text=CargoUnit.TONNE, + penalty1=40, + penalty2=255, + base_price=86, ) diff --git a/industry/cargos/copper_ore.py b/industry/cargos/copper_ore.py index e0c27c78..945db305 100644 --- a/industry/cargos/copper_ore.py +++ b/industry/cargos/copper_ore.py @@ -6,4 +6,7 @@ b"CORE", grf.CargoClass.BULK, units_text=CargoUnit.TONNE, + penalty1=30, + penalty2=255, + base_price=89, ) diff --git a/industry/cargos/diamonds.py b/industry/cargos/diamonds.py index 3f6d99cb..8cbc66d4 100644 --- a/industry/cargos/diamonds.py +++ b/industry/cargos/diamonds.py @@ -7,4 +7,7 @@ grf.CargoClass.ARMOURED, weight=2, units_text=CargoUnit.BAG, + penalty1=30, + penalty2=255, + base_price=162, ) diff --git a/industry/cargos/engineering_supplies.py b/industry/cargos/engineering_supplies.py index ea80bde4..f1a10173 100644 --- a/industry/cargos/engineering_supplies.py +++ b/industry/cargos/engineering_supplies.py @@ -6,4 +6,7 @@ b"ENSP", grf.CargoClass.EXPRESS | grf.CargoClass.PIECE_GOODS, units_text=CargoUnit.CRATE, + penalty1=2, + penalty2=32, + base_price=172, ) diff --git a/industry/cargos/explosives.py b/industry/cargos/explosives.py index bb7c623b..92cedb58 100644 --- a/industry/cargos/explosives.py +++ b/industry/cargos/explosives.py @@ -7,4 +7,7 @@ grf.CargoClass.EXPRESS | grf.CargoClass.PIECE_GOODS, weight=4, units_text=CargoUnit.CRATE, + penalty1=6, + penalty2=42, + base_price=158, ) diff --git a/industry/cargos/farm_supplies.py b/industry/cargos/farm_supplies.py index a8a33c78..09679678 100644 --- a/industry/cargos/farm_supplies.py +++ b/industry/cargos/farm_supplies.py @@ -7,4 +7,7 @@ grf.CargoClass.EXPRESS | grf.CargoClass.PIECE_GOODS, weight=10, units_text=CargoUnit.CRATE, + penalty1=2, + penalty2=32, + base_price=170, ) diff --git a/industry/cargos/fertiliser.py b/industry/cargos/fertiliser.py index eb2a2711..0a77e89f 100644 --- a/industry/cargos/fertiliser.py +++ b/industry/cargos/fertiliser.py @@ -6,4 +6,7 @@ b"FERT", grf.CargoClass.EXPRESS | grf.CargoClass.PIECE_GOODS, units_text=CargoUnit.TONNE, + penalty1=22, + penalty2=44, + base_price=123, ) diff --git a/industry/cargos/fish.py b/industry/cargos/fish.py index 6c2a4438..227065bd 100644 --- a/industry/cargos/fish.py +++ b/industry/cargos/fish.py @@ -6,4 +6,7 @@ b"FISH", grf.CargoClass.EXPRESS | grf.CargoClass.REFRIGERATED, units_text=CargoUnit.TONNE, + penalty1=0, + penalty2=18, + base_price=134, ) diff --git a/industry/cargos/passengers.py b/industry/cargos/passengers.py index e31d6bd7..d45ceb96 100644 --- a/industry/cargos/passengers.py +++ b/industry/cargos/passengers.py @@ -8,4 +8,7 @@ capacity_multiplier=0x400, weight=1, units_text=CargoUnit.PASSENGER, + penalty1=0, + penalty2=22, + base_price=46, )