Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Quotes #741

Merged
merged 2 commits into from
Jan 15, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
75 changes: 71 additions & 4 deletions assets/data/combinedDB.json
Original file line number Diff line number Diff line change
Expand Up @@ -19258,6 +19258,77 @@
}
]
},
{
"url": "https://psychonautwiki.org/wiki/Chlordiazepoxide",
"name": "Chlordiazepoxide",
"aliases": [
"Librium"
],
"aliasesStr": "Librium",
"toxicity": [
"low toxicity",
"potentially lethal when mixed with depressants like alcohol or opioids"
],
"roas": [
{
"name": "Oral",
"dosage": [
{
"name": "Threshold",
"value": "5 mg"
},
{
"name": "Light",
"value": "5-10 mg"
},
{
"name": "Common",
"value": "10-25 mg"
},
{
"name": "Strong",
"value": "50-100 mg"
},
{
"name": "Heavy",
"value": "100 mg"
}
],
"duration": [
{
"name": "Onset",
"value": "30-60 minutes"
},
{
"name": "Peak",
"value": "120-180 minutes"
},
{
"name": "Afterglow",
"value": "150-300 hours"
},
{
"name": "Total",
"value": "24-60 hours"
}
]
}
],
"interactions": [
{
"status": "Dangerous",
"name": "Depressant"
},
{
"status": "Dangerous",
"name": "Dissociatives"
},
{
"status": "Dangerous",
"name": "Stimulants"
}
]
},
{
"url": "https://psychonautwiki.org/wiki/Choline_bitartrate",
"name": "Choline bitartrate",
Expand Down Expand Up @@ -39322,10 +39393,6 @@
"url": "https://psychonautwiki.org/wiki/Oroxylin_A",
"name": "Oroxylin A"
},
{
"url": "https://psychonautwiki.org/wiki/Orphenadrine",
"name": "Orphenadrine"
},
{
"url": "https://psychonautwiki.org/wiki/Oxazepam",
"name": "Oxazepam",
Expand Down
108 changes: 93 additions & 15 deletions assets/data/psychonautDB.json
Original file line number Diff line number Diff line change
Expand Up @@ -14628,6 +14628,99 @@
],
"roa": null
},
{
"url": "https://psychonautwiki.org/wiki/Chlordiazepoxide",
"name": "Chlordiazepoxide",
"summary": "",
"addictionPotential": null,
"toxicity": [
"low toxicity",
"potentially lethal when mixed with depressants like alcohol or opioids"
],
"crossTolerances": null,
"commonNames": [
"Librium"
],
"class": {
"chemical": [
"Benzodiazepines"
],
"psychoactive": [
"Depressant"
]
},
"tolerance": null,
"uncertainInteractions": null,
"unsafeInteractions": null,
"dangerousInteractions": [
{
"name": "Depressant"
},
{
"name": "Dissociatives"
},
{
"name": "Stimulants"
}
],
"roa": {
"oral": {
"name": "oral",
"dose": {
"units": "mg",
"threshold": 5,
"heavy": 100,
"common": {
"min": 10,
"max": 25
},
"light": {
"min": 5,
"max": 10
},
"strong": {
"min": 50,
"max": 100
}
},
"duration": {
"afterglow": {
"min": 150,
"max": 300,
"units": "hours"
},
"comeup": null,
"duration": null,
"offset": null,
"onset": {
"min": 30,
"max": 60,
"units": "minutes"
},
"peak": {
"min": 120,
"max": 180,
"units": "minutes"
},
"total": {
"min": 24,
"max": 60,
"units": "hours"
}
},
"bioavailability": null
},
"sublingual": null,
"buccal": null,
"insufflated": null,
"rectal": null,
"transdermal": null,
"subcutaneous": null,
"intramuscular": null,
"intravenous": null,
"smoked": null
}
},
{
"url": "https://psychonautwiki.org/wiki/Choline_bitartrate",
"name": "Choline bitartrate",
Expand Down Expand Up @@ -30329,21 +30422,6 @@
"dangerousInteractions": null,
"roa": null
},
{
"url": "https://psychonautwiki.org/wiki/Orphenadrine",
"name": "Orphenadrine",
"summary": "",
"addictionPotential": null,
"toxicity": null,
"crossTolerances": null,
"commonNames": null,
"class": null,
"tolerance": null,
"uncertainInteractions": null,
"unsafeInteractions": null,
"dangerousInteractions": null,
"roa": null
},
{
"url": "https://psychonautwiki.org/wiki/Oxazepam",
"name": "Oxazepam",
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
"db:validateSchema": "docker exec -it tripbot npx prisma validate",
"db:generateClient": "npx prisma generate && docker exec -it tripbot npx prisma generate",
"db:pushDev": "docker exec -it tripbot npx prisma db push && npm run tripbot:db:generate",
"db:migrateDev": "docker exec -it tripbot npx prisma migrate dev -n betterModeration",
"db:migrateDev": "docker exec -it tripbot npx prisma migrate dev -n quotes",
"db:seed": "docker exec -it tripbot npx prisma db seed",
"## PGADMIN ##": "",
"pgadmin": "docker compose --project-name tripbot up -d --force-recreate --build tripbot_pgadmin",
Expand Down
Loading
Loading