Skip to content

Instantly share code, notes, and snippets.

View Kade-github's full-sized avatar
👉
csc building

Kade Kade-github

👉
csc building
View GitHub Profile
@Kade-github
Kade-github / 5e-creatures.json
Created October 3, 2025 02:24
efortner's gist validated and pretty printed
[
{
"name": "Aboleth",
"ac": 17,
"size": "large",
"creatureType": "aberration",
"alignment": "lawful evil",
"languages": ["deep speech", "telepathy 120 ft."],
"maxHitPoints": 135,
"hitDice": "18d10",
@Kade-github
Kade-github / buildscript.ps1
Last active September 21, 2025 19:38
LOVE2D exe distribution PowerShell script
# Variable for game name
$gameName = "Game"
$lovePath = "E:\LOVE"
# CD into the game directory
cd game
# Use 7z to create a zip file of the game directory
7z a -tzip ../game.love *
# CD into the parent directory
cd ..