Skip to content

Commit

Permalink
Add quote system (#741)
Browse files Browse the repository at this point in the history
  • Loading branch information
LunaUrsa authored Jan 15, 2024
1 parent aafeec0 commit 6b4a093
Show file tree
Hide file tree
Showing 9 changed files with 804 additions and 22 deletions.
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

0 comments on commit 6b4a093

Please sign in to comment.