diff --git a/src/open_samus_returns_rando/files/romfs/actors/items/powerup_darkburst/models/powerup_darkburst.bcmdl b/src/open_samus_returns_rando/files/romfs/actors/items/powerup_darkburst/models/powerup_darkburst.bcmdl new file mode 100644 index 0000000..582f3f9 Binary files /dev/null and b/src/open_samus_returns_rando/files/romfs/actors/items/powerup_darkburst/models/powerup_darkburst.bcmdl differ diff --git a/src/open_samus_returns_rando/files/romfs/actors/items/powerup_darkburst/models/textures/missile_d.bctex b/src/open_samus_returns_rando/files/romfs/actors/items/powerup_darkburst/models/textures/missile_d.bctex new file mode 100644 index 0000000..4336003 Binary files /dev/null and b/src/open_samus_returns_rando/files/romfs/actors/items/powerup_darkburst/models/textures/missile_d.bctex differ diff --git a/src/open_samus_returns_rando/pickups/model_data.py b/src/open_samus_returns_rando/pickups/model_data.py index eff52ad..ea1fead 100644 --- a/src/open_samus_returns_rando/pickups/model_data.py +++ b/src/open_samus_returns_rando/pickups/model_data.py @@ -340,6 +340,13 @@ class ModelData: "actors/items/powerup_icespreader/models/textures/missile_d.bctex", ), ), + "powerup_darkburst": ModelData( + bcmdl_path="actors/items/powerup_darkburst/models/powerup_darkburst.bcmdl", + dependencies=( + "actors/items/powerup_darkburst/models/powerup_darkburst.bcmdl", + "actors/items/powerup_darkburst/models/textures/missile_d.bctex", + ), + ), } diff --git a/tests/test_files/item_models_test.json b/tests/test_files/item_models_test.json index 0607cc0..a73357d 100644 --- a/tests/test_files/item_models_test.json +++ b/tests/test_files/item_models_test.json @@ -804,6 +804,25 @@ "model": [ "powerup_icespreader" ] + }, + { + "pickup_type": "actor", + "caption": "Sent Darkburst to meep.", + "resources": [ + [ + { + "item_id": "ITEM_NONE", + "quantity": 0 + } + ] + ], + "pickup_actor": { + "scenario": "s000_surface", + "actor": "another_pickup41" + }, + "model": [ + "powerup_darkburst" + ] } ], "energy_per_tank": 100, @@ -1303,6 +1322,18 @@ "z": 0.0 }, "collision_camera_name": "collision_camera_000" + }, + { + "new_actor": { + "actor": "another_pickup41", + "scenario": "s000_surface" + }, + "location": { + "x": -6300.0, + "y": 2100.0, + "z": 0.0 + }, + "collision_camera_name": "collision_camera_000" } ], "hints": [],