Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
31 changes: 0 additions & 31 deletions data/json/items/armor/storage.json
Original file line number Diff line number Diff line change
Expand Up @@ -2970,37 +2970,6 @@
"flags": [ "BELTED", "WATER_FRIENDLY", "TARDIS", "OVERSIZE", "WATCH", "THERMOMETER" ],
"armor": [ { "encumbrance": [ 0, 0 ], "covers": [ "torso" ], "specifically_covers": [ "torso_hanging_back" ] } ]
},
{
"id": "long_duffelbag",
"type": "ITEM",
"subtypes": [ "ARMOR" ],
"name": { "str": "longarm bag" },
"description": "A long duffel bag. Provides storage for long arms and rifles. Quite cumbersome.",
"weight": "1203 g",
"volume": "12 L",
"price": "180 USD",
"price_postapoc": "8 USD",
"material": [ "canvas" ],
"symbol": "[",
"looks_like": "rucksack",
"color": "green",
"pocket_data": [
{
"pocket_type": "CONTAINER",
"max_contains_volume": "50 L",
"max_contains_weight": "80 kg",
"max_item_length": "150 cm",
"magazine_well": "10 L",
"moves": 300
}
],
"warmth": 8,
"material_thickness": 1,
"flags": [ "BELTED", "WATER_FRIENDLY" ],
"armor": [
{ "encumbrance": [ 8, 42 ], "coverage": 100, "covers": [ "torso" ], "specifically_covers": [ "torso_hanging_back" ] }
]
},
{
"id": "rifle_case_soft",
"type": "ITEM",
Expand Down
5 changes: 5 additions & 0 deletions data/json/obsoletion_and_migration_0.I/migration_items.json
Original file line number Diff line number Diff line change
Expand Up @@ -2686,5 +2686,10 @@
"type": "MIGRATION",
"id": "e_combatsaw_on",
"replace": "elec_chainsaw_on"
},
{
"type": "MIGRATION",
"id": "long_duffelbag",
"replace": "duffelbag"
}
]
14 changes: 0 additions & 14 deletions data/json/recipes/armor/storage.json
Original file line number Diff line number Diff line change
Expand Up @@ -2364,20 +2364,6 @@
],
"components": [ [ [ "strap_large", 2, "LIST" ] ] ]
},
{
"result": "long_duffelbag",
"type": "recipe",
"activity_level": "LIGHT_EXERCISE",
"category": "CC_ARMOR",
"subcategory": "CSC_ARMOR_STORAGE",
"skill_used": "tailor",
"difficulty": 2,
"time": "10 h",
"autolearn": true,
"reversible": true,
"using": [ [ "tailoring_canvas_patchwork", 32 ], [ "fastener_large", 2 ], [ "waterproofing_plastic_sheets", 4 ] ],
"proficiencies": [ { "proficiency": "prof_closures" }, { "proficiency": "prof_closures_waterproofing" } ]
},
{
"result": "rifle_case_soft",
"type": "recipe",
Expand Down
6 changes: 3 additions & 3 deletions tests/reload_time_test.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
static const itype_id itype_ammo_pouch( "ammo_pouch" );
static const itype_id itype_arrow_wood( "arrow_wood" );
static const itype_id itype_backpack( "backpack" );
static const itype_id itype_long_duffelbag( "long_duffelbag" );
static const itype_id itype_backpack_giant( "backpack_giant" );
static const itype_id itype_longbow( "longbow" );
static const itype_id itype_pants( "pants" );
static const itype_id itype_pebble( "pebble" );
Expand Down Expand Up @@ -112,8 +112,8 @@ TEST_CASE( "reload_from_inventory_times", "[reload],[inventory],[balance]" )
}
}
SECTION( "reloading a bow" ) {
SECTION( "from a duffel bag" ) {
check_reload_time( itype_longbow, itype_arrow_wood, itype_long_duffelbag, 410 );
SECTION( "from a giant novelty backpack" ) {
check_reload_time( itype_longbow, itype_arrow_wood, itype_backpack_giant, 410 );
}
SECTION( "from a quiver" ) {
check_reload_time( itype_longbow, itype_arrow_wood, itype_quiver, 130 );
Expand Down
Loading