-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathEquipment _ Phasmophobia Wiki _ Fandom.html
1994 lines (1866 loc) · 294 KB
/
Equipment _ Phasmophobia Wiki _ Fandom.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html class="client-nojs" lang="en" dir="ltr">
<head>
<meta charset="UTF-8"/>
<title>Equipment | Phasmophobia Wiki | Fandom</title>
<script>document.documentElement.className="client-js";RLCONF={"wgBreakFrames":!1,"wgSeparatorTransformTable":["",""],"wgDigitTransformTable":["",""],"wgDefaultDateFormat":"dmy","wgMonthNames":["","January","February","March","April","May","June","July","August","September","October","November","December"],"wgRequestId":"5a057d95bf1d639a","wgCSPNonce":!1,"wgCanonicalNamespace":"","wgCanonicalSpecialPageName":!1,"wgNamespaceNumber":0,"wgPageName":"Equipment","wgTitle":"Equipment","wgCurRevisionId":14492,"wgRevisionId":14492,"wgArticleId":183,"wgIsArticle":!0,"wgIsRedirect":!1,"wgAction":"view","wgUserName":null,"wgUserGroups":["*"],"wgCategories":["Verification needed","Equipment","Maps","Update"],"wgPageContentLanguage":"en","wgPageContentModel":"wikitext","wgRelevantPageName":"Equipment","wgRelevantArticleId":183,"wgIsProbablyEditable":!1,"wgRelevantPageIsProbablyEditable":!1,"wgRestrictionEdit":[],"wgRestrictionMove":[],"wgRestrictionComment":[],"wgNoExternals":!1,
"wgArticleInterlangList":["fr:Équipement"],"wikiaPageType":"article","isDarkTheme":!0,"wgVisualEditor":{"pageLanguageCode":"en","pageLanguageDir":"ltr","pageVariantFallbacks":"en"},"wgEnableLightboxExt":!0,"wgMFDisplayWikibaseDescriptions":{"search":!1,"nearby":!1,"watchlist":!1,"tagline":!1},"egMapsScriptPath":"/extensions-ucp/v2/Maps/","egMapsDebugJS":!1,"egMapsAvailableServices":["leaflet","googlemaps3"],"egMapsLeafletLayersApiKeys":{"MapBox":"","MapQuestOpen":"","Thunderforest":"","GeoportailFrance":""},"wgDisableCMSNotifications":!1,"wgEditSubmitButtonLabelPublish":!1,"egFacebookAppId":"112328095453510","comscoreKeyword":"wikiacsid_games","quantcastLabels":"Genre.mystery,Genre.horror,Genre.indie,Genre.thriller,Media.games,Theme.psychological,Theme.ghost","wgCategorySelect":{"defaultNamespace":"Category","defaultNamespaces":"Category"},"viewTrackURL":
"https://beacon.wikia-services.com/__track/view?a=183\u0026n=0\u0026env=prod\u0026c=2376699\u0026lc=en\u0026lid=75\u0026x=phasmophobia\u0026s=ucp_desktop\u0026mobile_theme=fandom-dark\u0026rollout_tracking=mw137","viewTrackUrlPrefix":"https://beacon.wikia-services.com/__track/view?a=183\u0026n=0\u0026env=prod\u0026c=2376699\u0026lc=en\u0026lid=75\u0026x=phasmophobia\u0026s=ucp_desktop\u0026mobile_theme=fandom-dark\u0026rollout_tracking=mw137","wgEnableHydraFeatures":!1,"wgEnableWikiaBarExt":!0,"wgEnableWikiaBarAds":!0,"wgWikiaBarMainLanguages":["de","en","es","fr"],"wgDisableAnonymousEditing":!0,"articleCommentsThreadId":null,"articleCommentsReplyId":null,"articleHasCommentingEnabled":!0,"userCanComment":!1,"userCanDelete":!1,"userCanSuppress":!1,"enablePostHistory":!0,"personalizedRecommendationsMessage":"Recommended for you","wgPerformanceMonitoringSamplingFactor":10,"wgPerformanceMonitoringEndpointUrl":
"https://beacon.wikia-services.com/__track/special/performance_metrics?w=2376699\u0026lc=en\u0026d=phasmophobia\u0026s=ucp_desktop\u0026u=0\u0026i=sjc-prod\u0026a=https%3A%2F%2Fphasmophobia.fandom.com%2Fwiki%2FEquipment","wgSoftwareVersion":"release-552_release-525@release-552.006_release-525.054","wgArticleFeaturedVideo":{"lang":"en","mediaId":"K21eFFRc","isDedicatedForArticle":!1,"impressionsPerSession":3,"tier3Mapping":!1,"duration":"01:43","videoTags":"Games,Gaming","metadata":{"name":"Wiki Targeted (Games)","thumbnailUrl":"https://cdn.jwplayer.com/v2/media/XUMg12N5/poster.jpg?width=720","uploadDate":"2023-03-02T22:04:26+00:00","duration":"PT01M43S","description":"","contentUrl":"https://cdn.jwplayer.com/videos/XUMg12N5-cSpmBcaY.mp4"},"title":"Wiki Targeted (Games)","description":"","kind":"DYNAMIC","feedid":"K21eFFRc","links":{"first":"https://cdn.jwplayer.com/v2/playlists/K21eFFRc?max_resolution=1280\u0026format=json\u0026internal=false\u0026page_offset=1\u0026page_limit=1"
,"last":"https://cdn.jwplayer.com/v2/playlists/K21eFFRc?max_resolution=1280\u0026format=json\u0026internal=false\u0026page_offset=10\u0026page_limit=1","next":"https://cdn.jwplayer.com/v2/playlists/K21eFFRc?max_resolution=1280\u0026format=json\u0026internal=false\u0026page_offset=2\u0026page_limit=1"},"playlist":[{"title":"CCL Top 5 Plays - Week 1","mediaid":"XUMg12N5","link":"https://www.fandom.com/video/XUMg12N5/top-5-plays-week-1","image":"https://cdn.jwplayer.com/v2/media/XUMg12N5/poster.jpg?width=720","images":[{"src":"https://cdn.jwplayer.com/v2/media/XUMg12N5/poster.jpg?width=320","width":320,"type":"image/jpeg"},{"src":"https://cdn.jwplayer.com/v2/media/XUMg12N5/poster.jpg?width=480","width":480,"type":"image/jpeg"},{"src":"https://cdn.jwplayer.com/v2/media/XUMg12N5/poster.jpg?width=640","width":640,"type":"image/jpeg"},{"src":"https://cdn.jwplayer.com/v2/media/XUMg12N5/poster.jpg?width=720","width":720,"type":"image/jpeg"},{"src":
"https://cdn.jwplayer.com/v2/media/XUMg12N5/poster.jpg?width=1280","width":1280,"type":"image/jpeg"},{"src":"https://cdn.jwplayer.com/v2/media/XUMg12N5/poster.jpg?width=1920","width":1920,"type":"image/jpeg"}],"feedid":"K21eFFRc","duration":103,"pubdate":1677794666,"description":"","tags":"Games,Gaming","sources":[{"file":"https://cdn.jwplayer.com/manifests/XUMg12N5.m3u8?max_resolution=1280","type":"application/vnd.apple.mpegurl"},{"file":"https://cdn.jwplayer.com/videos/XUMg12N5-TI0yeHZW.mp4","type":"video/mp4","height":180,"width":320,"label":"180p","bitrate":491854,"filesize":6332629,"framerate":30},{"file":"https://cdn.jwplayer.com/videos/XUMg12N5-DnzUC89Y.mp4","type":"video/mp4","height":270,"width":480,"label":"270p","bitrate":686800,"filesize":8842555,"framerate":30},{"file":"https://cdn.jwplayer.com/videos/XUMg12N5-xhZUqUI6.mp4","type":"video/mp4","height":406,"width":720,"label":"406p","bitrate":1013032,"filesize":13042794,"framerate":30},{"file":
"https://cdn.jwplayer.com/videos/XUMg12N5-1lt3rSsE.mp4","type":"video/mp4","height":720,"width":1280,"label":"720p","bitrate":2295373,"filesize":29552932,"framerate":30},{"file":"https://cdn.jwplayer.com/videos/XUMg12N5-LiJWxqIn.m4a","type":"audio/mp4","label":"AAC Audio","bitrate":114238,"filesize":1470826},{"file":"https://cdn.jwplayer.com/videos/XUMg12N5-cSpmBcaY.mp4","type":"video/mp4","height":1080,"width":1920,"label":"1080p","bitrate":4523463,"filesize":58239588,"framerate":30}],"tracks":[{"file":"https://cdn.jwplayer.com/strips/XUMg12N5-120.vtt","kind":"thumbnails"}],"jwpseg":["80011079","80011080","80011081","80011082","CMTPI-0059DF08","CMTPI-0BF58D82","CMTPI-0D820080","CMTPI-0EF8C0FC","CMTPI-129516EC","CMTPI-16A13FA0","CMTPI-17E1858C","CMTPI-1801D437","CMTPI-18220805","CMTPI-1A914BA9","CMTPI-1C68658B","CMTPI-20972238","CMTPI-214AEA2B","CMTPI-28EF756E","CMTPI-298C1144","CMTPI-29EB2E80","CMTPI-2CB853D8","CMTPI-2FD41300","CMTPI-32EEF776","CMTPI-3A3C4C86","CMTPI-3A3D73D1",
"CMTPI-3B1F64F2","CMTPI-3BF4C761","CMTPI-3C3D93D3","CMTPI-3C5D709B","CMTPI-3E34813A","CMTPI-40E2BC75","CMTPI-41AE15D8","CMTPI-434208A3","CMTPI-43DB8114","CMTPI-456A40FB","CMTPI-468780F8","CMTPI-4A797E04","CMTPI-4C74FA64","CMTPI-4C78F6C7","CMTPI-4E807C99","CMTPI-4E9D34DD","CMTPI-4EDCA4BA","CMTPI-501E7815","CMTPI-50A1AE94","CMTPI-52854BF9","CMTPI-54B3F68C","CMTPI-564BDB0E","CMTPI-57B67DE4","CMTPI-5ACCB87D","CMTPI-5B0F2BAA","CMTPI-5B9116B8","CMTPI-5D8B9118","CMTPI-5E59A0FD","CMTPI-62382625","CMTPI-63D8A54B","CMTPI-674B4FDD","CMTPI-697B8462","CMTPI-6C948CDE","CMTPI-6CFA8301","CMTPI-6F0857A8","CMTPI-718B3060","CMTPI-71FEED05","CMTPI-7232FEF3","CMTPI-7263294A","CMTPI-7346A449","CMTPI-77B6A0A4","CMTPI-795ACE23","CMTPI-79A545BA","CMTPI-7BFDFB83","CMTPI-7D6DB333","CMTPI-83C73318","CMTPI-89F0B407","CMTPI-8E8A5556","CMTPI-8F0256F5","CMTPI-91B4B8A6","CMTPI-96FC6C06","CMTPI-984BCCFF","CMTPI-9934B409","CMTPI-99CEEDE8","CMTPI-A2F0F533","CMTPI-A483A820","CMTPI-A6886128","CMTPI-A91ACFF2",
"CMTPI-AABB9CCA","CMTPI-AC2C56B0","CMTPI-AD2B955A","CMTPI-B036B396","CMTPI-B589368E","CMTPI-B9A1EE8A","CMTPI-B9DA6E48","CMTPI-B9E4BFCF","CMTPI-C01F4CFD","CMTPI-C4EA78D9","CMTPI-C62EB36B","CMTPI-CB9C09B9","CMTPI-CC176359","CMTPI-CE58AFA9","CMTPI-CEFA13A3","CMTPI-CF57DBA3","CMTPI-CFB4B3E3","CMTPI-D196FF45","CMTPI-D1DFAFF8","CMTPI-D5172FF2","CMTPI-D57220A0","CMTPI-D727A638","CMTPI-D76CDC84","CMTPI-DC46F2B4","CMTPI-DD635F5C","CMTPI-E2876E9D","CMTPI-E4A035FB","CMTPI-E512F21E","CMTPI-E5980AAF","CMTPI-E62C5E5E","CMTPI-E884C5E3","CMTPI-E8DF00E6","CMTPI-E914FCF7","CMTPI-EA82FD75","CMTPI-EB768A63","CMTPI-F03021C3","CMTPI-F0583F13","CMTPI-F149D4DF","CMTPI-F70B1614","CMTPI-F92CCD2F","CMTPI-F9D85EE2"],"jwpseg_client_side":["CMTPI-1C68658B","CMTPI-2CB853D8","CMTPI-34BCF3D7","CMTPI-3A3C4C86","CMTPI-4C74FA64","CMTPI-5E865311","CMTPI-647F1C78","CMTPI-665EFB6C","CMTPI-6CCEA632","CMTPI-6F0857A8","CMTPI-75C90ECC","CMTPI-7BFDFB83","CMTPI-86492ADF","CMTPI-8E8A5556","CMTPI-AD2B955A","CMTPI-AE251530",
"CMTPI-B036B396","CMTPI-B056BE1F","CMTPI-B9A1EE8A","CMTPI-C01F4CFD","CMTPI-CB9C09B9","CMTPI-CE58AFA9","CMTPI-CF57DBA3","CMTPI-DD635F5C","CMTPI-E8DF00E6","CMTPI-EB768A63","CMTPI-F03021C3"],"variations":[],"Sponsored":"U.S. Navy","Person":"","IP":"","Language":"EN","isSponsored":"Yes","WikiTargetedPlaylist":"Gaming","Endemic":"Non-Endemic","Vertical":"Gaming","Series":"","Duration":"5mins","Format":""}],"feed_instance_id":"08f71944-6fce-474b-82bc-0547a4e71b63","jwpseg":{"request_id":"39c105b6-406b-4fc1-b258-56b7110cc469","target_profiles":{"CMTPI-AD2B955A":{"performance_targets":{"ad_100pct_completion":0.75,"ad_iab_viewability":0.75},"decision_thresholds":{"ad_iab_viewability":{"v4":0.5561025076604527,"v5-passthrough":0.6589572721155995},"ad_100pct_completion":{"v2-passthrough":0.5849995168792853}}},"CMTPI-3A3C4C86":{"performance_targets":{"ad_iab_viewability":0.75},"decision_thresholds":{"ad_iab_viewability":{"v4":0.7535981667192195,"v5-passthrough":0.8863273241426698}}},
"CMTPI-6F0857A8":{"performance_targets":{"ad_100pct_completion":0.65,"ad_iab_viewability":0.65},"decision_thresholds":{"ad_iab_viewability":{"v4":0.5084491256228931,"v5-passthrough":0.6070458855579469},"ad_100pct_completion":{"v2-passthrough":0.5335825000508997}}},"CMTPI-EB768A63":{"performance_targets":{"ad_iab_viewability":0.65},"decision_thresholds":{"ad_iab_viewability":{"v4":0,"v5-passthrough":0}}},"CMTPI-2CB853D8":{"performance_targets":{"ad_100pct_completion":0.7,"ad_iab_viewability":0.7},"decision_thresholds":{"ad_iab_viewability":{"v4":0.30124417750590393,"v5-passthrough":0.44584237409990723},"ad_100pct_completion":{"v2-passthrough":0.2140295860087163}}},"CMTPI-C01F4CFD":{"performance_targets":{"ad_100pct_completion":0.65},"decision_thresholds":{"ad_100pct_completion":{"v2-passthrough":0}}},"CMTPI-CE58AFA9":{"performance_targets":{"ad_100pct_completion":0.65},"decision_thresholds":{"ad_100pct_completion":{"v2-passthrough":0}}},"CMTPI-CB9C09B9":{"performance_targets":{
"ad_100pct_completion":0.65},"decision_thresholds":{"ad_100pct_completion":{"v2-passthrough":0}}},"CMTPI-1C68658B":{"performance_targets":{"ad_100pct_completion":0.7},"decision_thresholds":{"ad_100pct_completion":{"v2-passthrough":0.34281407151587917}}},"CMTPI-E8DF00E6":{"performance_targets":{"ad_100pct_completion":0.6},"decision_thresholds":[]},"CMTPI-4C74FA64":{"performance_targets":{"ad_100pct_completion":0.6},"decision_thresholds":{"ad_100pct_completion":{"v2-passthrough":0}}},"CMTPI-B036B396":{"performance_targets":{"ad_100pct_completion":0.65},"decision_thresholds":{"ad_100pct_completion":{"v2-passthrough":0}}},"CMTPI-7BFDFB83":{"performance_targets":{"ad_100pct_completion":0.65},"decision_thresholds":{"ad_100pct_completion":{"v2-passthrough":0}}},"CMTPI-B9A1EE8A":{"performance_targets":{"ad_100pct_completion":0.6},"decision_thresholds":{"ad_100pct_completion":{"v2-passthrough":0}}},"CMTPI-5E865311":{"performance_targets":{"ad_100pct_completion":0.8},"decision_thresholds":{
"ad_100pct_completion":{"v2-passthrough":0.7575219265314104}}},"CMTPI-DD635F5C":{"performance_targets":{"ad_100pct_completion":0.65},"decision_thresholds":{"ad_100pct_completion":{"v2-passthrough":0}}},"CMTPI-CF57DBA3":{"performance_targets":{"ad_100pct_completion":0.65,"ad_iab_viewability":0.65},"decision_thresholds":{"ad_iab_viewability":{"v4":0,"v5-passthrough":0.041263072425151016},"ad_100pct_completion":{"v2-passthrough":0}}},"CMTPI-AE251530":{"performance_targets":{"ad_100pct_completion":0.95},"decision_thresholds":{"ad_100pct_completion":{"v2-passthrough":0.9}}},"CMTPI-B056BE1F":{"performance_targets":{"ad_100pct_completion":0.9},"decision_thresholds":{"ad_100pct_completion":{"v2-passthrough":0.8643954948961078}}},"CMTPI-75C90ECC":{"performance_targets":{"ad_100pct_completion":0.85},"decision_thresholds":{"ad_100pct_completion":{"v2-passthrough":0.7921338916445676}}},"CMTPI-647F1C78":{"performance_targets":{"ad_100pct_completion":0.8},"decision_thresholds":{
"ad_100pct_completion":{"v2-passthrough":0.6728730815239736}}},"CMTPI-F03021C3":{"performance_targets":{"ad_100pct_completion":0.65,"ad_iab_viewability":0.65},"decision_thresholds":{"ad_iab_viewability":{"v4":0,"v5-passthrough":0.041263015531187476},"ad_100pct_completion":{"v2-passthrough":0}}},"CMTPI-86492ADF":{"performance_targets":{"ad_100pct_completion":0.95},"decision_thresholds":{"ad_100pct_completion":{"v2-passthrough":0.9}}},"CMTPI-665EFB6C":{"performance_targets":{"ad_100pct_completion":0.9},"decision_thresholds":{"ad_100pct_completion":{"v2-passthrough":0.8643954952145693}}},"CMTPI-34BCF3D7":{"performance_targets":{"ad_100pct_completion":0.85},"decision_thresholds":{"ad_100pct_completion":{"v2-passthrough":0.7921338987091615}}},"CMTPI-6CCEA632":{"performance_targets":{"ad_100pct_completion":0.8},"decision_thresholds":{"ad_100pct_completion":{"v2-passthrough":0.6728730743944629}}},"CMTPI-8E8A5556":{"performance_targets":{"ad_100pct_completion":0.65},"decision_thresholds":{
"ad_100pct_completion":{"v2-passthrough":0.033041094056231755}}}},"parameters":{"ad_iab_viewability":[{"model_id":"v5-passthrough","version":"3508e2fc","definition":"{\"features\": [{\"name\": \"74b09a7c\", \"transformation\": null}], \"model\": {\"type\": \"passthrough\", \"features\": [\"74b09a7c\"]}}"},{"model_id":"v4","version":"1b5b1126","definition":"{\"features\": [{\"name\": \"fcc4038c\", \"transformation\": null}, {\"name\": \"87030160\", \"transformation\": null}, {\"name\": \"019bd2f7\", \"transformation\": null}, {\"name\": \"is_player_viewable\", \"transformation\": null}], \"model\": {\"type\": \"logistic_regression\", \"features\": [\"fcc4038c\", \"87030160\", \"019bd2f7\", \"is_player_viewable\"], \"weights\": [0.9596532433430145, -3.493381545891842, 4.077428924373407, 0.9654438349674279], \"bias\": -3.1557879125266823}}"}],"ad_100pct_completion":[{"model_id":"v2-passthrough","version":"2f927e94","definition":
"{\"features\": [{\"name\": \"e190d30e\", \"transformation\": null}], \"model\": {\"type\": \"passthrough\", \"features\": [\"e190d30e\"]}}"}]},"metrics":{"domain":[],"media":[],"defaults":{"019bd2f7":0.8218929168822264,"09ac3ac2":0.7415011523519824,"2a1d8232":0.7642046656699341,"2e70f54c":0.6393274317178747,"4e636587":0.07043930095234245,"74b09a7c":0.8193487803956391,"86cd6f76":0.013035382619411258,"87030160":0,"a68ccb55":0.6127217185968828,"e190d30e":0.7219191596181568,"fcc4038c":0.8162560280745128}}}},"wgJwPlayerUrl":null,"wgPageLanguageHasWordBreaks":!0,"wgEnableDiscussions":!0,"wgRequestInWikiContext":!0,"wgIsFancentralWiki":!1,"isGamepedia":!1,"wgRailModuleList":["Fandom\\FandomDesktop\\Rail\\PopularPagesModuleService"],"wgRailModuleParams":[]};RLSTATE={"site.styles":"ready","noscript":"ready","user.styles":"ready","user.options":"loading","jquery.tablesorter.styles":"ready","ext.visualEditor.desktopArticleTarget.noscript":"ready","ext.staffSig.css":"ready",
"vendor.bootstrap.popover.css":"ready","ext.fandom.bannerNotifications.desktop.css":"ready","ext.fandom.quickBar.css":"ready","ext.fandom.CreatePage.css":"ready","skin.fandomdesktop.FanFeed.css":"ready","ext.fandom.FandomEmbedVideo.css":"ready","ext.fandom.ArticleInterlang.css":"ready","ext.fandom.ArticleVideo.desktop.css":"ready","ext.fandom.HighlightToAction.css":"ready","ext.fandom.UserPreferencesV2.css":"ready","ext.fandom.Thumbnails.css":"ready","skin.fandomdesktop.Math.css":"ready","skin.fandomdesktop.CargoTables-ext.css":"ready","skin.fandomdesktop.styles":"ready","ext.fandomVideo.css":"ready","ext.fandom.GlobalComponents.GlobalNavigationTheme.default.css":"ready","ext.fandom.GlobalComponents.GlobalComponentsTheme.dark.css":"ready","ext.fandom.GlobalComponents.GlobalNavigation.css":"ready","ext.fandom.GlobalComponents.GlobalFooter.css":"ready","ext.fandom.GlobalComponents.CommunityHeader.css":"ready","ext.fandom.GlobalComponents.StickyNavigation.css":"ready",
"ext.fandom.GlobalComponents.CommunityHeaderBackground.css":"ready","skin.fandomdesktop.rail.popularPages.css":"ready","skin.fandomdesktop.rail.css":"ready"};RLPAGEMODULES=["site","mediawiki.page.ready","jquery.tablesorter","mediawiki.toc","ext.fandom.mediaWikiMigrationHooks.js","ext.visualEditor.desktopArticleTarget.init","ext.visualEditor.targetLoader","ext.fandom.FacebookTags.js","ext.fandom.AnalyticsEngine.comscore.js","ext.fandom.AnalyticsEngine.quantcast.js","ext.categorySelect.js","ext.categorySelectFandomDesktop.css","ext.fandom.bannerNotifications.js","ext.fandom.bannerNotifications.messages","ext.fandom.HeartbeatTracking.js","ext.fandom.Track.pageview.js","ext.fandom.wikiaBar.js","ext.fandom.ContentReview.legacyLoaders.js","ext.fandom.ContentReview.jsReload.js","ext.fandom.ImportJs","ext.fandom.CreatePage.js","ext.fandom.TimeAgoMessaging.js","ext.fandom.VisitSource.js","ext.fandom.ArticleComments.messages","ext.fandom.ArticleComments.desktop.js",
"skin.fandomdesktop.FanFeed.js","ext.fandom.FandomEmbedVideo.js","ext.fandom.performanceMonitoring.js","ext.fandom.ArticleVideo.desktop.js","ext.fandom.HighlightToAction.js","ext.fandom.ae.babTracking.js","ext.fandom.ae.consentQueue.js","ext.fandom.UncrawlableUrl.anchors.js","ext.fandom.Thumbnails.js","skin.fandomdesktop.js","skin.fandomdesktop.messages","ext.fandom.GlobalComponents.GlobalNavigation.js","ext.fandom.GlobalComponents.Notifications.messages","ext.fandom.GlobalComponents.SearchModal.messages","ext.fandom.GlobalComponents.GlobalFooter.js","ext.fandom.GlobalComponents.CommunityHeader.js","ext.fandom.GlobalComponents.StickyNavigation.js","skin.fandomdesktop.rail.toggle.js","skin.fandomdesktop.rail.lazyRail.js","ext.fandom.nositenotice.js","ext.fandom.Lightbox.js"];</script>
<script>(RLQ=window.RLQ||[]).push(function(){mw.loader.implement("user.options@1hzgi",function($,jQuery,require,module){/*@nomin*/mw.user.tokens.set({"patrolToken":"+\\","watchToken":"+\\","csrfToken":"+\\"});
});});</script>
<link rel="stylesheet" href="/load.php?lang=en&modules=ext.fandom.ArticleInterlang.css%7Cext.fandom.ArticleVideo.desktop.css%7Cext.fandom.CreatePage.css%7Cext.fandom.FandomEmbedVideo.css%7Cext.fandom.GlobalComponents.CommunityHeader.css%7Cext.fandom.GlobalComponents.CommunityHeaderBackground.css%7Cext.fandom.GlobalComponents.GlobalComponentsTheme.dark.css%7Cext.fandom.GlobalComponents.GlobalFooter.css%7Cext.fandom.GlobalComponents.GlobalNavigation.css%7Cext.fandom.GlobalComponents.GlobalNavigationTheme.default.css%7Cext.fandom.GlobalComponents.StickyNavigation.css%7Cext.fandom.HighlightToAction.css%7Cext.fandom.Thumbnails.css%7Cext.fandom.UserPreferencesV2.css%7Cext.fandom.bannerNotifications.desktop.css%7Cext.fandom.quickBar.css%7Cext.fandomVideo.css%7Cext.staffSig.css%7Cext.visualEditor.desktopArticleTarget.noscript%7Cjquery.tablesorter.styles%7Cskin.fandomdesktop.CargoTables-ext.css%7Cskin.fandomdesktop.FanFeed.css%7Cskin.fandomdesktop.Math.css%7Cskin.fandomdesktop.rail.css%7Cskin.fandomdesktop.rail.popularPages.css%7Cskin.fandomdesktop.styles%7Cvendor.bootstrap.popover.css&only=styles&skin=fandomdesktop"/>
<script async="" src="/load.php?cb=20230301125557&lang=en&modules=startup&only=scripts&raw=1&skin=fandomdesktop"></script>
<meta name="ResourceLoaderDynamicStyles" content=""/>
<link rel="stylesheet" href="/load.php?lang=en&modules=site.styles&only=styles&skin=fandomdesktop"/>
<meta name="generator" content="MediaWiki 1.37.6"/>
<meta name="format-detection" content="telephone=no"/>
<meta property="og:type" content="article"/>
<meta property="og:site_name" content="Phasmophobia Wiki"/>
<meta property="og:title" content="Equipment"/>
<meta property="og:url" content="https://phasmophobia.fandom.com/wiki/Equipment"/>
<meta property="og:description" content="Equipment in Phasmophobia is used to determine the type of ghost inhabiting a location, or to achieve optional objectives. Players can purchase equipment using money they receive from successful investigations. Equipment may be purchased or sold via the Equipment Store in the lobby. When a player dies, they lose all equipment they added to the mission, excluding the default starter equipment that is always provided. Players who stay alive do not have to collect their equipment at the end of a co"/>
<meta property="og:image" content="https://static.wikia.nocookie.net/phasmophobia/images/a/a5/Full_item_set_on_0.6.3.1.jpg/revision/latest/scale-to-width-down/1200?cb=20220912113919"/>
<meta name="twitter:card" content="summary"/>
<meta name="twitter:site" content="@getfandom"/>
<meta name="twitter:url" content="https://phasmophobia.fandom.com/wiki/Equipment"/>
<meta name="twitter:title" content="Equipment | Phasmophobia Wiki | Fandom"/>
<meta name="twitter:description" content="Equipment in Phasmophobia is used to determine the type of ghost inhabiting a location, or to achieve optional objectives. Players can purchase equipment using money they receive from successful..."/>
<meta name="description" content="Equipment in Phasmophobia is used to determine the type of ghost inhabiting a location, or to achieve optional objectives. Players can purchase equipment using money they receive from successful investigations. Equipment may be purchased or sold via the Equipment Store in the lobby. When a..."/>
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes, minimum-scale=0.25, maximum-scale=5.0"/>
<link href="/wikia.php?controller=ThemeApi&method=themeVariables&cityId=2376699&version=1678266301" rel="stylesheet"/>
<link rel="shortcut icon" href="https://static.wikia.nocookie.net/phasmophobia/images/4/4a/Site-favicon.ico/revision/latest?cb=20220429171958"/>
<link rel="search" type="application/opensearchdescription+xml" href="/opensearch_desc.php" title="Phasmophobia Wiki (en)"/>
<link rel="EditURI" type="application/rsd+xml" href="https://phasmophobia.fandom.com/api.php?action=rsd"/>
<link rel="license" href="https://www.fandom.com/licensing"/>
<link rel="canonical" href="https://phasmophobia.fandom.com/wiki/Equipment"/>
<meta property="fb:app_id" content="112328095453510" prefix="fb: http://www.facebook.com/2008/fbml"/>
<script>var _plc={"p":"mw","pVar":"fandomdesktop","pCat":"games","pId":"2376699","pg":"article","pgId":"183","pgLang":"en","adTags":{"esrb":["teen"],"bundles":["alc21_bundle","21_bundle","apple_sea_bundle","25_bundle"],"sex":["f","m"],"gnre":["mystery","horror","indie","thriller"],"theme":["psychological","ghost"],"media":["games"],"age":["25-34","18-34","18-24","yadult"],"pform":["pc"]},"time":0}; var _ulc={"id":"0","lang":"en"}; _plc.time=Date.now();</script>
<script src="https://static.wikia.nocookie.net/silversurfer/prod/latest/sdk.js" defer=""></script>
<script src="https://static.wikia.nocookie.net/silversurfer/prod/latest/pathfinder.js" defer=""></script>
<script>
window.RLQ = window.RLQ || [];
window.RLQ.push(function() {
function genUID() {
const crypto = window['crypto'] || window['msCrypto'] || false;
if (crypto && crypto.randomUUID) {
return crypto.randomUUID();
} else if (crypto && crypto.getRandomValues) {
return ([1e7]+-1e3+-4e3+-8e3+-1e11).replace(/[018]/g, function(c) {
return (c ^ crypto.getRandomValues(new Uint8Array(1))[0] & 15 >> c / 4).toString(16);
});
}
return 'xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx'.replace(/[xy]/g, function (c) {
const r = Math.random() * 16 | 0, v = c === 'x' ? r : (r & 0x3 | 0x8);
return v.toString(16);
});
}
function getCookie(cookieName) {
const cookieSplit = ('; ' + document.cookie).split('; ' + cookieName + '=');
return cookieSplit.length === 2 ? cookieSplit.pop().split(';').shift() : null;
}
mw.config.set({
pvNumber: (parseInt(getCookie('pv_number'), 10) || 0) + 1,
pvNumberGlobal: (parseInt(getCookie('pv_number_global'), 10) || 0) + 1,
sessionId: getCookie('tracking_session_id') || genUID(),
pvUID: genUID(),
});
});
</script>
<script>
const useMaxDefaultContentWidth = Boolean();
const defaultContentWidth = useMaxDefaultContentWidth ? 'expanded' : 'collapsed';
const contentWidthPreference = localStorage.getItem('contentwidth') || defaultContentWidth;
if ( contentWidthPreference === 'expanded' ) {
document.documentElement.classList.add('is-content-expanded');
}
</script>
<script>var ads={"context":{"opts":{"enableNativeAds":true,"pageType":"all_ads","platformName":"fandomdesktop"},"targeting":{"enablePageCategories":true,"esrbRating":"teen","featuredVideo":{"mediaId":"K21eFFRc","videoTags":["Games","Gaming"],"isDedicatedForArticle":false},"hasFeaturedVideo":true,"isUcp":true,"mappedVerticalName":"gaming","newWikiCategories":["videogames"],"pageArticleId":183,"pageIsArticle":true,"pageName":"Equipment","pageType":"article","wikiDbName":"phasmophobia","wikiId":2376699,"wikiLanguage":"en","wikiVertical":"games","adTagManagerTags":{"esrb":["teen"],"bundles":["alc21_bundle","21_bundle","apple_sea_bundle","25_bundle"],"sex":["f","m"],"gnre":["mystery","horror","indie","thriller"],"theme":["psychological","ghost"],"media":["games"],"age":["25-34","18-34","18-24","yadult"],"pform":["pc"]}}},"consentQueue":[]};</script>
<script>
// Install temporary stub until full CMP will be ready
if (typeof window.__tcfapi === 'undefined') {
// @iabtcf/stub v1.3.1
"use strict";function _typeof(t){return(_typeof="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t})(t)}!function(){var t=function(){var t,e,o="__tcfapiLocator",n=[],r=window,a=r;for(;a;){try{if(a.frames[o]){t=a;break}}catch(t){}if(a===r.top)break;a=r.parent}t||(!function t(){var e=r.document,n=!!r.frames[o];if(!n)if(e.body){var a=e.createElement("iframe");a.style.cssText="display:none",a.name=o,e.body.appendChild(a)}else setTimeout(t,5);return!n}(),r.__tcfapi=function(){for(var t=arguments.length,o=new Array(t),r=0;r<t;r++)o[r]=arguments[r];if(!o.length)return n;"setGdprApplies"===o[0]?o.length>3&&2===parseInt(o[1],10)&&"boolean"==typeof o[3]&&(e=o[3],"function"==typeof o[2]&&o[2]("set",!0)):"ping"===o[0]?"function"==typeof o[2]&&o[2]({gdprApplies:e,cmpLoaded:!1,cmpStatus:"stub"}):n.push(o)},r.addEventListener("message",(function(t){var e="string"==typeof t.data,o={};if(e)try{o=JSON.parse(t.data)}catch(t){}else o=t.data;var n="object"===_typeof(o)?o.__tcfapiCall:null;n&&window.__tcfapi(n.command,n.version,(function(o,r){var a={__tcfapiReturn:{returnValue:o,success:r,callId:n.callId}};t&&t.source&&t.source.postMessage&&t.source.postMessage(e?JSON.stringify(a):a,"*")}),n.parameter)}),!1))};"undefined"!=typeof module?module.exports=t:t()}();
}
</script>
<script src="https://services.fandom.com/icbm/api/loader?app=fandomdesktop" defer=""></script>
</head>
<body class="mediawiki ltr sitedir-ltr mw-hide-empty-elt ns-0 ns-subject page-Equipment rootpage-Equipment skin-fandomdesktop action-view ooui-theme-fandomooui wiki-phasmophobia theme-fandomdesktop-dark">
<div class="notifications-placeholder">
<div class="banner-notifications-placeholder">
<div class="wds-banner-notification__container">
</div>
</div>
</div>
<div class="fandom-sticky-header">
<a href="//phasmophobia.fandom.com" class="fandom-sticky-header__logo">
<img src="https://static.wikia.nocookie.net/phasmophobia/images/e/e6/Site-logo.png/revision/latest?cb=20220429170941"
width="475"
height="100"
alt="Phasmophobia Wiki">
</a>
<a href="//phasmophobia.fandom.com" class="fandom-sticky-header__sitename">Phasmophobia Wiki</a>
<nav class="fandom-community-header__local-navigation">
<ul class="wds-tabs">
<li class="wds-dropdown explore-menu">
<div class="wds-tabs__tab-label wds-dropdown__toggle first-level-item">
<a href="#"
data-tracking="custom-level-1"
>
<svg class="wds-icon-tiny wds-icon"><use xlink:href="#wds-icons-book-tiny"></use></svg> <span>Explore</span>
</a>
<svg class="wds-icon wds-icon-tiny wds-dropdown__toggle-chevron"><use xlink:href="#wds-icons-dropdown-tiny"></use></svg> </div>
<div class="wds-is-not-scrollable wds-dropdown__content">
<ul class="wds-list wds-is-linked">
<li>
<a href="https://phasmophobia.fandom.com/wiki/Main_Page"
data-tracking="explore-main-page"
>
<svg class="wds-icon-tiny wds-icon navigation-item-icon"><use xlink:href="#wds-icons-home-tiny"></use></svg> <span>Main Page</span>
</a>
</li>
<li>
<a href="/f"
data-tracking="explore-discuss"
>
<svg class="wds-icon-tiny wds-icon navigation-item-icon"><use xlink:href="#wds-icons-discussions-tiny"></use></svg> <span>Discuss</span>
</a>
</li>
<li>
<a href="https://phasmophobia.fandom.com/wiki/Special:AllPages"
data-tracking="explore-all-pages"
>
<span>All Pages</span>
</a>
</li>
<li>
<a href="https://phasmophobia.fandom.com/wiki/Special:Community"
data-tracking="explore-community"
>
<span>Community</span>
</a>
</li>
<li>
<a href="https://phasmophobia.fandom.com/wiki/Special:AllMaps"
data-tracking="interactive-maps"
>
<span>Interactive Maps</span>
</a>
</li>
<li>
<a href="/Blog:Recent_posts"
data-tracking="explore-blogs"
>
<span>Recent Blog Posts</span>
</a>
</li>
</ul>
</div>
</li>
<li class="wds-dropdown ">
<div class="wds-tabs__tab-label wds-dropdown__toggle first-level-item">
<a href="https://phasmophobia.fandom.com/wiki/Phasmophobia"
data-tracking="custom-level-1"
>
<span>Phasmophobia</span>
</a>
<svg class="wds-icon wds-icon-tiny wds-dropdown__toggle-chevron"><use xlink:href="#wds-icons-dropdown-tiny"></use></svg> </div>
<div class="wds-is-not-scrollable wds-dropdown__content">
<ul class="wds-list wds-is-linked">
<li>
<a href="https://phasmophobia.fandom.com/wiki/Equipment"
data-tracking="custom-level-2"
>
<span>Equipment</span>
</a>
</li>
<li>
<a href="https://phasmophobia.fandom.com/wiki/Ghosts"
data-tracking="custom-level-2"
>
<span>Ghosts</span>
</a>
</li>
<li>
<a href="https://phasmophobia.fandom.com/wiki/Maps"
data-tracking="custom-level-2"
>
<span>Maps</span>
</a>
</li>
</ul>
</div>
</li>
<li class="wds-dropdown ">
<div class="wds-tabs__tab-label wds-dropdown__toggle first-level-item">
<a href="https://phasmophobia.fandom.com/wiki/Special:Community"
data-tracking="custom-level-1"
>
<span>Community</span>
</a>
<svg class="wds-icon wds-icon-tiny wds-dropdown__toggle-chevron"><use xlink:href="#wds-icons-dropdown-tiny"></use></svg> </div>
<div class="wds-is-not-scrollable wds-dropdown__content">
<ul class="wds-list wds-is-linked">
<li class="wds-dropdown-level-nested">
<a href="#"
class="wds-dropdown-level-nested__toggle"
data-tracking="custom-level-2"
>
<span>Phasmophobia</span>
<svg class="wds-icon wds-icon-tiny wds-dropdown-chevron"><use xlink:href="#wds-icons-menu-control-tiny"></use></svg> </a>
<div class="wds-is-not-scrollable wds-dropdown-level-nested__content">
<ul class="wds-list wds-is-linked">
<li>
<a href="https://discord.com/invite/phasmophobia"
data-tracking="custom-level-3"
>
<span>Discord</span>
</a>
</li>
<li>
<a href="https://www.reddit.com/r/PhasmophobiaGame/"
data-tracking="custom-level-3"
>
<span>Reddit</span>
</a>
</li>
</ul>
</div>
</li>
</ul>
</div>
</li>
</ul>
</nav>
<div class="wiki-tools wds-button-group">
<a
href="/wiki/Special:Search"
class="wds-button wds-is-secondary is-hidden-on-smaller-breakpoints wiki-tools__search"
title="Search"
data-tracking="search"
>
<svg class="wds-icon wds-icon-small"><use xlink:href="#wds-icons-magnifying-glass-small"></use></svg> </a>
<a
href="/f"
class="wds-button wds-is-secondary "
title="Discuss"
data-tracking="discussions"
>
<svg class="wds-icon wds-icon-small"><use xlink:href="#wds-icons-discussions-small"></use></svg> </a>
<a
href="#"
class="wds-button wds-is-secondary wiki-tools__theme-switch"
title="Light Theme"
data-tracking="theme-switch-light"
>
<svg class="wds-icon wds-icon-small"><use xlink:href="#wds-icons-sun-small"></use></svg> </a>
</div>
</div>
<div class="global-navigation">
<div class="global-navigation__top">
<nav class="global-navigation__nav" aria-label="Fandom navigation">
<a
href="https://www.fandom.com/"
class="global-navigation__logo"
data-tracking-label="logo"
aria-label="Fandom homepage"
>
<svg class="wds-icon"><use xlink:href="#wds-brand-fandom-logomark"></use></svg> <span>FANDOM</span>
</a>
<a href="/wiki/Special:Search" class="global-navigation__search global-navigation__icon" accesskey="f"
title="Search" data-tracking-label="search"
data-wds-tooltip="Search"
data-wds-tooltip-position="right"
>
<svg class="wds-icon"><use xlink:href="#wds-icons-magnifying-glass"></use></svg> </a>
<div class="global-navigation__links">
<a href="https://www.fandom.com/" class="global-navigation__link"
data-tracking-label="link.home"
>
<span class="global-navigation__icon has-background">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 24 24" class="wds-icon">
<defs>
<path id="home-a" d="M16 21h4v-9.586l-8-8-8 8V21h4v-5c0-2.205 1.794-4 4-4s4 1.795 4 4v5zm5 2h-6a1 1 0 0 1-1-1v-6c0-1.104-.897-2-2-2s-2 .896-2 2v6a1 1 0 0 1-1 1H3a1 1 0 0 1-1-1V11c0-.266.105-.52.293-.707l9-9a.999.999 0 0 1 1.414 0l9 9A.996.996 0 0 1 22 11v11a1 1 0 0 1-1 1z"/>
</defs>
<use fill-rule="evenodd" xlink:href="#home-a"/>
</svg>
</span>
<span class="global-navigation__label">
Home </span>
</a>
<a href="https://fandom.com/fancentral/home" class="global-navigation__link"
data-tracking-label="link.fancentral"
>
<span class="global-navigation__icon has-background">
<svg viewBox="0 0 25 24" fill="none" xmlns="http://www.w3.org/2000/svg" class="wds-icon">
<path fill-rule="evenodd" clip-rule="evenodd" fill="currentColor" d="M15.5264 5.00391C13.5924 5.00391 12.0245 6.57176 12.0245 8.50581C12.0245 10.4399 13.5924 12.0077 15.5264 12.0077C17.4605 12.0077 19.0284 10.4399 19.0284 8.50581C19.0284 6.57176 17.4605 5.00391 15.5264 5.00391ZM14.0245 8.50581C14.0245 7.67633 14.697 7.00391 15.5264 7.00391C16.3559 7.00391 17.0284 7.67633 17.0284 8.50581C17.0284 9.33529 16.3559 10.0077 15.5264 10.0077C14.697 10.0077 14.0245 9.33529 14.0245 8.50581Z"/>
<path fill-rule="evenodd" clip-rule="evenodd" fill="currentColor" d="M10.1919 3.81674C12.4627 2.01428 15.3046 1 18.2785 1H22.0312C22.5835 1 23.0314 1.44772 23.0314 2L23.0312 2.01776V5.75286C23.0312 8.72653 22.0171 11.5682 20.2149 13.8389L21.0104 17.8161C21.0759 18.1439 20.9733 18.4829 20.7369 18.7193L16.7338 22.7223C16.473 22.9831 16.0899 23.0792 15.7369 22.9723C15.384 22.8655 15.1185 22.573 15.0461 22.2114L14.3277 18.6192L13.5924 19.1345C13.4479 19.2425 13.2724 19.3127 13.0794 19.3291C12.8628 19.3476 12.6564 19.2955 12.4829 19.192C12.4055 19.1461 12.3336 19.0891 12.2696 19.0217C12.1797 18.9272 12.1078 18.8147 12.06 18.6896C12.0236 18.5945 12.0025 18.4957 11.9963 18.3967C11.698 15.0187 8.9947 12.3218 5.61395 12.0336C5.35417 12.0114 5.12608 11.8918 4.96259 11.7138C4.914 11.661 4.87187 11.6038 4.83641 11.5434C4.67563 11.2692 4.65214 10.928 4.78531 10.6299C4.81249 10.5689 4.84554 10.5113 4.88368 10.4578L5.4119 9.704L1.81991 8.9856C1.45827 8.91328 1.1658 8.64778 1.05893 8.29481C0.95206 7.94183 1.04814 7.55869 1.30892 7.29791L5.31197 3.29486C5.54839 3.05844 5.88733 2.95582 6.21519 3.02139L10.1919 3.81674ZM11.2142 5.56355C13.1699 3.92646 15.6632 3 18.2785 3H21.0312V5.75286C21.0312 8.36883 20.1044 10.8626 18.4666 12.8185C18.4051 12.8745 18.3509 12.9378 18.3052 13.0069C17.7283 13.665 17.0687 14.2584 16.3351 14.7703L13.6989 16.6176C12.8573 13.5736 10.4576 11.1741 7.41358 10.3326L9.25997 7.69779L9.26111 7.69617C9.77253 6.96328 10.3653 6.30423 11.0227 5.72767C11.0929 5.68137 11.1574 5.62626 11.2142 5.56355ZM8.43401 5.50476L6.34775 5.08751L4.04437 7.39089L6.66549 7.91511L7.62096 6.55165C7.87531 6.18722 8.14716 5.83751 8.43401 5.50476ZM17.4804 16.4099C17.845 16.1554 18.1941 15.884 18.5269 15.597L18.9442 17.6835L16.6409 19.9869L16.1166 17.3656L17.4804 16.4099Z"/>
<path fill-rule="evenodd" clip-rule="evenodd" fill="currentColor" d="M1.9741 23.0613C4.23401 23.1177 7.23267 22.8381 8.68191 21.3889C10.3428 19.728 10.3428 17.0353 8.68191 15.3744C7.02107 13.7136 4.32831 13.7136 2.66747 15.3744C1.2242 16.8177 0.964618 19.8686 1.0036 22.0821C1.01303 22.6174 1.43892 23.048 1.9741 23.0613ZM5.23768 20.8289C6.30167 20.615 6.95406 20.2883 7.2677 19.9746C8.14749 19.0948 8.14749 17.6684 7.2677 16.7886C6.3879 15.9088 4.96147 15.9088 4.08168 16.7886C3.77942 17.0909 3.45534 17.7435 3.24194 18.8262C3.10182 19.5371 3.03277 20.3111 3.00942 21.0611C3.76285 21.0403 4.53315 20.9706 5.23768 20.8289Z"/>
</svg>
</span>
<span class="global-navigation__label">
Fan Central </span>
<span class="global-navigation__beta-badge">
BETA </span>
</a>
<a href="https://www.fandom.com/topics/games" class="global-navigation__link"
data-tracking-label="link.games"
>
<span class="global-navigation__icon has-background">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" class="wds-icon">
<path d="M11.614 1.057a.814.814 0 0 0-.505.396c-.087.164-.089.197-.101 1.856l-.011 1.689-4.269.011-4.268.011-.321.101c-.501.159-.833.365-1.243.775-.4.4-.6.717-.771 1.217L.02 7.42l-.011 4c-.013 4.391-.016 4.322.227 4.903.211.503.382.701 2.061 2.38 1.679 1.679 1.877 1.85 2.38 2.061.591.247.257.236 7.323.236 7.066 0 6.732.011 7.323-.236.503-.211.701-.382 2.38-2.061 1.679-1.679 1.85-1.877 2.061-2.38.243-.581.24-.512.227-4.903l-.011-4-.105-.307c-.171-.5-.371-.817-.771-1.217-.41-.41-.742-.616-1.243-.775l-.321-.101-4.268-.011-4.268-.011-.012-1.689c-.012-1.658-.014-1.692-.101-1.856a.874.874 0 0 0-.213-.254c-.264-.189-.721-.249-1.064-.142m9.802 6.04c.199.099.388.288.487.487.075.151.077.278.077 4.016v3.86l-.107.18c-.133.223-3.08 3.163-3.273 3.266-.135.071-.383.074-6.6.074s-6.465-.003-6.6-.074c-.193-.103-3.14-3.043-3.273-3.266l-.107-.18-.011-3.76c-.008-2.572.002-3.815.031-3.933a1.02 1.02 0 0 1 .686-.721c.085-.025 3.487-.037 9.334-.033 9.012.007 9.203.009 9.356.084m-14.802 2.96a.814.814 0 0 0-.505.396c-.08.15-.09.236-.102.857l-.014.69h-.59c-.826 0-1.104.097-1.294.453-.074.139-.089.231-.089.547 0 .331.013.403.1.558.11.197.294.34.515.401.08.022.419.041.755.041H6v.61c0 .335.019.675.041.755.107.385.396.597.855.626.485.031.803-.109.984-.433.094-.167.101-.22.114-.868l.014-.69h.606c.333 0 .671-.019.751-.041a.842.842 0 0 0 .515-.401c.087-.156.1-.226.099-.558-.001-.313-.017-.409-.089-.547-.188-.355-.467-.453-1.292-.453h-.59l-.015-.69c-.017-.769-.063-.932-.315-1.111-.264-.189-.721-.249-1.064-.142m9.885-.017a3.05 3.05 0 0 0-2.385 2.12c-.135.434-.135 1.246 0 1.68a3.086 3.086 0 0 0 2.046 2.046c.434.135 1.246.135 1.68 0a3.086 3.086 0 0 0 2.046-2.046c.135-.434.135-1.246 0-1.68-.305-.981-1.076-1.753-2.025-2.031-.361-.106-1.029-.149-1.362-.089m.811 2.021c.378.112.69.537.69.94 0 .33-.216.695-.516.871-.156.091-.23.108-.484.108s-.328-.017-.484-.108c-.581-.342-.683-1.098-.212-1.569.279-.279.612-.359 1.006-.242"/>
</svg>
</span>
<span class="global-navigation__label">
Games </span>
</a>
<a href="https://www.fandom.com/topics/anime" class="global-navigation__link"
data-tracking-label="link.anime"
>
<span class="global-navigation__icon has-background">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" class="wds-icon">
<path d="M3.499 3.043c-.641.108-1.104.355-1.603.853-.4.4-.6.717-.771 1.217l-.105.307-.011 5.02c-.01 4.426-.004 5.057.051 5.33.076.375.221.728.433 1.05.184.279 3.161 3.29 3.527 3.567.287.218.582.371.96.498l.28.095 5.58.011c6.13.013 5.891.021 6.483-.227.503-.211.701-.382 2.38-2.061 1.679-1.679 1.85-1.877 2.061-2.38.247-.589.24-.412.227-5.903l-.011-5-.105-.307c-.171-.5-.371-.817-.771-1.217-.41-.41-.741-.616-1.243-.775l-.321-.101-8.42-.006c-4.631-.003-8.511.01-8.621.029m16.917 2.054c.199.099.388.288.487.487.075.152.077.289.077 5.016 0 4.658-.003 4.866-.074 5-.103.193-3.043 3.14-3.266 3.273l-.18.107H12c-5.232 0-5.466-.003-5.6-.074-.192-.101-3.184-3.087-3.293-3.286l-.087-.16-.011-4.76c-.008-3.276.001-4.814.031-4.933a1.02 1.02 0 0 1 .686-.721c.085-.025 3.13-.037 8.334-.033 8.023.007 8.203.009 8.356.084M7.48 7.657c-.425.119-.596.248-1.449 1.096-.55.546-.857.881-.91.995a.809.809 0 0 0-.002.682c.095.211.408.527.621.629.203.097.516.099.7.004.077-.04.459-.389.85-.776l.709-.703.731.723c.672.666.748.729.96.795.219.069.24.069.448.004.425-.134.829-.623.829-1.004 0-.346-.114-.505-.959-1.342-.833-.824-1.057-.992-1.466-1.098-.282-.073-.808-.075-1.062-.005m8 0c-.425.119-.596.248-1.449 1.096-.55.546-.857.881-.91.995a.809.809 0 0 0-.002.682c.095.211.408.527.621.629.203.097.516.099.7.004.077-.04.459-.389.85-.776l.709-.703.731.723c.672.666.748.729.96.795.219.069.24.069.448.004.425-.134.829-.623.829-1.004 0-.346-.114-.505-.959-1.342-.833-.824-1.057-.992-1.466-1.098-.282-.073-.808-.075-1.062-.005m-6.866 6.4a.814.814 0 0 0-.505.396c-.074.139-.089.231-.089.547 0 .331.013.403.1.558.11.197.294.34.515.401.197.055 6.533.055 6.73 0a.842.842 0 0 0 .515-.401c.087-.156.1-.226.099-.558-.001-.433-.081-.645-.301-.801-.28-.2-.267-.199-3.694-.196-2.512.002-3.24.014-3.37.054"/>
</svg>
</span>
<span class="global-navigation__label">
Anime </span>
</a>
<a href="https://www.fandom.com/topics/movies" class="global-navigation__link"
data-tracking-label="link.movies"
>
<span class="global-navigation__icon has-background">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" class="wds-icon">
<path d="M4.62 3.003c-1.08.022-1.182.03-1.481.122-.496.151-.83.359-1.243.771-.4.4-.6.717-.771 1.217l-.105.307v13.16l.105.307c.171.5.371.817.771 1.217.4.4.717.6 1.217.771l.307.105h17.16l.307-.105c.5-.171.817-.371 1.217-.771.4-.4.6-.717.771-1.217l.105-.307V5.42l-.105-.307c-.171-.5-.371-.817-.771-1.217-.61-.61-1.158-.846-2.044-.882-.712-.028-14.092-.038-15.44-.011M7.08 6.5 8.58 8H3V6.95c0-.632.018-1.112.044-1.206a1.03 1.03 0 0 1 .682-.698c.074-.021.521-.04.994-.042L5.58 5l1.5 1.5m7 0 1.5 1.5h-4.16l-1.5-1.5L8.42 5h4.16l1.5 1.5m6.336-1.403c.199.099.388.288.487.487.07.141.078.264.089 1.286L21.005 8H18.42l-1.5-1.501-1.5-1.501 2.42.011c2.301.01 2.428.015 2.576.088m-9.336 4.929a865.84 865.84 0 0 1 6.84.002c.077.004.802-.002 1.611-.013l1.47-.02-.01 4.133c-.011 4.014-.013 4.137-.089 4.29a1.418 1.418 0 0 1-.232.307c-.306.297.399.275-8.67.275-9.069 0-8.364.022-8.67-.275a1.418 1.418 0 0 1-.232-.307c-.076-.153-.078-.276-.089-4.289l-.01-4.131 3.97.017c2.184.009 4.034.014 4.111.011"/>
</svg>
</span>
<span class="global-navigation__label">
Movies </span>
</a>
<a href="https://www.fandom.com/topics/tv" class="global-navigation__link"
data-tracking-label="link.tv"
>
<span class="global-navigation__icon has-background">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" class="wds-icon">
<path d="M7.626 1.045c-.369.194-.675.628-.675.955 0 .333.105.467 1.401 1.768l1.222 1.229-3.057.012-3.057.012-.321.101c-.501.157-.832.364-1.243.774-.4.4-.6.717-.771 1.217l-.105.307v11.16l.105.307c.171.5.371.817.771 1.217.4.4.717.6 1.217.771l.307.105h17.16l.307-.105c.5-.171.817-.371 1.217-.771.4-.4.6-.717.771-1.217l.105-.307V7.42l-.105-.307c-.171-.5-.371-.817-.771-1.217-.411-.41-.742-.617-1.243-.774l-.321-.101-3.057-.012-3.057-.012 1.222-1.229c.804-.807 1.253-1.289 1.312-1.405.177-.352.088-.717-.259-1.064-.34-.34-.721-.431-1.073-.255-.109.055-.775.69-1.898 1.809L12 4.578l-1.73-1.725C9.147 1.734 8.481 1.099 8.372 1.044a.884.884 0 0 0-.746.001m4.454 5.981a808.62 808.62 0 0 1 4.16-.006c3.896 0 4.025.002 4.176.077.199.099.388.288.487.487.075.152.077.294.077 5.416 0 5.146-.002 5.263-.078 5.418a1.418 1.418 0 0 1-.232.307c-.306.297.399.275-8.67.275-9.069 0-8.364.022-8.67-.275a1.418 1.418 0 0 1-.232-.307c-.076-.154-.078-.284-.089-5.318-.008-3.557.001-5.214.031-5.333.084-.339.356-.626.686-.722.085-.024 1.62-.034 4.174-.026 2.222.007 4.103.01 4.18.007m4.534 3.031a.814.814 0 0 0-.505.396c-.074.139-.089.231-.089.547 0 .331.013.403.1.558.11.197.294.34.515.401.188.053 1.542.053 1.73 0a.842.842 0 0 0 .515-.401c.087-.156.1-.226.099-.558-.001-.313-.017-.409-.089-.547-.104-.197-.267-.322-.519-.398-.245-.073-1.52-.072-1.757.002m0 4a.814.814 0 0 0-.505.396c-.074.139-.089.231-.089.547 0 .331.013.403.1.558.11.197.294.34.515.401.188.053 1.542.053 1.73 0a.842.842 0 0 0 .515-.401c.087-.156.1-.226.099-.558-.001-.313-.017-.409-.089-.547-.104-.197-.267-.322-.519-.398-.245-.073-1.52-.072-1.757.002"/>
</svg>
</span>
<span class="global-navigation__label">
TV </span>
</a>
<a href="https://www.fandom.com/video" class="global-navigation__link"
data-tracking-label="link.video"
>
<span class="global-navigation__icon has-background">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" class="wds-icon">
<path d="M3.499 3.043c-.641.108-1.104.355-1.603.853-.4.4-.6.717-.771 1.217l-.105.307v13.16l.105.307c.171.5.371.817.771 1.217.4.4.717.6 1.217.771l.307.105h17.16l.307-.105c.5-.171.817-.371 1.217-.771.4-.4.6-.717.771-1.217l.105-.307V5.42l-.105-.307c-.171-.5-.371-.817-.771-1.217-.41-.41-.741-.616-1.243-.775l-.321-.101-8.42-.006c-4.631-.003-8.511.01-8.621.029m16.917 2.054c.199.099.388.288.487.487.075.152.077.305.077 6.416 0 6.139-.002 6.263-.078 6.418a1.418 1.418 0 0 1-.232.307c-.306.297.399.275-8.67.275-9.069 0-8.364.022-8.67-.275a1.418 1.418 0 0 1-.232-.307c-.076-.155-.078-.29-.089-6.318-.008-4.261.001-6.213.031-6.333a1.02 1.02 0 0 1 .686-.721c.085-.025 3.13-.037 8.334-.033 8.023.007 8.203.009 8.356.084M9.78 7.519c-.304.07-.52.265-.686.621l-.093.2L9 12.003c0 4.048-.006 3.942.249 4.183.072.069.174.146.226.173.15.078.527.117.725.076.232-.048 6.256-3.513 6.535-3.759.22-.194.305-.359.305-.593 0-.234-.142-.575-.312-.75-.1-.102-1.178-.746-3.258-1.945-1.71-.986-3.159-1.808-3.22-1.827a.925.925 0 0 0-.47-.042m2.933 3.74c.686.396 1.247.73 1.247.742 0 .019-2.458 1.454-2.826 1.65l-.134.071v-3.447l.233.133c.128.072.794.456 1.48.851"/>
</svg>
</span>
<span class="global-navigation__label">
Video </span>
</a>
<div class="wds-dropdown wds-open-to-right">
<div class="wds-dropdown__toggle"
data-tracking-label="link.wikis">
<div class="global-navigation__icon has-background">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" class="wds-icon">
<path d="M2.499 3.042c-.645.111-1.105.356-1.603.854-.4.4-.6.717-.771 1.217L.02 5.42v11.16l.105.307c.171.5.371.817.771 1.217.401.4.718.601 1.217.771l.307.104 3.02.02c2.843.02 3.028.025 3.16.095.077.041.752.683 1.5 1.426.902.896 1.42 1.381 1.537 1.44a.8.8 0 0 0 .726 0c.117-.059.638-.548 1.537-1.44.748-.743 1.423-1.384 1.5-1.425.132-.071.31-.076 3.16-.096l3.02-.02.307-.104c.499-.17.816-.371 1.217-.771.4-.4.6-.717.771-1.217l.105-.307V5.42l-.105-.307c-.17-.5-.371-.817-.771-1.217-.418-.419-.781-.64-1.282-.784L21.5 3.02h-6.2l-.299.094c-.69.217-.87.349-2.031 1.501l-.97.961-.97-.961c-1.15-1.14-1.323-1.27-2.01-1.5l-.28-.094-3.02-.007c-1.661-.003-3.111.009-3.221.028M8.6 5.094c.077.041.648.58 1.27 1.2L11 7.419v11.154l-.47-.459c-.628-.612-.907-.797-1.51-.998l-.28-.094-3-.021c-3.325-.023-3.144-.008-3.427-.29a1.375 1.375 0 0 1-.216-.295c-.075-.151-.077-.305-.088-5.316-.008-3.551.002-5.214.031-5.333.083-.339.356-.625.686-.722.083-.024 1.203-.036 2.934-.032 2.638.007 2.808.011 2.94.081m12.816.003c.199.099.388.288.487.487.075.152.077.294.077 5.416 0 5.122-.002 5.264-.077 5.416-.043.086-.14.219-.216.295-.282.282-.105.267-3.407.291-3.305.025-3.133.011-3.745.302-.352.166-.591.352-1.125.87l-.41.398V7.418l1.152-1.149a53.568 53.568 0 0 1 1.17-1.15c.01 0 .09-.026.178-.058.135-.05.594-.057 2.96-.05 2.679.009 2.807.012 2.956.086M4.614 8.057a.814.814 0 0 0-.505.396c-.074.139-.089.231-.089.547 0 .331.013.403.1.558.11.197.294.34.515.401.087.024.835.041 1.865.041s1.778-.017 1.865-.041a.842.842 0 0 0 .515-.401c.087-.156.1-.226.099-.558-.001-.313-.017-.409-.089-.547-.104-.197-.267-.322-.519-.398-.257-.077-3.509-.075-3.757.002m11 0a.814.814 0 0 0-.505.396c-.074.139-.089.231-.089.547 0 .331.013.403.1.558.11.197.294.34.515.401.087.024.835.041 1.865.041s1.778-.017 1.865-.041a.842.842 0 0 0 .515-.401c.087-.156.1-.226.099-.558-.001-.313-.017-.409-.089-.547-.104-.197-.267-.322-.519-.398-.257-.077-3.509-.075-3.757.002m0 4a.814.814 0 0 0-.505.396c-.074.139-.089.231-.089.547 0 .331.013.403.1.558.11.197.294.34.515.401.087.024.835.041 1.865.041s1.778-.017 1.865-.041a.842.842 0 0 0 .515-.401c.087-.156.1-.226.099-.558-.001-.313-.017-.409-.089-.547-.104-.197-.267-.322-.519-.398-.257-.077-3.509-.075-3.757.002"/>
</svg>
</div>
<div class="global-navigation__label">
Wikis </div>
</div>
<div class="wds-dropdown__content">
<ul class="wds-list wds-is-linked">
<li>
<a href="https://www.fandom.com/explore"
data-tracking-label="link.explore">
Explore Wikis </a>
</li>
<li>
<a href="//community.fandom.com/wiki/Community_Central"
data-tracking-label="link.community-central">
Community Central </a>
</li>
</ul>
</div>
</div>
<a href="//createnewwiki.fandom.com/Special:CreateNewWiki" class="global-navigation__link"
data-tracking-label="start-a-wiki"
>
<span class="global-navigation__icon has-border">
<svg class="wds-icon wds-icon-small"><use xlink:href="#wds-icons-add-small"></use></svg> </span>
<span class="global-navigation__label">
Start a Wiki </span>
</a>
</div>
</nav>
</div>
<div class="global-navigation__bottom">
<div class="wds-dropdown wds-open-to-right is-attached-to-bottom is-anon-dropdown">
<div class="wds-dropdown__toggle">
<div class="global-navigation__icon">
<svg class="wds-icon"><use xlink:href="#wds-icons-avatar"></use></svg> </div>
</div>
<div class="wds-dropdown__content">
<div class="global-navigation__register-text">
Don't have an account?</div>
<a class="wds-button wds-is-full-width global-navigation__register-link"
href="https://auth.fandom.com/register?redirect=https%3A%2F%2Fphasmophobia.fandom.com%2Fwiki%2FEquipment"
rel="nofollow"
data-tracking-label="account.register"
id="global-navigation-register-link">
Register</a>
<hr>
<a class="wds-button wds-is-full-width wds-is-secondary global-navigation__signin-link"
href="https://auth.fandom.com/signin?redirect=https%3A%2F%2Fphasmophobia.fandom.com%2Fwiki%2FEquipment"
rel="nofollow"
data-tracking-label="account.sign-in"
id="global-navigation-sign-in-link"
aria-label="Sign In">
Sign In</a> </div>
</div>
</div>
</div>
<div class="main-container">
<div class="top-ads-container">
<div class="ad-slot-placeholder top-leaderboard is-loading"></div>
<div class="ae-translatable-label" data-key="advertisement">Advertisement</div>
</div>
<div class="fandom-community-header__background cover fullScreen " style="--image-ratio:0.5625"></div>
<div class="resizable-container">
<div class="community-header-wrapper" >
<header class="fandom-community-header">
<a accesskey="z" href="//phasmophobia.fandom.com" class="fandom-community-header__image">
<img
src="https://static.wikia.nocookie.net/phasmophobia/images/e/e6/Site-logo.png/revision/latest?cb=20220429170941"
width="475"
height="100"
alt="Phasmophobia Wiki"
data-test="fandom-community-header-community-logo">
</a>
<div class="fandom-community-header__top-container">
<div class="fandom-community-header__community-name-wrapper">
<a href="//phasmophobia.fandom.com" class="fandom-community-header__community-name"
data-test="fandom-community-header-community-name">
</a>
</div>
<div class="page-counter">
<div class="page-counter__value">221</div><div class="page-counter__label">pages</div> </div>
<div class="wiki-tools wds-button-group">
<a
href="/wiki/Special:Search"
class="wds-button wds-is-secondary is-hidden-on-smaller-breakpoints wiki-tools__search"
title="Search"
data-tracking="search"
>
<svg class="wds-icon wds-icon-small"><use xlink:href="#wds-icons-magnifying-glass-small"></use></svg> </a>
<a
href="/f"
class="wds-button wds-is-secondary "
title="Discuss"
data-tracking="discussions"
>
<svg class="wds-icon wds-icon-small"><use xlink:href="#wds-icons-discussions-small"></use></svg> </a>
<a
href="#"
class="wds-button wds-is-secondary wiki-tools__theme-switch"
title="Light Theme"
data-tracking="theme-switch-light"
>
<svg class="wds-icon wds-icon-small"><use xlink:href="#wds-icons-sun-small"></use></svg> </a>
</div>
</div>
<nav class="fandom-community-header__local-navigation">
<ul class="wds-tabs">
<li class="wds-dropdown explore-menu">
<div class="wds-tabs__tab-label wds-dropdown__toggle first-level-item">
<a href="#"
data-tracking="custom-level-1"
>
<svg class="wds-icon-tiny wds-icon"><use xlink:href="#wds-icons-book-tiny"></use></svg> <span>Explore</span>
</a>
<svg class="wds-icon wds-icon-tiny wds-dropdown__toggle-chevron"><use xlink:href="#wds-icons-dropdown-tiny"></use></svg> </div>
<div class="wds-is-not-scrollable wds-dropdown__content">
<ul class="wds-list wds-is-linked">
<li>
<a href="https://phasmophobia.fandom.com/wiki/Main_Page"
data-tracking="explore-main-page"
>
<svg class="wds-icon-tiny wds-icon navigation-item-icon"><use xlink:href="#wds-icons-home-tiny"></use></svg> <span>Main Page</span>
</a>
</li>
<li>
<a href="/f"
data-tracking="explore-discuss"
>
<svg class="wds-icon-tiny wds-icon navigation-item-icon"><use xlink:href="#wds-icons-discussions-tiny"></use></svg> <span>Discuss</span>
</a>
</li>
<li>
<a href="https://phasmophobia.fandom.com/wiki/Special:AllPages"
data-tracking="explore-all-pages"
>
<span>All Pages</span>
</a>
</li>
<li>
<a href="https://phasmophobia.fandom.com/wiki/Special:Community"
data-tracking="explore-community"
>
<span>Community</span>
</a>
</li>
<li>
<a href="https://phasmophobia.fandom.com/wiki/Special:AllMaps"
data-tracking="interactive-maps"
>
<span>Interactive Maps</span>
</a>
</li>
<li>
<a href="/Blog:Recent_posts"
data-tracking="explore-blogs"
>
<span>Recent Blog Posts</span>
</a>
</li>
</ul>
</div>
</li>
<li class="wds-dropdown ">
<div class="wds-tabs__tab-label wds-dropdown__toggle first-level-item">
<a href="https://phasmophobia.fandom.com/wiki/Phasmophobia"
data-tracking="custom-level-1"
>
<span>Phasmophobia</span>
</a>
<svg class="wds-icon wds-icon-tiny wds-dropdown__toggle-chevron"><use xlink:href="#wds-icons-dropdown-tiny"></use></svg> </div>
<div class="wds-is-not-scrollable wds-dropdown__content">
<ul class="wds-list wds-is-linked">
<li>
<a href="https://phasmophobia.fandom.com/wiki/Equipment"
data-tracking="custom-level-2"
>
<span>Equipment</span>
</a>
</li>
<li>
<a href="https://phasmophobia.fandom.com/wiki/Ghosts"
data-tracking="custom-level-2"
>
<span>Ghosts</span>
</a>
</li>
<li>
<a href="https://phasmophobia.fandom.com/wiki/Maps"
data-tracking="custom-level-2"
>
<span>Maps</span>
</a>
</li>
</ul>
</div>
</li>
<li class="wds-dropdown ">
<div class="wds-tabs__tab-label wds-dropdown__toggle first-level-item">
<a href="https://phasmophobia.fandom.com/wiki/Special:Community"
data-tracking="custom-level-1"
>
<span>Community</span>
</a>
<svg class="wds-icon wds-icon-tiny wds-dropdown__toggle-chevron"><use xlink:href="#wds-icons-dropdown-tiny"></use></svg> </div>
<div class="wds-is-not-scrollable wds-dropdown__content">
<ul class="wds-list wds-is-linked">
<li class="wds-dropdown-level-nested">
<a href="#"
class="wds-dropdown-level-nested__toggle"
data-tracking="custom-level-2"
>
<span>Phasmophobia</span>
<svg class="wds-icon wds-icon-tiny wds-dropdown-chevron"><use xlink:href="#wds-icons-menu-control-tiny"></use></svg> </a>
<div class="wds-is-not-scrollable wds-dropdown-level-nested__content">
<ul class="wds-list wds-is-linked">
<li>
<a href="https://discord.com/invite/phasmophobia"
data-tracking="custom-level-3"
>
<span>Discord</span>
</a>
</li>
<li>
<a href="https://www.reddit.com/r/PhasmophobiaGame/"
data-tracking="custom-level-3"
>
<span>Reddit</span>
</a>
</li>
</ul>
</div>
</li>
</ul>
</div>
</li>
</ul>
</nav>
</header>
</div>
<div class="page has-right-rail">
<main class="page__main" lang="en">
<div class="page-side-tools__wrapper">
<div class="page-side-tools">
<button class="page-side-tool content-size-toggle">
<svg class="wds-icon wds-icon-small"><use xlink:href="#wds-icons-zoom-in-small"></use></svg> </button>
<a class="page-side-tool page-side-edit" href="/wiki/Equipment?action=edit"
id="ca-viewsource-side-tool"
data-tracking-label="ca-viewsource"
data-wds-tooltip="View source"
data-wds-tooltip-position="right"
>
<svg class="wds-icon wds-icon-small"><use xlink:href="#wds-icons-lock-small"></use></svg> </a>
</div>
</div>
<div class="page-header">
<div class="page-header__top">
<div class="page-header__meta">
<div class="page-header__categories">
<span class="page-header__categories-in">in:</span>
<a href="/wiki/Category:Verification_needed" class="newcategory" title="Category:Verification needed" data-tracking-label="categories-top-more-0">Verification needed</a>, <a href="/wiki/Category:Equipment" title="Category:Equipment" data-tracking-label="categories-top-more-1">Equipment</a>, <a href="/wiki/Category:Maps" title="Category:Maps" data-tracking-label="categories-top-more-2">Maps</a>, <a href="/wiki/Category:Update" class="newcategory" title="Category:Update" data-tracking-label="categories-top-more-3">Update</a> </div>
</div>
<div class="page-header__languages">
<div class="wds-dropdown">
<div class="wds-dropdown__toggle">
English<svg class="wds-icon wds-icon-tiny wds-dropdown__toggle-chevron"><use xlink:href="#wds-icons-dropdown-tiny"></use></svg> </div>
<div class="wds-dropdown__content">
<ul class="wds-list wds-is-linked">
<li>
<a href="https://phasmophobia.fandom.com/fr/wiki/%C3%89quipement"
data-tracking-label="lang-fr">Français</a>
</li>
</ul>
</div>
</div>
</div>
</div>
<div class="page-header__bottom">
<div class="page-header__title-wrapper">
<h1 class="page-header__title" id="firstHeading">
Equipment </h1>
</div>
<div class="page-header__actions" id="p-views">
<a class="wds-button wds-is-text page-header__action-button" data-tracking-label="comments-button" href="#articleComments">
<div id="article-comments-button" class="button-counter"></div>
<svg class="wds-icon wds-icon-small"><use xlink:href="#wds-icons-comment-small"></use></svg> </a>
<a class="wds-button wds-is-text page-header__action-button has-label" href="/wiki/Equipment?action=edit"
id="ca-viewsource"
data-tracking-label="ca-viewsource"
accesskey="e" >
<svg class="wds-icon wds-icon-small"><use xlink:href="#wds-icons-lock-small"></use></svg> View source </a>
<div class="wds-dropdown">
<div class="wds-dropdown__toggle wds-button wds-is-text page-header__action-button">
<svg class="wds-icon wds-icon-small"><use xlink:href="#wds-icons-more-small"></use></svg> </div>
<div id="p-cactions" class="wds-dropdown__content wds-is-right-aligned wds-is-not-scrollable">
<ul class="wds-list wds-is-linked">
<li>
<a id="ca-history"
href="/wiki/Equipment?action=history"
data-tracking-label="ca-history-dropdown"
accesskey="h">
History </a>
</li>
<li>
<a id="ca-talk"
href="/wiki/Talk:Equipment?action=edit&redlink=1"
class="new" data-tracking-label="ca-talk-dropdown"
accesskey="t">
Talk (0) </a>
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
<div id="content" class="page-content">
<script data-name="featured-video-mapped-to-wiki">
(function () {
// we can't use mw.config here because it's too early so we need to pass this data in different way
var videoDetails = {
mediaId: "K21eFFRc",
impressionsPerSession: 3,
isDedicatedForArticle: false,
tier3Mapping: false,
};
var hasVideoOnPage = null;
var videoBridgeCountries = ["US","GB","CA","AU","DE","SG","MY","VN","ID","PH","TH","ES","FR","AR","MX","CO","PE","NZ","IN","DE","VN","FR","BR","ES","PL","CL"];
var tier3VideoBridgeCountries = ["MG","MX","AR"];
function getCookieValue(cookieName) {
var cookieSplit = ('; ' + document.cookie).split('; ' + cookieName + '=');
return cookieSplit.length === 2 ? cookieSplit.pop().split(';').shift() : null;
}
function hasMaxedOutPlayerImpressionsInWiki() {
var impressionsSoFar = Number(getCookieValue('playerImpressionsInWiki')) || 0;
var allowedImpressions = Number(videoDetails.impressionsPerSession);
if (!hasSeenTheVideoInCurrentSession()) {
return false;
}
if (allowedImpressions === 0) {
return true;
}
return impressionsSoFar >= allowedImpressions;
}
function hasSeenTheVideoInCurrentSession() {
var currentSession = getCookieValue('wikia_session_id');
var videoSeenInSession = getCookieValue('featuredVideoSeenInSession');
return currentSession && videoSeenInSession && currentSession === videoSeenInSession;
}
function getCountryCode() {
try {
return JSON.parse(decodeURIComponent(getCookieValue('Geo'))).country.toLowerCase();
} catch {
return null;
}
}
function isVideoBridgeAllowedForCountry() {
var countryCode = getCountryCode();
// Check if the wikis is a tier3 wiki. This value comes back from the ArticleVideo service
if (videoDetails && videoDetails.tier3Mapping) {
// If the wiki is classified as a tier3 wiki, then check the country whitelist from the tier3VideoBridge whitelist.
var allowedCountriesForTier3Wikis = tier3VideoBridgeCountries.map(function (allowedTier3CountryCode) {
return allowedTier3CountryCode.toLowerCase();
})
return countryCode && allowedCountriesForTier3Wikis.indexOf(countryCode) !== -1;
} else {
// If not a tier3 wiki, then check the country whitelist from the videoBridge whitelist
var allowedCountries = videoBridgeCountries.map(function (allowedCountryCode) {
return allowedCountryCode.toLowerCase();
});
return countryCode && allowedCountries.indexOf(countryCode) !== -1;
}
}
window.canPlayVideo = function () {
if (hasVideoOnPage === null) {
hasVideoOnPage = videoDetails.mediaId && (
videoDetails.isDedicatedForArticle ||
(!hasMaxedOutPlayerImpressionsInWiki() && isVideoBridgeAllowedForCountry())
);
}
return hasVideoOnPage;
};
if (!window.canPlayVideo()) {
document.body.classList.add('no-featured-video');
} else {
document.body.classList.add('has-featured-video');
}
})();
</script>
<div itemprop="video" itemscope itemtype="http://schema.org/VideoObject">
<!-- <script src="https://cdn.jwplayer.com/libraries/VXc5h4Tf.js"></script> -->
<meta itemprop="name" content="Wiki Targeted (Games)">
<meta itemprop="duration" content="PT01M43S">
<meta itemprop="description" content="">
<meta itemprop="thumbnailUrl" content="https://cdn.jwplayer.com/v2/media/XUMg12N5/poster.jpg?width=720">
<meta itemprop="contentURL" content="https://cdn.jwplayer.com/videos/XUMg12N5-cSpmBcaY.mp4">
<meta itemprop="uploadDate" content="2023-03-02T22:04:26+00:00">
<div id="featured-video__player-container" class="featured-video-player-container"></div>
</div>
<div id="mw-content-text" class="mw-body-content mw-content-ltr" lang="en" dir="ltr"><!-- Google Tag Manager (noscript) -->
<noscript><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-N6XD44P" height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript>
<!-- End Google Tag Manager (noscript) -->
<div class="mw-parser-output"><figure class="thumb tright show-info-icon" style="width: 300px"> <a href="https://static.wikia.nocookie.net/phasmophobia/images/a/a5/Full_item_set_on_0.6.3.1.jpg/revision/latest?cb=20220912113919" class="image"><img alt="" src="https://static.wikia.nocookie.net/phasmophobia/images/a/a5/Full_item_set_on_0.6.3.1.jpg/revision/latest/scale-to-width-down/300?cb=20220912113919" decoding="async" loading="lazy" width="300" height="173" class="thumbimage" data-image-name="Full item set on 0.6.3.1.jpg" data-image-key="Full_item_set_on_0.6.3.1.jpg" /></a> <figcaption class="thumbcaption"> <a href="/wiki/File:Full_item_set_on_0.6.3.1.jpg" class="info-icon"><svg><use xlink:href="#wds-icons-info-small"></use></svg></a> <p class="caption">A set of equipment on the wall in the <a href="/wiki/Van" title="Van">van</a></p> </figcaption> </figure>
<p><b>Equipment</b> in <i><a href="/wiki/Phasmophobia" title="Phasmophobia">Phasmophobia</a></i> is used to determine the type of <a href="/wiki/Ghost" title="Ghost">ghost</a> inhabiting a location, or to achieve optional <a href="/wiki/Objectives" title="Objectives">objectives</a>. Players can purchase equipment using money they receive from successful <a href="/wiki/Contract" title="Contract">investigations</a>.
</p>
<div id="toc" class="toc" role="navigation" aria-labelledby="mw-toc-heading"><input type="checkbox" role="button" id="toctogglecheckbox" class="toctogglecheckbox" style="display:none" /><div class="toctitle" lang="en" dir="ltr"><h2 id="mw-toc-heading">Contents</h2><span class="toctogglespan"><label class="toctogglelabel" for="toctogglecheckbox"></label></span></div>
<ul>
<li class="toclevel-1 tocsection-1"><a href="#Mechanics"><span class="tocnumber">1</span> <span class="toctext">Mechanics</span></a></li>
<li class="toclevel-1 tocsection-2"><a href="#Starter_equipment"><span class="tocnumber">2</span> <span class="toctext">Starter equipment</span></a></li>
<li class="toclevel-1 tocsection-3"><a href="#Optional_equipment"><span class="tocnumber">3</span> <span class="toctext">Optional equipment</span></a></li>
<li class="toclevel-1 tocsection-4"><a href="#Van_equipment"><span class="tocnumber">4</span> <span class="toctext">Van equipment</span></a></li>
<li class="toclevel-1 tocsection-5"><a href="#Cursed_items/bonus_equipment"><span class="tocnumber">5</span> <span class="toctext">Cursed items/bonus equipment</span></a></li>
<li class="toclevel-1 tocsection-6"><a href="#Table_of_purchasable_equipment"><span class="tocnumber">6</span> <span class="toctext">Table of purchasable equipment</span></a></li>
<li class="toclevel-1 tocsection-7"><a href="#Removed_equipment"><span class="tocnumber">7</span> <span class="toctext">Removed equipment</span></a></li>
<li class="toclevel-1 tocsection-8"><a href="#Trivia"><span class="tocnumber">8</span> <span class="toctext">Trivia</span></a></li>
</ul>
</div>
<h2><span class="mw-headline" id="Mechanics">Mechanics</span></h2>
<p>Equipment may be purchased or sold via the <a href="/wiki/Equipment_Store" title="Equipment Store">Equipment Store</a> in the <a href="/wiki/Lobby" title="Lobby">lobby</a>.
</p><p>When a player dies, they lose all equipment they added to the mission, excluding the default starter equipment that is always provided. Players who stay alive do not have to collect their equipment at the end of a contract to keep them; they will be returned automatically. Items with limited use per contract (e.g. smudge sticks and sanity pills) do not need to be bought again if the player remains alive.
</p><p>The soft limit on purchasable equipment is 999 for each item. Players can still exceed the limit, but if they die, the number of that item will be reset to 999, without compensation.<sup class="nowrap" title="">[<i><a target="_blank" rel="noreferrer noopener" class="text" href="https://phasmophobia.fandom.com/wiki/Talk:Equipment"><span title="update chk" style="border-bottom: 1px dotted">verification needed</span></a></i>]</sup>
</p><p>Ghosts disrupt nearby electronic equipment whenever they are visible, such as during a <a href="/wiki/Hunt" title="Hunt">hunt</a> or when they manifest (i.e. become visible while <i>not</i> hunting). Holding active electronic equipment during a hunt will attract nearby ghosts.
</p><p>There are 4 types of equipment:
</p>
<ul><li><a href="/wiki/Equipment#Starter_equipment" title="Equipment">Starter equipment</a></li>
<li><a href="/wiki/Equipment#Optional_equipment" title="Equipment">Optional equipment</a></li>
<li><a href="/wiki/Equipment#Van_equipment" title="Equipment">Van equipment</a></li>
<li><a href="/wiki/Equipment#Onsite_equipment" title="Equipment">Onsite equipment</a></li></ul>
<h2><span class="mw-headline" id="Starter_equipment">Starter equipment</span></h2>
<p>Starter Equipment is available from the very beginning, and one of each of the following will always be included on an investigation, though additional pieces may be purchased.
</p>
<table class="fandom-table">
<tbody><tr>
<th><b>Equipment</b>
</th>
<th><b>Max limit</b>
</th>
<th><b>Description</b>
</th></tr>
<tr>
<td><a href="/wiki/Spirit_Box" title="Spirit Box">Spirit Box</a>
</td>
<td>2
</td>
<td>Used to communicate with a ghost through questions.
</td></tr>
<tr>
<td><a href="/wiki/Ghost_Writing_Book" title="Ghost Writing Book">Ghost Writing Book</a>
</td>
<td>2
</td>
<td>Used to obtain <a href="/wiki/Ghost_Writing" title="Ghost Writing">Ghost Writing</a> from a ghost.
</td></tr>
<tr>
<td><a href="/wiki/EMF_Reader" title="EMF Reader">EMF Reader</a>
</td>
<td>2
</td>
<td>Can detect EMF presence in the area. Used to obtain <a href="/wiki/EMF_Level_5" title="EMF Level 5">EMF Level 5</a> <a href="/wiki/Evidence" title="Evidence">evidence</a>.
</td></tr>
<tr>
<td><a href="/wiki/UV_Flashlight" title="UV Flashlight">UV Flashlight</a>
</td>
<td>2
</td>
<td>Used to reveal <a href="/wiki/Fingerprints" title="Fingerprints">fingerprints</a> and <a href="/wiki/Footprints" title="Footprints">footprints</a> created by ghosts.
</td></tr>
<tr>
<td><a href="/wiki/Flashlight" title="Flashlight">Flashlight</a>
</td>
<td>4
</td>
<td>Provides a basic source of light.
</td></tr>
<tr>
<td><a href="/wiki/Video_Camera" title="Video Camera">Video Camera</a>
</td>
<td>6
</td>
<td>Creates a video feed, which is relayed to the van's <a href="/wiki/Computer" title="Computer">computer</a>. Used to detect <a href="/wiki/Ghost_Orb" title="Ghost Orb">Ghost Orbs</a>.
</td></tr>
<tr>
<td><a href="/wiki/Photo_Camera" title="Photo Camera">Photo Camera</a>
</td>
<td>3
</td>
<td>Used to take photos of various ghost interactions for <a href="/wiki/Photo_Rewards" title="Photo Rewards">additional profit</a>.
</td></tr>
<tr>
<td><a href="/wiki/D.O.T.S._Projector" title="D.O.T.S. Projector">D.O.T.S. Projector</a>
</td>
<td>2
</td>
<td>Creates a field of green lights when placed. Used to detect <a href="/wiki/D.O.T.S_Projector_(Evidence)" title="D.O.T.S Projector (Evidence)">D.O.T.S Projector evidence</a>.
</td></tr></tbody></table>
<h2><span class="mw-headline" id="Optional_equipment">Optional equipment</span></h2>
<p>This equipment must be purchased in the game's equipment store and will not be given by default. Purchased equipment will be lost if a player dies during an investigation.
</p>
<table class="fandom-table">
<tbody><tr>
<th><b>Equipment</b>
</th>
<th><b>Max limit</b>
</th>
<th><b>Description</b>
</th></tr>
<tr>
<td><a href="/wiki/Candle" title="Candle">Candle</a>
</td>
<td>4
</td>
<td>Used for optional objectives, and to provide light.
</td></tr>
<tr>
<td><a href="/wiki/Crucifix" title="Crucifix">Crucifix</a>
</td>
<td>2
</td>
<td>Prevents ghosts from <a href="/wiki/Hunt" title="Hunt">hunting</a> in a certain radius.
</td></tr>
<tr>
<td><a href="/wiki/Glowstick" title="Glowstick">Glowstick</a>
</td>
<td>2
</td>
<td>Functions identically to the <a href="/wiki/UV_Flashlight" title="UV Flashlight">UV Flashlight</a>, albeit with a larger, spherical radius.
</td></tr>
<tr>