Skip to content

Commit

Permalink
feat(content): the armored wheel is now off-road (#4363)
Browse files Browse the repository at this point in the history
* armored wheel is now off-road too.

* The double space police proves its usefulness yet again

* Update vehicle_efficiency_test.cpp

---------

Co-authored-by: Chaosvolt <chaosvolt@users.noreply.github.com>
  • Loading branch information
cthae and chaosvolt authored Mar 18, 2024
1 parent ce27bd8 commit e49d4a0
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion data/json/items/vehicle/wheel.json
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@
"id": "wheel_armor",
"category": "veh_parts",
"name": { "str": "armored wheel" },
"description": "A wide military grade wheel.",
"description": "A wide military grade wheel. Performs well off-road.",
"weight": "24500 g",
"volume": "17500 ml",
"price": "340 USD",
Expand Down
2 changes: 1 addition & 1 deletion data/json/vehicleparts/wheel.json
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,7 @@
{ "item": "chunk_rubber", "count": [ 2, 3 ] }
],
"rolling_resistance": 0.6,
"wheel_type": "standard",
"wheel_type": "off-road",
"contact_area": 480,
"requirements": {
"install": { "skills": [ [ "mechanics", 0 ] ], "time": "20 m", "using": [ [ "vehicle_bolt", 1 ] ] },
Expand Down
4 changes: 2 additions & 2 deletions tests/vehicle_efficiency_test.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -449,8 +449,8 @@ TEST_CASE( "vehicle_efficiency", "[vehicle] [engine]" )
test_vehicle( "fire_truck", 6319523, 410700, 83850, 19080, 4063 );
test_vehicle( "truck_swat", 5966006, 682900, 131700, 29610, 7604 );
test_vehicle( "tractor_plow", 725658, 681200, 681200, 132400, 132400 );
test_vehicle( "apc", 5805459, 2103310, 1453820, 110600, 75190 );
test_vehicle( "humvee", 5506381, 767900, 306900, 25620, 9171 );
test_vehicle( "apc", 5805459, 2103310, 2124343, 110600, 110657 );
test_vehicle( "humvee", 5506381, 767900, 564679, 25620, 18343 );
test_vehicle( "road_roller", 8831804, 602500, 147100, 22760, 6925 );
test_vehicle( "golf_cart", 319630, 49585, 47185, 22700, 12745 );

Expand Down

0 comments on commit e49d4a0

Please sign in to comment.