diff --git a/assets/rooms/room_reception.json b/assets/rooms/room_reception.json index eb88f44..265cd2b 100644 --- a/assets/rooms/room_reception.json +++ b/assets/rooms/room_reception.json @@ -244,6 +244,17 @@ "width":48, "x":380, "y":166 + }, + { + "height":48, + "id":13, + "name":"bluetooth_spoofer", + "rotation":0, + "type":"", + "visible":true, + "width":48, + "x":320, + "y":166 } ], "opacity":1, @@ -253,7 +264,7 @@ "y":0 }], "nextlayerid":12, - "nextobjectid":11, + "nextobjectid":14, "orientation":"orthogonal", "renderorder":"right-down", "tiledversion":"1.11.0", diff --git a/assets/scenarios/ceo_exfil.json b/assets/scenarios/ceo_exfil.json index bf5be26..2a77d16 100644 --- a/assets/scenarios/ceo_exfil.json +++ b/assets/scenarios/ceo_exfil.json @@ -45,7 +45,14 @@ "name": "Bluetooth Scanner", "takeable": true, "observations": "A device for detecting nearby Bluetooth signals", - "canScanBluetooth": true, + "canScanBluetooth": true + }, + { + "type": "bluetooth_spoofer", + "name": "Bluetooth Spoofer", + "takeable": true, + "observations": "A specialized device that can mimic Bluetooth signals from other devices", + "canSpoofBluetooth": true, "mac": "00:11:22:33:44:55" } ] diff --git a/index.html b/index.html index 93820bb..abfa0b7 100644 --- a/index.html +++ b/index.html @@ -955,6 +955,7 @@ this.load.image('book', 'assets/objects/book.png'); this.load.image('workstation', 'assets/objects/workstation.png'); this.load.image('bluetooth_scanner', 'assets/objects/bluetooth_scanner.png'); + this.load.image('bluetooth_spoofer', 'assets/objects/bluetooth_spoofer.png'); this.load.image('tablet', 'assets/objects/tablet.png'); this.load.image('fingerprint_kit', 'assets/objects/fingerprint_kit.png'); this.load.image('lockpick', 'assets/objects/lockpick.png');