This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ | |
{ | |
"name": "Aboleth", | |
"ac": 17, | |
"size": "large", | |
"creatureType": "aberration", | |
"alignment": "lawful evil", | |
"languages": ["deep speech", "telepathy 120 ft."], | |
"maxHitPoints": 135, | |
"hitDice": "18d10", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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 .. |