forked from TripSit/drugs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcombos.json
More file actions
3804 lines (3804 loc) · 158 KB
/
Copy pathcombos.json
File metadata and controls
3804 lines (3804 loc) · 158 KB
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
{
"2c-t-x": {
"2c-x": {
"status": "Caution"
},
"5-meo-xxt": {
"note": "Both classes of compounds can be unpredictable alone",
"status": "Caution"
},
"alcohol": {
"note": "Both these classes of compound can interact unpredictably. Caution should be exercised.",
"status": "Low Risk & Decrease"
},
"amphetamines": {
"note": "Stimulants increase anxiety levels and the risk of thought loops which can lead to negative experiences. In extreme cases, they can result in severe vasoconstriction, tachycardia, hypertension, and heart failure.",
"status": "Unsafe"
},
"amt": {
"status": "Dangerous"
},
"benzodiazepines": {
"status": "Low Risk & Decrease"
},
"caffeine": {
"note": "High doses of caffeine may cause anxiety which is less manageable when tripping, and since both are stimulating the combination may cause some physical discomfort.",
"status": "Low Risk & No Synergy"
},
"cannabis": {
"note": "Cannabis has an unexpectedly strong and somewhat unpredictable synergy with psychedelics.",
"status": "Caution"
},
"cocaine": {
"note": "Cocaine and 2c-t-x both provide considerable stimulation. When combined they can result in severe vasoconstriction, tachycardia, hypertension, and in extreme cases heart failure.",
"status": "Unsafe"
},
"dextromethorphan": {
"status": "Unsafe"
},
"dmt": {
"status": "Low Risk & Synergy"
},
"dox": {
"status": "Caution"
},
"ghb/gbl": {
"status": "Low Risk & Decrease"
},
"ketamine": {
"status": "Low Risk & Synergy"
},
"lithium": {
"note": "There is a large number of reports indicating a high seizure and psychosis risk from this combination.",
"sources": [
{
"author": "Sandeep M Nayak, Natalie Gukasyan, Frederick S Barrett , Earth Erowid , Fire Erowid , Roland R Griffiths",
"title": "Classic Psychedelic Coadministration with Lithium, but Not Lamotrigine, is Associated with Seizures: An Analysis of Online Psychedelic Experience Reports",
"url": "https://doi.org/10.1055/a-1524-2794"
},
{
"author": "Erowid",
"title": "Erowid Interactions",
"url": "https://erowid.org/chemicals/lsd/lsd_interactions.shtml"
},
{
"author": "freshboi88",
"title": "I Was Only on One Dose",
"url": "https://erowid.org/experiences/exp.php?ID=93681"
},
{
"author": "YouWerentYouAnymore",
"title": "Brought My Worst Thoughts to Life",
"url": "https://erowid.org/experiences/exp.php?ID=110780"
},
{
"author": "Otto Simonsson, Peper S. Hendricks, Richard Chambers, Walter Osika, Simon B. Goldberg",
"title": "Prevalence and associations of challenging, difficult or distressing experiences using classic psychedelics",
"url": "https://doi.org/10.1016/j.jad.2023.01.073"
}
],
"status": "Dangerous"
},
"lsd": {
"status": "Low Risk & Synergy"
},
"maois": {
"note": "MAO-B inhibitors can increase the potency and duration of phenethylamines unpredictably, which could be dangerous given the unpredictability of the 2C-T-x series",
"status": "Caution"
},
"mdma": {
"status": "Caution"
},
"mescaline": {
"status": "Caution"
},
"mushrooms": {
"status": "Low Risk & Synergy"
},
"mxe": {
"status": "Caution"
},
"nbomes": {
"status": "Caution"
},
"nitrous": {
"status": "Low Risk & Synergy"
},
"opioids": {
"note": "No expected interactions, some opioids have serotonin action, and could lead to Serotonin Syndrome or a seizure. These are pretty much only to Pentazocine, Methadone, Tramadol, Tapenatdol.",
"status": "Low Risk & No Synergy"
},
"pcp": {
"status": "Dangerous"
},
"ssris": {
"status": "Low Risk & Decrease"
},
"tramadol": {
"status": "Unsafe"
}
},
"2c-x": {
"2c-t-x": {
"status": "Caution"
},
"5-meo-xxt": {
"note": "The 5-MeO psychedelics can interact unpredictably to potentiate other psychedelics",
"status": "Caution"
},
"alcohol": {
"status": "Low Risk & Decrease"
},
"amphetamines": {
"note": "The anxiogenic and focusing effects of stimulants increase the chance of unpleasant thought loops. The combination is generally unnecessary because of the stimulating effects of psychedelics. Combination of the stimulating effects may be uncomfortable.",
"status": "Caution"
},
"amt": {
"status": "Dangerous"
},
"benzodiazepines": {
"status": "Low Risk & Decrease"
},
"caffeine": {
"note": "High doses of caffeine may cause anxiety which is less manageable when tripping, and since both are stimulating the combination may cause some physical discomfort.",
"status": "Low Risk & No Synergy"
},
"cannabis": {
"note": "Cannabis has an unexpectedly strong and somewhat unpredictable synergy with psychedelics.",
"status": "Caution"
},
"cocaine": {
"note": "The anxiogenic and focusing effects of stimulants increase the chance of unpleasant thought loops. The combination is generally unnecessary because of the stimulating effects of psychedelics. Combination of the stimulating effects may be uncomfortable.",
"status": "Caution"
},
"dextromethorphan": {
"status": "Low Risk & Synergy"
},
"dmt": {
"status": "Low Risk & Synergy"
},
"dox": {
"status": "Caution"
},
"ghb/gbl": {
"status": "Low Risk & Decrease"
},
"ketamine": {
"status": "Low Risk & Synergy"
},
"lithium": {
"note": "There is a large number of reports indicating a high seizure and psychosis risk from this combination.",
"sources": [
{
"author": "Sandeep M Nayak, Natalie Gukasyan, Frederick S Barrett , Earth Erowid , Fire Erowid , Roland R Griffiths",
"title": "Classic Psychedelic Coadministration with Lithium, but Not Lamotrigine, is Associated with Seizures: An Analysis of Online Psychedelic Experience Reports",
"url": "https://doi.org/10.1055/a-1524-2794"
},
{
"author": "Erowid",
"title": "Erowid Interactions",
"url": "https://erowid.org/chemicals/lsd/lsd_interactions.shtml"
},
{
"author": "freshboi88",
"title": "I Was Only on One Dose",
"url": "https://erowid.org/experiences/exp.php?ID=93681"
},
{
"author": "YouWerentYouAnymore",
"title": "Brought My Worst Thoughts to Life",
"url": "https://erowid.org/experiences/exp.php?ID=110780"
},
{
"author": "Otto Simonsson, Peper S. Hendricks, Richard Chambers, Walter Osika, Simon B. Goldberg",
"title": "Prevalence and associations of challenging, difficult or distressing experiences using classic psychedelics",
"url": "https://doi.org/10.1016/j.jad.2023.01.073"
}
],
"status": "Dangerous"
},
"lsd": {
"status": "Low Risk & Synergy"
},
"maois": {
"note": "MAO-B inhibitors can increase the potency and duration of phenethylamines unpredictably",
"status": "Caution"
},
"mdma": {
"status": "Low Risk & Synergy"
},
"mescaline": {
"status": "Caution"
},
"mushrooms": {
"status": "Low Risk & Synergy"
},
"mxe": {
"status": "Low Risk & Synergy"
},
"nbomes": {
"status": "Caution"
},
"nitrous": {
"status": "Low Risk & Synergy"
},
"opioids": {
"status": "Low Risk & No Synergy"
},
"pcp": {
"status": "Low Risk & Synergy"
},
"ssris": {
"status": "Low Risk & Decrease"
},
"tramadol": {
"note": "Tramadol is well known to lower seizure threshold and psychedelics raise the risk of seizures.",
"status": "Unsafe"
}
},
"5-meo-xxt": {
"2c-t-x": {
"note": "Both classes of compounds can be unpredictable alone",
"status": "Caution"
},
"2c-x": {
"note": "The 5-MeO psychedelics can interact unpredictably to potentiate other psychedelics",
"status": "Caution"
},
"alcohol": {
"status": "Low Risk & Decrease"
},
"amphetamines": {
"note": "The anxiogenic and focusing effects of stimulants increase the chance of unpleasant thought loops. The combination is generally unnecessary because of the stimulating effects of psychedelics. ",
"status": "Unsafe"
},
"amt": {
"status": "Dangerous"
},
"benzodiazepines": {
"status": "Low Risk & Decrease"
},
"caffeine": {
"note": "High doses of caffeine may cause anxiety which is less manageable when tripping, and since both are stimulating the combination may cause some physical discomfort.",
"status": "Low Risk & No Synergy"
},
"cannabis": {
"note": "Cannabis has an unexpectedly strong and somewhat unpredictable synergy with psychedelics.",
"status": "Caution"
},
"cocaine": {
"note": "The anxiogenic and focusing effects of stimulants increase the chance of unpleasant thought loops. The combination is generally unnecessary because of the stimulating effects of psychedelics. ",
"status": "Unsafe"
},
"dextromethorphan": {
"note": "Little information exists about this combination.",
"status": "Unsafe"
},
"dmt": {
"status": "Low Risk & Synergy"
},
"dox": {
"note": "The 5-MeO class of tryptamines can be unpredictable in their interactions, particularly increasing the risk of unpleasant physical side effects.",
"status": "Caution"
},
"ghb/gbl": {
"status": "Low Risk & Decrease"
},
"ketamine": {
"status": "Low Risk & Synergy"
},
"lsd": {
"status": "Low Risk & Synergy"
},
"maois": {
"status": "Dangerous"
},
"mdma": {
"note": "Some of the 5-MeO tryptamines are a bit unpredictable and should be mixed with MDMA with care",
"status": "Caution"
},
"mescaline": {
"note": "The 5-MeO class of tryptamines can be unpredictable in their interactions",
"status": "Caution"
},
"mushrooms": {
"status": "Low Risk & Synergy"
},
"mxe": {
"note": "Little information exists about this combination.",
"status": "Low Risk & Synergy"
},
"nbomes": {
"note": "The 5-MeO class of tryptamines can be unpredictable in their interactions and the NBOMes are known to be unpredictable even alone. This combination is best avoided",
"status": "Caution"
},
"nitrous": {
"status": "Low Risk & Synergy"
},
"opioids": {
"status": "Low Risk & No Synergy"
},
"pcp": {
"status": "Dangerous"
},
"ssris": {
"status": "Low Risk & Decrease"
},
"tramadol": {
"status": "Unsafe"
}
},
"alcohol": {
"2c-t-x": {
"note": "Both these classes of compound can interact unpredictably. Caution should be exercised.",
"status": "Low Risk & Decrease"
},
"2c-x": {
"status": "Low Risk & Decrease"
},
"5-meo-xxt": {
"status": "Low Risk & Decrease"
},
"amphetamines": {
"note": "Drinking on stimulants is risky because the sedative effects of the alcohol are reduced, and these are what the body uses to gauge drunkenness. This typically leads to excessive drinking with greatly reduced inhibitions, high risk of liver damage and increased dehydration. They will also allow you to drink past a point where you might normally pass out, increasing the risk. If you do decide to do this then you should set a limit of how much you will drink each hour and stick to it, bearing in mind that you will feel the alcohol and the stimulant less. Extended release formulations may severely impede sleep, further worsening the hangover.",
"status": "Caution"
},
"amt": {
"note": "aMT has a broad mechanism of action in the brain and so does alcohol so the combination can be unpredictable",
"status": "Caution"
},
"benzodiazepines": {
"note": "Both drugs increase the CNS depressant effects of each other. There is a high risk of blackouts/memory loss, unconsciousness, and respiratory depression leading to death. While unconscious, may cause vomit aspiration as well.",
"status": "Dangerous"
},
"caffeine": {
"status": "Low Risk & No Synergy"
},
"cannabis": {
"note": "In excess, this combination can cause nausea.",
"status": "Low Risk & Synergy"
},
"cocaine": {
"note": "Cocaine can decrease some of the intoxicating effects of alcohol, causing some people to drink more than they otherwise would, which leads to greater behavioral and physical health risks. There is also some debate about cocaethylene, a metabolite produced when combining alcohol and cocaine, with some researchers positing that it is more cardiotoxic than cocaine on its own. Use moderation when combining these substances.",
"sources": [
{
"author": "McCance-Katz, E. F., Kosten, T. R., & Jatlow, P. ",
"title": "Concurrent use of cocaine and alcohol is more potent and potentially more toxic than use of either alone—A multiple-dose study.",
"url": "https://doi.org/10.1016/S0006-3223(97)00426-5"
},
{
"author": "Pergolizzi, J., Breve, F., Magnusson, P., LeQuang, J. A. K., & Varrassi, G.",
"title": "Cocaethylene: When cocaine and alcohol are taken together. (2022)",
"url": "https://doi.org/10.7759/cureus.22498"
},
{
"author": "Shastry, S., Manoochehri, O., Richardson, L. D., & Manini, A. F. ",
"title": "Cocaethylene cardiotoxicity in emergency department patients with acute drug overdose.",
"url": "https://doi.org/10.1111/acem.14584"
},
{
"author": "Wiener, S. E., Sutijono, D., Moon, C. H., Subramanian, R. A., Calaycay, J., Rushbrook, J. I., & Zehtabchi, S.",
"title": "Patients with detectable cocaethylene are more likely to require intensive care unit admission after trauma. ",
"url": "https://doi.org/10.1016/j.ajem.2009.06.014"
}
],
"status": "Unsafe"
},
"dextromethorphan": {
"note": "Both drugs increase the CNS depressant effects of each other. At moderate-to-high doses, there is a high risk of blackouts/memory loss, unconsciousness, and respiratory depression leading to death. While unconscious, may cause vomit aspiration as well. Avoid on anything higher than 1st plateau.",
"status": "Dangerous"
},
"dmt": {
"status": "Low Risk & Decrease"
},
"dox": {
"note": "Drinking on stimulants is risky because the sedative effects of the alcohol are reduced, and these are what the body uses to gauge drunkenness. This typically leads to excessive drinking with greatly reduced inhibitions, high risk of liver damage and increased dehydration. They will also allow you to drink past a point where you might normally pass out, increasing the risk.",
"status": "Low Risk & Decrease"
},
"ghb/gbl": {
"note": "Even in very low doses this combination rapidly leads to memory loss, severe ataxia and unconsciousness. There is a high risk of vomit aspiration while unconscious.",
"status": "Dangerous"
},
"ketamine": {
"note": "Both substances cause ataxia and bring a very high risk of vomiting and unconsciousness. If the user falls unconscious while under the influence there is a severe risk of vomit aspiration if they are not placed in the recovery position.",
"status": "Dangerous"
},
"lsd": {
"status": "Low Risk & Decrease"
},
"maois": {
"note": "Tyramine found in many alcoholic beverages can have dangerous reactions with MAOIs, causing an increase in blood pressure.",
"status": "Unsafe"
},
"mdma": {
"note": "The combination of MDMA and alcohol may increase strain on the cardiovascular system and lead to increased alcohol consumption. MDMA may also impair one's ability to recognize their level of drunkenness, leading to increased alcohol consumption and poor decision-making. Alcohol may also increase the risk of dehydration and hyperthermia (increased body temperature) when combined with MDMA.",
"sources": [
{
"author": "Hamida, S. B., Plute, E., Cosquer, B., Kelche, C., Jones, B. C., & Cassel, J.-C. ",
"title": "Interactions between ethanol and cocaine, amphetamine, or MDMA in the rat: thermoregulatory and locomotor effects. (2008)",
"url": "https://doi.org/10.1007/s00213-007-1007-5"
},
{
"author": "Ramaekers, J. G., & Kuypers, K. P. C.",
"title": "Acute Effects of 3,4-Methylenedioxymethamphetamine (MDMA) on Behavioral Measures of Impulsivity: Alone and in Combination with Alcohol. (2006)",
"url": "https://doi.org/10.1038/sj.npp.1300894"
},
{
"author": "Hernández-López, C., Farré, M., Roset, P. N., Menoyo, E., Pizarro, N., Ortuño, J., Torrens, M., Camı́, J., & Torre, R. de la.",
"title": "3,4-Methylenedioxymethamphetamine (Ecstasy) and Alcohol Interactions in Humans: Psychomotor Performance, Subjective Effects, and Pharmacokinetics. (2002)",
"url": "https://doi.org/10.1124/jpet.300.1.236"
},
{
"author": "van Amsterdam, J., Brunt, T. M., Pierce, M., & van den Brink, W.",
"title": "Hard Boiled: Alcohol Use as a Risk Factor for MDMA-Induced Hyperthermia: a Systematic Review. (2021)",
"url": "https://doi.org/10.1007/s12640-021-00416-z"
}
],
"status": "Caution"
},
"mescaline": {
"status": "Low Risk & Decrease"
},
"mushrooms": {
"status": "Low Risk & Decrease"
},
"mxe": {
"note": "There is a high risk of memory loss, vomiting and severe ataxia from this combination.",
"status": "Dangerous"
},
"nbomes": {
"status": "Low Risk & Decrease"
},
"nitrous": {
"note": "Both substances potentiate the ataxia and sedation caused by the other and can lead to unexpected loss of consciousness at high doses. While unconscious, vomit aspiration is a risk if not placed in the recovery position. Memory blackouts are likely.",
"status": "Caution"
},
"opioids": {
"note": "Both drugs increase the CNS depressant effects of each other. There is a high risk of blackouts/memory loss, unconsciousness, and respiratory depression leading to death. While unconscious, may cause vomit aspiration as well.",
"status": "Dangerous"
},
"pcp": {
"note": "Details of this combination are not well understood but PCP generally interacts in an unpredictable manner.",
"status": "Unsafe"
},
"ssris": {
"note": "Alcohol may potentiate some of the pharmacologic effects of CNS-active agents. Use in combination may result in additive central nervous system depression and/or impairment of judgment, thinking, and psychomotor skills.",
"status": "Caution"
},
"tramadol": {
"note": "Heavy CNS depressants, risk of seizures. Both substances potentiate the ataxia and sedation caused by the other and can lead to unexpected loss of consciousness at high doses. Place the affected individual in the recovery position to prevent vomit aspiration from excess. Memory blackouts are likely.",
"status": "Dangerous"
}
},
"amphetamines": {
"2c-t-x": {
"note": "Stimulants increase anxiety levels and the risk of thought loops which can lead to negative experiences. In extreme cases, they can result in severe vasoconstriction, tachycardia, hypertension, and heart failure.",
"status": "Unsafe"
},
"2c-x": {
"note": "The anxiogenic and focusing effects of stimulants increase the chance of unpleasant thought loops. The combination is generally unnecessary because of the stimulating effects of psychedelics. Combination of the stimulating effects may be uncomfortable.",
"status": "Caution"
},
"5-meo-xxt": {
"note": "The anxiogenic and focusing effects of stimulants increase the chance of unpleasant thought loops. The combination is generally unnecessary because of the stimulating effects of psychedelics. ",
"status": "Unsafe"
},
"alcohol": {
"note": "Drinking on stimulants is risky because the sedative effects of the alcohol are reduced, and these are what the body uses to gauge drunkenness. This typically leads to excessive drinking with greatly reduced inhibitions, high risk of liver damage and increased dehydration. They will also allow you to drink past a point where you might normally pass out, increasing the risk. If you do decide to do this then you should set a limit of how much you will drink each hour and stick to it, bearing in mind that you will feel the alcohol and the stimulant less. Extended release formulations may severely impede sleep, further worsening the hangover.",
"status": "Caution"
},
"amt": {
"status": "Dangerous"
},
"benzodiazepines": {
"note": "Both can dull each other's effects, so if one wears off before the other it's possible to overdose due to the lack of counteraction",
"status": "Low Risk & Decrease"
},
"caffeine": {
"note": "This combination of stimulants is not generally necessary and may increase strain on the heart, as well as potentially causing anxiety and greater physical discomfort.",
"status": "Caution"
},
"cannabis": {
"note": "Stimulants increase anxiety levels and the risk of thought loops which can lead to negative experiences",
"status": "Caution"
},
"cocaine": {
"note": "This combination of stimulants will increase strain on the heart. It is not generally worth it as cocaine has a mild blocking effect on dopamine releasers like amphetamine",
"status": "Caution"
},
"dextromethorphan": {
"note": "Both substances raise heart rate, in extreme cases, panic attacks caused by these drugs have led to more serious heart issues.",
"status": "Unsafe"
},
"dmt": {
"note": "Stimulants increase anxiety levels and the risk of thought loops which can lead to negative experiences",
"status": "Caution"
},
"dox": {
"note": "The combined stimulating effects of the two can lead to an uncomfortable body-load, while the focusing effects of amphetamine can easily lead to thought loops. Coming down from amphetamines while the DOx is still active can be quite anxiogenic. ",
"status": "Unsafe"
},
"ghb/gbl": {
"note": "Stimulants increase respiration rate allowing for a higher dose of sedatives. If the stimulant wears off first then the opiate may overcome the individual and cause respiratory arrest.",
"status": "Caution"
},
"ketamine": {
"note": "No unexpected interactions, though likely to increase blood pressure but not an issue with sensible doses. Moving around on high doses of this combination may be ill advised due to risk of physical injury.",
"status": "Caution"
},
"lithium": {
"note": "Lithium may be neuroprotective when taken with amphetamines and Lithium may decrease the hyperactive effects of amphetamines. Studies indicate this combination is safe.",
"sources": [
{
"author": "Ago, Y., Tanaka, T., Kita, Y., Tokumoto, H., Takuma, K., & Matsuda, T.",
"title": "Lithium attenuates methamphetamine-induced hyperlocomotion and behavioral sensitization via modulation of prefrontal monoamine release. (2012)",
"url": "https://doi.org/10.1016/j.neuropharm.2011.10.004"
},
{
"author": "Gould, T. D., O’Donnell, K. C., Picchini, A. M., & Manji, H. K.",
"title": "Strain Differences in Lithium Attenuation of d-Amphetamine-Induced Hyperlocomotion: A Mouse Model for the Genetics of Clinical Response to Lithium. (2007)",
"url": "https://doi.org/10.1038/sj.npp.1301254"
},
{
"author": "Zhou, Z., Wang, Y., Tan, H., Bharti, V., Che, Y., & Wang, J.-F. ",
"title": "Chronic treatment with mood stabilizer lithium inhibits amphetamine-induced risk-taking manic-like behaviors. (2015)",
"url": "https://doi.org/10.1016/j.neulet.2015.07.027"
},
{
"author": "Silverstone, P. H., Pukhovsky, A., & Rotzinger, S.",
"title": "Lithium does not attenuate the effects of d-amphetamine in healthy volunteers. (1998)",
"url": "https://doi.org/10.1016/S0165-1781(98)00037-7"
}
],
"status": "Low Risk & No Synergy"
},
"lsd": {
"note": "Stimulants increase anxiety levels and the risk of thought loops which can lead to negative experiences",
"status": "Caution"
},
"maois": {
"note": "MAO-B inhibitors can increase the potency and duration of phenethylamines unpredictably. MAO-A inhibitors with amphetamine can lead to hypertensive crises.",
"status": "Dangerous"
},
"mdma": {
"note": "This combination of stimulants will increase strain on the heart, may cause some physical discomfort, and has the chance to cause cardiovascular issues. The anxiogenic and focusing effects of stimulants can increase the chance of unpleasant thought loops and make the experience more uncomfortable, this combination raises these chances. Amphetamines will increase the neurotoxic effects of MDMA, in addition to causing further concerns of hyperthermia due to the inherent nature of the combination. It will also raise one's body temperature, also likely making the combination more neurotoxic.",
"sources": [
{
"author": "Kelly J. Clemens, Iain S. McGregor, Glenn E. Hunt, Jennifer L. Cornish",
"title": "MDMA, methamphetamine and their combination: possible lessons for party drug users from recent preclinical research",
"url": "https://doi.org/10.1080/09595230601036945"
},
{
"author": "Kelly J. Clemens, Iain S. McGregor, Glenn E. Hunt, Jennifer L. Cornish",
"title": "Repeated weekly exposure to MDMA, methamphetamine or their combination: long-term behavioural and neurochemical effects in rats ",
"url": "https://doi.org/10.1016/j.drugalcdep.2006.06.004"
},
{
"author": "P. Leon Brown, Eugene A. Kiyatkin",
"title": "Brain hyperthermia induced by MDMA (‘ecstasy’): modulation by environmental conditions",
"url": "https://doi.org/10.1111/j.0953-816X.2004.03453.x"
}
],
"status": "Caution"
},
"mescaline": {
"note": "The focus and anxiety caused by stimulants is magnified by psychedelics and results in an increased risk of thought loops",
"status": "Caution"
},
"mushrooms": {
"note": "Stimulants increase anxiety levels and the risk of thought loops which can lead to negative experiences",
"status": "Caution"
},
"mxe": {
"note": "Risk of tachycardia, hypertension, and manic states",
"status": "Caution"
},
"nbomes": {
"note": "Amphetamines and NBOMes both provide considerable stimulation. When combined they can result in tachycardia, hypertension, vasoconstriction and in extreme cases heart failure. The anxiogenic and focusing effects of stimulants are also not good in combination with psychedelics as they can lead to unpleasant thought loops. NBOMes are known to cause seizures and stimulants can increase this risk.",
"status": "Unsafe"
},
"nitrous": {
"status": "Low Risk & Synergy"
},
"opioids": {
"note": "Stimulants increase respiration rate, which can allow for a higher dose of opiates normal . If the stimulant wears off first then the opiate may overcome the individual and cause respiratory arrest.",
"status": "Caution"
},
"pcp": {
"note": "This combination can easily lead to hypermanic states",
"status": "Unsafe"
},
"ssris": {
"status": "Low Risk & No Synergy"
},
"tramadol": {
"note": "Tramadol and stimulants both increase the risk of seizures.",
"status": "Dangerous"
}
},
"amt": {
"2c-t-x": {
"status": "Dangerous"
},
"2c-x": {
"status": "Dangerous"
},
"5-meo-xxt": {
"status": "Dangerous"
},
"alcohol": {
"note": "aMT has a broad mechanism of action in the brain and so does alcohol so the combination can be unpredictable",
"status": "Caution"
},
"amphetamines": {
"status": "Dangerous"
},
"benzodiazepines": {
"status": "Low Risk & Decrease"
},
"caffeine": {
"note": "High doses of caffeine may cause anxiety which is less manageable when tripping, and since both are stimulating the combination may cause some physical discomfort.",
"status": "Caution"
},
"cannabis": {
"note": "Cannabis has an unexpectedly strong and somewhat unpredictable synergy with psychedelics. Small amounts can reduce nausea with aMT but take care.",
"status": "Caution"
},
"cocaine": {
"status": "Dangerous"
},
"dextromethorphan": {
"status": "Dangerous"
},
"dmt": {
"status": "Low Risk & Synergy"
},
"dox": {
"status": "Dangerous"
},
"ghb/gbl": {
"status": "Low Risk & Decrease"
},
"ketamine": {
"status": "Low Risk & Synergy"
},
"lsd": {
"status": "Low Risk & Synergy"
},
"maois": {
"note": "aMT is an MAOI on its own. Using enzyme inhibitors can greatly reduce predictability of effects.",
"status": "Dangerous"
},
"mdma": {
"status": "Dangerous"
},
"mescaline": {
"status": "Dangerous"
},
"mushrooms": {
"status": "Low Risk & Synergy"
},
"mxe": {
"status": "Dangerous"
},
"nbomes": {
"status": "Dangerous"
},
"nitrous": {
"status": "Low Risk & Synergy"
},
"opioids": {
"note": "No unexpected interactions",
"status": "Low Risk & No Synergy"
},
"pcp": {
"status": "Dangerous"
},
"ssris": {
"status": "Dangerous"
},
"tramadol": {
"status": "Dangerous"
}
},
"benzodiazepines": {
"2c-t-x": {
"status": "Low Risk & Decrease"
},
"2c-x": {
"status": "Low Risk & Decrease"
},
"5-meo-xxt": {
"status": "Low Risk & Decrease"
},
"alcohol": {
"note": "Both drugs increase the CNS depressant effects of each other. There is a high risk of blackouts/memory loss, unconsciousness, and respiratory depression leading to death. While unconscious, may cause vomit aspiration as well.",
"status": "Dangerous"
},
"amphetamines": {
"note": "Both can dull each other's effects, so if one wears off before the other it's possible to overdose due to the lack of counteraction",
"status": "Low Risk & Decrease"
},
"amt": {
"status": "Low Risk & Decrease"
},
"caffeine": {
"status": "Low Risk & Decrease"
},
"cannabis": {
"status": "Low Risk & Decrease"
},
"cocaine": {
"status": "Low Risk & Decrease"
},
"dextromethorphan": {
"note": "Both substances potentiate the ataxia and sedation caused by the other and this can lead to unexpected loss of consciousness at high doses. While unconscious, vomit aspiration is a risk if not placed in the recovery position.",
"status": "Caution"
},
"dmt": {
"status": "Low Risk & Decrease"
},
"dox": {
"status": "Low Risk & Decrease"
},
"ghb/gbl": {
"note": "The two substances potentiate each other strongly and unpredictably, very rapidly leading to unconsciousness. While unconscious, vomit aspiration is a risk if not placed in the recovery position.",
"status": "Dangerous"
},
"ketamine": {
"note": "Both substances potentiate the ataxia and sedation caused by the other and can lead to unexpected loss of consciousness at high doses. While unconscious, vomit aspiration is a risk if not placed in the recovery position.",
"status": "Caution"
},
"lsd": {
"status": "Low Risk & Decrease"
},
"maois": {
"status": "Low Risk & Synergy"
},
"mdma": {
"status": "Low Risk & Decrease"
},
"mescaline": {
"status": "Low Risk & Decrease"
},
"mushrooms": {
"status": "Low Risk & Decrease"
},
"mxe": {
"note": "Both substances potentiate the ataxia and sedation caused by the other and can lead to unexpected loss of consciousness at high doses. Place the affected individual in the recovery position to prevent vomit aspiration from excess.",
"status": "Caution"
},
"nbomes": {
"status": "Low Risk & Decrease"
},
"nitrous": {
"status": "Low Risk & Decrease"
},
"opioids": {
"note": "Both drugs increase the CNS depressant effects of each other. There is a high risk of blackouts/memory loss, unconsciousness, and respiratory depression leading to death. While unconscious, may cause vomit aspiration as well.",
"status": "Dangerous"
},
"pcp": {
"note": "Both substances potentiate the ataxia and sedation caused by the other and can lead to unexpected loss of consciousness at high doses. While unconscious, vomit aspiration is a risk if not placed in the recovery position. Memory blackouts are likely",
"status": "Unsafe"
},
"ssris": {
"status": "Low Risk & No Synergy"
},
"tramadol": {
"note": "Both drugs increase the CNS depressant effects of each other. There is a high risk of blackouts/memory loss, unconsciousness, and respiratory depression leading to death. While unconscious, may cause vomit aspiration as well.",
"status": "Dangerous"
}
},
"caffeine": {
"2c-t-x": {
"note": "High doses of caffeine may cause anxiety which is less manageable when tripping, and since both are stimulating the combination may cause some physical discomfort.",
"status": "Low Risk & No Synergy"
},
"2c-x": {
"note": "High doses of caffeine may cause anxiety which is less manageable when tripping, and since both are stimulating the combination may cause some physical discomfort.",
"status": "Low Risk & No Synergy"
},
"5-meo-xxt": {
"note": "High doses of caffeine may cause anxiety which is less manageable when tripping, and since both are stimulating the combination may cause some physical discomfort.",
"status": "Low Risk & No Synergy"
},
"alcohol": {
"status": "Low Risk & No Synergy"
},
"amphetamines": {
"note": "This combination of stimulants is not generally necessary and may increase strain on the heart, as well as potentially causing anxiety and greater physical discomfort.",
"status": "Caution"
},
"amt": {
"note": "High doses of caffeine may cause anxiety which is less manageable when tripping, and since both are stimulating the combination may cause some physical discomfort.",
"status": "Caution"
},
"benzodiazepines": {
"status": "Low Risk & Decrease"
},
"cannabis": {
"status": "Low Risk & No Synergy"
},
"cocaine": {
"note": "Both stimulants, risk of tachycardia, hypertension, and in extreme cases heart failure.",
"status": "Caution"
},
"dextromethorphan": {
"note": "High doses of caffeine can potentially exacerbate anxiety, especially during a dissociative experience, due to its stimulating effects. This combination might also lead to physical discomfort. However, individual responses to caffeine can vary significantly, often influenced by factors like habitual versus occasional usage.",
"sources": [
{
"author": "Chad J Reissig, Lawrence P Carter, Matthew W Johnson, Miriam Z Mintzer, Margaret A Klinedinst, Roland R Griffiths",
"title": "High doses of dextromethorphan, an NMDA antagonist, produce effects similar to classic hallucinogens ",
"url": "https://pubmed.ncbi.nlm.nih.gov/22526529/"
},
{
"author": "Arthur Eumann Mesas, Luz M Leon-Muñoz, Fernando Rodriguez-Artalejo, Esther Lopez-Garcia",
"title": "The effect of coffee on blood pressure and cardiovascular disease in hypertensive individuals: a systematic review and meta-analysis ",
"url": "https://pubmed.ncbi.nlm.nih.gov/21880846/"
},
{
"author": "M-L Nurminen, L Niittynen, R Korpela & H Vapaatalo",
"title": "Coffee, caffeine and blood pressure: a critical review",
"url": "https://www.nature.com/articles/1600899"
}
],
"status": "Caution"
},
"dmt": {
"status": "Low Risk & No Synergy"
},
"dox": {
"note": "High doses of caffeine may cause anxiety which is less manageable when tripping, and since both are stimulating it may cause some physical discomfort.",
"status": "Caution"
},
"ghb/gbl": {
"status": "Low Risk & No Synergy"
},
"ketamine": {
"note": "No unexpected interactions.",
"status": "Low Risk & No Synergy"
},
"lsd": {
"status": "Low Risk & No Synergy"
},
"maois": {
"status": "Low Risk & No Synergy"
},
"mdma": {
"note": "Caffiene is not really necessary with MDMA and increases any neurotoxic effects from MDMA",
"status": "Caution"
},
"mescaline": {
"note": "High doses of caffeine are uncomfortable and this will be magnified by psychedelics",
"status": "Low Risk & No Synergy"
},
"mushrooms": {
"status": "Low Risk & No Synergy"
},
"mxe": {
"note": "No likely interactions",
"status": "Low Risk & No Synergy"
},
"nbomes": {
"note": "Caffiene can bring out the natural stimulation from psychedelic drugs to make it uncomfortable. High doses can cause anxiety which is hard to handle while tripping",
"status": "Caution"
},
"nitrous": {
"status": "Low Risk & No Synergy"
},
"opioids": {
"status": "Low Risk & No Synergy"
},
"pcp": {
"note": "Details of this combination are not well understood but PCP generally interacts in an unpredictable manner.",
"status": "Caution"
},
"ssris": {
"status": "Low Risk & No Synergy"
},
"tramadol": {
"status": "Low Risk & No Synergy"
}
},
"cannabis": {
"2c-t-x": {
"note": "Cannabis has an unexpectedly strong and somewhat unpredictable synergy with psychedelics.",
"status": "Caution"
},
"2c-x": {
"note": "Cannabis has an unexpectedly strong and somewhat unpredictable synergy with psychedelics.",
"status": "Caution"
},
"5-meo-xxt": {
"note": "Cannabis has an unexpectedly strong and somewhat unpredictable synergy with psychedelics.",
"status": "Caution"
},
"alcohol": {
"note": "In excess, this combination can cause nausea.",
"status": "Low Risk & Synergy"
},
"amphetamines": {
"note": "Stimulants increase anxiety levels and the risk of thought loops which can lead to negative experiences",
"status": "Caution"
},
"amt": {
"note": "Cannabis has an unexpectedly strong and somewhat unpredictable synergy with psychedelics. Small amounts can reduce nausea with aMT but take care.",
"status": "Caution"
},
"benzodiazepines": {
"status": "Low Risk & Decrease"
},
"caffeine": {
"status": "Low Risk & No Synergy"
},
"cocaine": {
"note": "Stimulants increase anxiety levels and the risk of thought loops which can lead to negative experiences",
"status": "Caution"
},
"dextromethorphan": {
"status": "Low Risk & Synergy"
},
"dmt": {
"note": "Cannabis has an unexpectedly strong and somewhat unpredictable synergy with psychedelics.",
"status": "Caution"
},
"dox": {
"note": "Cannabis has an unexpectedly strong and somewhat unpredictable synergy with psychedelics.",
"status": "Caution"
},
"ghb/gbl": {
"status": "Low Risk & Synergy"
},
"ketamine": {
"status": "Low Risk & Synergy"
},
"lsd": {
"note": "Cannabis has an unexpectedly strong and somewhat unpredictable synergy with psychedelics.",
"status": "Caution"
},
"maois": {
"status": "Low Risk & Synergy"
},
"mdma": {
"note": "Large amounts of cannabis may cause strong and somewhat unpredictable experiences in combination with MDMA. Cannabis should be saved for towards the end of the experience if possible.",
"status": "Low Risk & Synergy"
},
"mescaline": {
"note": "Cannabis has an unexpectedly strong and somewhat unpredictable synergy with psychedelics.",
"status": "Caution"
},
"mushrooms": {
"note": "Cannabis has an unexpectedly strong and somewhat unpredictable synergy with psychedelics.",
"status": "Caution"
},
"mxe": {
"status": "Low Risk & Synergy"
},
"nbomes": {
"note": "Cannabis has an unexpectedly strong and somewhat unpredictable synergy with psychedelics.",
"status": "Caution"
},
"nitrous": {
"status": "Low Risk & Synergy"
},
"opioids": {
"status": "Low Risk & Synergy"
},
"pcp": {
"status": "Low Risk & Synergy"
},
"ssris": {
"status": "Low Risk & No Synergy"
},
"tramadol": {
"status": "Low Risk & Synergy"
}
},
"cocaine": {
"2c-t-x": {
"note": "Cocaine and 2c-t-x both provide considerable stimulation. When combined they can result in severe vasoconstriction, tachycardia, hypertension, and in extreme cases heart failure.",