Examples - GenDeathrow/SDV_BlessingsAndCurses GitHub Wiki
Command Debugs
Watering Service
Water all tilled soil.
"actions": [
{
"type": "command",
"cmd": "water"
}
],
Mow your lawn:
Will grow grass on every empty block on your farm.
"actions": [
{
"type": "command",
"cmd": "grass"
}
],
Weeds are spreading
Causes weeds on your farm to spread.
"actions": [
{
"type": "command",
"cmd": "spawnweeds"
}
],
Dye Cloths
Changes players Cloths color. (shirt or pants). colors are (black, blue, green, red, white, and yellow )| strength (0-1)
"actions": [
{
"type": "command",
"cmd": "dye pants blue 1"
}
],
Jump
Make the player jump!
"actions": [
{
"type": "command",
"cmd": "jump farmer 8"
}
],
Bomb Events:
Cherry Bonanza:
"actions": [
{
"type": "bomb_event",
"bombtype": "cherry",
"cnt": 10
}
],
Mega Bomb:
"actions": [
{
"type": "bomb_event",
"bombtype": "mega_bomb",
"cnt": 1
}
],
Bombs:
"actions": [
{
"type": "bomb_event",
"bombtype": "bomb",
"cnt": 3
}
],