actor.rpg.stats

rpg.actor

Schema Diff

+5 -2

From

CID
bafyreifmwpdt76i...
Indexed At
2026-03-23 18:15 UTC
View this version

To

CID
bafyreic34j3yhdh...
Indexed At
2026-03-23 19:03 UTC
View this version

Compatibility Analysis

Breaking Changes Detected

4 breaking changes, 0 non-breaking changes.

Breaking Changes (4)
  • ConstraintAdded ConstraintAdded { vertex_id: "actor.rpg.stats#playtopiaStats.class", sort: "maxLength", value: "50" }
  • ConstraintAdded ConstraintAdded { vertex_id: "actor.rpg.stats#playtopiaStats.alignment", sort: "maxLength", value: "20" }
  • ConstraintAdded ConstraintAdded { vertex_id: "actor.rpg.stats#reverieStats.octant", sort: "maxLength", value: "50" }
  • ConstraintAdded ConstraintAdded { vertex_id: "actor.rpg.stats#playtopiaStats.traits:items", sort: "maxLength", value: "50" }

Migration Guidance

Constraint Changes

  • ConstraintAdded ConstraintAdded { vertex_id: "actor.rpg.stats#playtopiaStats.alignment", sort: "maxLength", value: "20" }
  • ConstraintAdded ConstraintAdded { vertex_id: "actor.rpg.stats#playtopiaStats.class", sort: "maxLength", value: "50" }
  • ConstraintAdded ConstraintAdded { vertex_id: "actor.rpg.stats#reverieStats.octant", sort: "maxLength", value: "50" }
  • ConstraintAdded ConstraintAdded { vertex_id: "actor.rpg.stats#playtopiaStats.traits:items", sort: "maxLength", value: "50" }
1 1
{
2 2
  "id": "actor.rpg.stats",
3 3
  "defs": {
4 4
    "hp": {
5 5
      "type": "object",
6 6
      "properties": {
7 7
        "max": {
8 8
          "type": "integer",
9 9
          "minimum": 1,
10 10
          "description": "Maximum HP"
11 11
        },
12 12
        "temp": {
13 13
          "type": "integer",
14 14
          "minimum": 0,
15 15
          "description": "Temporary HP"
16 16
        },
17 17
        "current": {
18 18
          "type": "integer",
19 19
          "minimum": 0,
20 20
          "description": "Current HP"
21 21
        }
22 22
      },
23 23
      "description": "Hit point tracking"
24 24
    },
25 25
    "main": {
26 26
      "key": "literal:self",
27 27
      "type": "record",
28 28
      "record": {
29 29
        "type": "object",
30 30
        "required": [
31 31
          "createdAt"
32 32
        ],
33 33
        "properties": {
34 34
          "dcc": {
35 35
            "ref": "#dccStats",
36 36
            "type": "ref",
37 37
            "description": "Dungeon Crawl Classics RPG character sheet"
38 38
          },
39 39
          "dnd": {
40 40
            "ref": "#dndStats",
41 41
            "type": "ref",
42 42
            "description": "Dungeons & Dragons 5th Edition character sheet"
43 43
          },
44 44
          "rmmz": {
45 45
            "ref": "#rmmzStats",
46 46
            "type": "ref",
47 47
            "description": "RPG Maker MZ engine character parameters"
48 48
          },
49 49
          "custom": {
50 50
            "ref": "#customStats",
51 51
            "type": "ref",
52 52
            "description": "User-defined custom stat system"
53 53
          },
54 54
          "reverie": {
55 55
            "ref": "#reverieStats",
56 56
            "type": "ref",
57 57
            "description": "Reverie House philosophical alignment"
58 58
          },
59 59
          "createdAt": {
60 60
            "type": "string",
61 61
            "format": "datetime",
62 62
            "description": "Timestamp when this record was created"
63 63
          },
64 64
          "playtopia": {
65 65
            "ref": "#playtopiaStats",
66 66
            "type": "ref",
67 67
            "description": "Playtopia Quest character sheet"
68 68
          },
69 69
          "updatedAt": {
70 70
            "type": "string",
71 71
            "format": "datetime",
72 72
            "description": "Timestamp when this record was last modified"
73 73
          }
74 74
        }
75 75
      },
76 76
      "description": "A user's RPG character statistics. One record per user (rkey: self)."
77 77
    },
78 78
    "dccHp": {
79 79
      "type": "object",
80 80
      "properties": {
81 81
        "max": {
82 82
          "type": "integer",
83 83
          "minimum": 1,
84 84
          "description": "Maximum HP"
85 85
        },
86 86
        "current": {
87 87
          "type": "integer",
88 88
          "minimum": 0,
89 89
          "description": "Current HP"
90 90
        }
91 91
      },
92 92
      "description": "Hit points (0-level characters use 1d4 + STA mod)"
93 93
    },
94 94
    "saves": {
95 95
      "type": "object",
96 96
      "properties": {
97 97
        "cha": {
98 98
          "type": "integer",
99 99
          "description": "Charisma save modifier"
100 100
        },
101 101
        "con": {
102 102
          "type": "integer",
103 103
          "description": "Constitution save modifier"
104 104
        },
105 105
        "dex": {
106 106
          "type": "integer",
107 107
          "description": "Dexterity save modifier"
108 108
        },
109 109
        "int": {
110 110
          "type": "integer",
111 111
          "description": "Intelligence save modifier"
112 112
        },
113 113
        "str": {
114 114
          "type": "integer",
115 115
          "description": "Strength save modifier"
116 116
        },
117 117
        "wis": {
118 118
          "type": "integer",
119 119
          "description": "Wisdom save modifier"
120 120
        }
121 121
      },
122 122
      "description": "Saving throw modifiers (actual values, not proficiency flags)"
123 123
    },
124 124
    "attack": {
125 125
      "type": "object",
126 126
      "required": [
127 127
        "name"
128 128
      ],
129 129
      "properties": {
130 130
        "name": {
131 131
          "type": "string",
132 132
          "maxLength": 100,
133 133
          "description": "Attack name"
134 134
        },
135 135
        "bonus": {
136 136
          "type": "string",
137 137
          "maxLength": 20,
138 138
          "description": "Attack bonus (e.g., +5)"
139 139
        },
140 140
        "damage": {
141 141
          "type": "string",
142 142
          "maxLength": 20,
143 143
          "description": "Damage dice (e.g., 1d8)"
144 144
        },
145 145
        "damageType": {
146 146
          "type": "string",
147 147
          "maxLength": 30,
148 148
          "description": "Damage type"
149 149
        },
150 150
        "damageBonus": {
151 151
          "type": "integer",
152 152
          "description": "Damage bonus"
153 153
        }
154 154
      },
155 155
      "description": "An attack action"
156 156
    },
157 157
    "combat": {
158 158
      "type": "object",
159 159
      "properties": {
160 160
        "ac": {
161 161
          "type": "integer",
162 162
          "minimum": 0,
163 163
          "description": "Armor Class"
164 164
        },
165 165
        "speed": {
166 166
          "type": "integer",
167 167
          "minimum": 0,
168 168
          "description": "Speed in feet"
169 169
        },
170 170
        "hitDice": {
171 171
          "type": "string",
172 172
          "maxLength": 20,
173 173
          "description": "Hit dice (e.g., 5d10)"
174 174
        },
175 175
        "initiative": {
176 176
          "type": "integer",
177 177
          "description": "Initiative modifier"
178 178
        },
179 179
        "hitDiceUsed": {
180 180
          "type": "integer",
181 181
          "minimum": 0,
182 182
          "description": "Hit dice expended"
183 183
        }
184 184
      },
185 185
      "description": "Combat and defensive stats"
186 186
    },
187 187
    "skills": {
188 188
      "type": "object",
189 189
      "properties": {
190 190
        "arcana": {
191 191
          "type": "integer",
192 192
          "description": "Arcana (INT)"
193 193
        },
194 194
        "nature": {
195 195
          "type": "integer",
196 196
          "description": "Nature (INT)"
197 197
        },
198 198
        "history": {
199 199
          "type": "integer",
200 200
          "description": "History (INT)"
201 201
        },
202 202
        "insight": {
203 203
          "type": "integer",
204 204
          "description": "Insight (WIS)"
205 205
        },
206 206
        "stealth": {
207 207
          "type": "integer",
208 208
          "description": "Stealth (DEX)"
209 209
        },
210 210
        "medicine": {
211 211
          "type": "integer",
212 212
          "description": "Medicine (WIS)"
213 213
        },
214 214
        "religion": {
215 215
          "type": "integer",
216 216
          "description": "Religion (INT)"
217 217
        },
218 218
        "survival": {
219 219
          "type": "integer",
220 220
          "description": "Survival (WIS)"
221 221
        },
222 222
        "athletics": {
223 223
          "type": "integer",
224 224
          "description": "Athletics (STR)"
225 225
        },
226 226
        "deception": {
227 227
          "type": "integer",
228 228
          "description": "Deception (CHA)"
229 229
        },
230 230
        "acrobatics": {
231 231
          "type": "integer",
232 232
          "description": "Acrobatics (DEX)"
233 233
        },
234 234
        "perception": {
235 235
          "type": "integer",
236 236
          "description": "Perception (WIS)"
237 237
        },
238 238
        "persuasion": {
239 239
          "type": "integer",
240 240
          "description": "Persuasion (CHA)"
241 241
        },
242 242
        "performance": {
243 243
          "type": "integer",
244 244
          "description": "Performance (CHA)"
245 245
        },
246 246
        "intimidation": {
247 247
          "type": "integer",
248 248
          "description": "Intimidation (CHA)"
249 249
        },
250 250
        "investigation": {
251 251
          "type": "integer",
252 252
          "description": "Investigation (INT)"
253 253
        },
254 254
        "sleightOfHand": {
255 255
          "type": "integer",
256 256
          "description": "Sleight of Hand (DEX)"
257 257
        },
258 258
        "animalHandling": {
259 259
          "type": "integer",
260 260
          "description": "Animal Handling (WIS)"
261 261
        }
262 262
      },
263 263
      "description": "Skill modifiers (actual values, not proficiency flags)"
264 264
    },
265 265
    "coinage": {
266 266
      "type": "object",
267 267
      "properties": {
268 268
        "cp": {
269 269
          "type": "integer",
270 270
          "minimum": 0,
271 271
          "description": "Copper pieces"
272 272
        },
273 273
        "ep": {
274 274
          "type": "integer",
275 275
          "minimum": 0,
276 276
          "description": "Electrum pieces"
277 277
        },
278 278
        "gp": {
279 279
          "type": "integer",
280 280
          "minimum": 0,
281 281
          "description": "Gold pieces"
282 282
        },
283 283
        "pp": {
284 284
          "type": "integer",
285 285
          "minimum": 0,
286 286
          "description": "Platinum pieces"
287 287
        },
288 288
        "sp": {
289 289
          "type": "integer",
290 290
          "minimum": 0,
291 291
          "description": "Silver pieces"
292 292
        }
293 293
      },
294 294
      "description": "Currency"
295 295
    },
296 296
    "dccLuck": {
297 297
      "type": "object",
298 298
      "properties": {
299 299
        "birthAugur": {
300 300
          "type": "string",
301 301
          "maxLength": 100,
302 302
          "description": "Birth augur name (e.g., Harsh Winter, The Bull, Fortunate Date)"
303 303
        },
304 304
        "luckyWeapon": {
305 305
          "type": "string",
306 306
          "maxLength": 100,
307 307
          "description": "Weapon type that luck applies to (Dwarves/Halflings)"
308 308
        },
309 309
        "startingLuck": {
310 310
          "type": "integer",
311 311
          "maximum": 24,
312 312
          "minimum": 1,
313 313
          "description": "Starting luck score (for tracking burned luck)"
314 314
        },
315 315
        "birthAugurEffect": {
316 316
          "type": "string",
317 317
          "maxLength": 200,
318 318
          "description": "What the luck modifier applies to"
319 319
        }
320 320
      },
321 321
      "description": "Birth augur and luck mechanics"
322 322
    },
323 323
    "dccSaves": {
324 324
      "type": "object",
325 325
      "properties": {
326 326
        "ref": {
327 327
          "type": "integer",
328 328
          "description": "Reflex save modifier"
329 329
        },
330 330
        "fort": {
331 331
          "type": "integer",
332 332
          "description": "Fortitude save modifier"
333 333
        },
334 334
        "will": {
335 335
          "type": "integer",
336 336
          "description": "Willpower save modifier"
337 337
        }
338 338
      },
339 339
      "description": "DCC saving throws (3 saves, not 6)"
340 340
    },
341 341
    "dccStats": {
342 342
      "type": "object",
343 343
      "properties": {
344 344
        "hp": {
345 345
          "ref": "#dccHp",
346 346
          "type": "ref",
347 347
          "description": "Hit points"
348 348
        },
349 349
        "luck": {
350 350
          "ref": "#dccLuck",
351 351
          "type": "ref",
352 352
          "description": "Birth augur and luck tracking"
353 353
        },
354 354
        "notes": {
355 355
          "type": "string",
356 356
          "maxLength": 5000,
357 357
          "description": "Character notes, backstory, and special abilities"
358 358
        },
359 359
        "saves": {
360 360
          "ref": "#dccSaves",
361 361
          "type": "ref",
362 362
          "description": "Saving throws (Reflex, Fortitude, Willpower)"
363 363
        },
364 364
        "thief": {
365 365
          "ref": "#dccThief",
366 366
          "type": "ref",
367 367
          "description": "Thief skills and abilities"
368 368
        },
369 369
        "cleric": {
370 370
          "ref": "#dccCleric",
371 371
          "type": "ref",
372 372
          "description": "Cleric spellcasting (disapproval, turn unholy, lay on hands)"
373 373
        },
374 374
        "combat": {
375 375
          "ref": "#dccCombat",
376 376
          "type": "ref",
377 377
          "description": "Combat stats (AC, speed, action die, initiative, crit die/table)"
378 378
        },
379 379
        "wizard": {
380 380
          "ref": "#dccWizard",
381 381
          "type": "ref",
382 382
          "description": "Wizard/Elf spellcasting (spellburn, corruption, mercurial magic)"
383 383
        },
384 384
        "attacks": {
385 385
          "type": "array",
386 386
          "items": {
387 387
            "ref": "#dccAttack",
388 388
            "type": "ref"
389 389
          },
390 390
          "maxLength": 20,
391 391
          "description": "Weapon attacks"
392 392
        },
393 393
        "coinage": {
394 394
          "ref": "#dccCoinage",
395 395
          "type": "ref",
396 396
          "description": "Currency (cp, sp, gp)"
397 397
        },
398 398
        "warrior": {
399 399
          "ref": "#dccWarrior",
400 400
          "type": "ref",
401 401
          "description": "Warrior/Dwarf class features (deed die, mighty deeds)"
402 402
        },
403 403
        "halfling": {
404 404
          "ref": "#dccHalfling",
405 405
          "type": "ref",
406 406
          "description": "Halfling luck-sharing and dual wielding"
407 407
        },
408 408
        "identity": {
409 409
          "ref": "#dccIdentity",
410 410
          "type": "ref",
411 411
          "description": "Character identity (occupation, class, level, alignment)"
412 412
        },
413 413
        "abilities": {
414 414
          "ref": "#dccAbilities",
415 415
          "type": "ref",
416 416
          "description": "The six ability scores (STR, AGI, STA, INT, PER, LUK)"
417 417
        },
418 418
        "equipment": {
419 419
          "ref": "#dccEquipment",
420 420
          "type": "ref",
421 421
          "description": "Gear, treasure, and trade goods"
422 422
        },
423 423
        "languages": {
424 424
          "type": "string",
425 425
          "maxLength": 500,
426 426
          "description": "Languages known"
427 427
        },
428 428
        "abilitiesNotes": {
429 429
          "type": "string",
430 430
          "maxLength": 1000,
431 431
          "description": "Notes about special abilities, class features, and racial traits"
432 432
        }
433 433
      },
434 434
      "description": "Dungeon Crawl Classics RPG character sheet. Supports 0-level funnel characters through 10th level."
435 435
    },
436 436
    "dccThief": {
437 437
      "type": "object",
438 438
      "properties": {
439 439
        "skills": {
440 440
          "ref": "#dccThiefSkills",
441 441
          "type": "ref",
442 442
          "description": "Thief skill modifiers"
443 443
        },
444 444
        "backstab": {
445 445
          "type": "integer",
446 446
          "minimum": 0,
447 447
          "description": "Backstab damage die level (+1, +2, etc.)"
448 448
        },
449 449
        "alignment": {
450 450
          "type": "string",
451 451
          "maxLength": 20,
452 452
          "description": "Alignment (affects some skill targets)"
453 453
        },
454 454
        "luckyWeapon": {
455 455
          "type": "string",
456 456
          "maxLength": 100,
457 457
          "description": "Weapon type that luck applies to (one type only)"
458 458
        }
459 459
      },
460 460
      "description": "Thief class features and skills"
461 461
    },
462 462
    "dndStats": {
463 463
      "type": "object",
464 464
      "properties": {
465 465
        "hp": {
466 466
          "ref": "#hp",
467 467
          "type": "ref",
468 468
          "description": "Hit points (current, max, temp)"
469 469
        },
470 470
        "saves": {
471 471
          "ref": "#saves",
472 472
          "type": "ref",
473 473
          "description": "Saving throw modifiers"
474 474
        },
475 475
        "combat": {
476 476
          "ref": "#combat",
477 477
          "type": "ref",
478 478
          "description": "Combat stats (AC, speed, initiative, hit dice)"
479 479
        },
480 480
        "skills": {
481 481
          "ref": "#skills",
482 482
          "type": "ref",
483 483
          "description": "Skill modifiers"
484 484
        },
485 485
        "attacks": {
486 486
          "type": "array",
487 487
          "items": {
488 488
            "ref": "#attack",
489 489
            "type": "ref"
490 490
          },
491 491
          "maxLength": 20,
492 492
          "description": "Attack actions"
493 493
        },
494 494
        "coinage": {
495 495
          "ref": "#coinage",
496 496
          "type": "ref",
497 497
          "description": "Currency (cp, sp, ep, gp, pp)"
498 498
        },
499 499
        "features": {
500 500
          "type": "string",
501 501
          "maxLength": 5000,
502 502
          "description": "Class features, racial traits, and feats"
503 503
        },
504 504
        "identity": {
505 505
          "ref": "#identity",
506 506
          "type": "ref",
507 507
          "description": "Character identity (race, class, level, background)"
508 508
        },
509 509
        "passives": {
510 510
          "ref": "#passives",
511 511
          "type": "ref",
512 512
          "description": "Passive scores (Perception, Investigation, Insight)"
513 513
        },
514 514
        "abilities": {
515 515
          "ref": "#abilities",
516 516
          "type": "ref",
517 517
          "description": "The six ability scores (STR, DEX, CON, INT, WIS, CHA)"
518 518
        },
519 519
        "equipment": {
520 520
          "ref": "#equipment",
521 521
          "type": "ref",
522 522
          "description": "Gear and inventory"
523 523
        },
524 524
        "languages": {
525 525
          "type": "string",
526 526
          "maxLength": 500,
527 527
          "description": "Languages known"
528 528
        },
529 529
        "conditions": {
530 530
          "ref": "#conditions",
531 531
          "type": "ref",
532 532
          "description": "Status conditions (inspiration, exhaustion, death saves)"
533 533
        },
534 534
        "personality": {
535 535
          "ref": "#personality",
536 536
          "type": "ref",
537 537
          "description": "Traits, ideals, bonds, flaws, backstory"
538 538
        },
539 539
        "spellcasting": {
540 540
          "ref": "#spellcasting",
541 541
          "type": "ref",
542 542
          "description": "Spellcasting details (for casters)"
543 543
        },
544 544
        "proficiencies": {
545 545
          "type": "string",
546 546
          "maxLength": 1000,
547 547
          "description": "Armor, weapon, and tool proficiencies"
548 548
        }
549 549
      },
550 550
      "description": "D&D 5e character sheet. All sub-objects are optional."
551 551
    },
552 552
    "identity": {
553 553
      "type": "object",
554 554
      "properties": {
555 555
        "xp": {
556 556
          "type": "integer",
557 557
          "minimum": 0,
558 558
          "description": "Experience points"
559 559
        },
560 560
        "race": {
561 561
          "type": "string",
562 562
          "maxLength": 100,
563 563
          "description": "Race (e.g., Human, Elf, Dwarf)"
564 564
        },
565 565
        "class": {
566 566
          "type": "string",
567 567
          "maxLength": 100,
568 568
          "description": "Class and subclass (e.g., Fighter (Champion))"
569 569
        },
570 570
        "level": {
571 571
          "type": "integer",
572 572
          "minimum": 1,
573 573
          "description": "Character level"
574 574
        },
575 575
        "alignment": {
576 576
          "type": "string",
577 577
          "maxLength": 50,
578 578
          "description": "Alignment (e.g., Lawful Good)"
579 579
        },
580 580
        "background": {
581 581
          "type": "string",
582 582
          "maxLength": 100,
583 583
          "description": "Background (e.g., Soldier, Sage)"
584 584
        },
585 585
        "proficiency": {
586 586
          "type": "integer",
587 587
          "minimum": 0,
588 588
          "description": "Proficiency bonus"
589 589
        }
590 590
      },
591 591
      "description": "Character identity and progression"
592 592
    },
593 593
    "passives": {
594 594
      "type": "object",
595 595
      "properties": {
596 596
        "insight": {
597 597
          "type": "integer",
598 598
          "description": "Passive Insight"
599 599
        },
600 600
        "perception": {
601 601
          "type": "integer",
602 602
          "description": "Passive Perception"
603 603
        },
604 604
        "investigation": {
605 605
          "type": "integer",
606 606
          "description": "Passive Investigation"
607 607
        }
608 608
      },
609 609
      "description": "Passive scores (10 + skill modifier)"
610 610
    },
611 611
    "abilities": {
612 612
      "type": "object",
613 613
      "properties": {
614 614
        "cha": {
615 615
          "type": "integer",
616 616
          "maximum": 30,
617 617
          "minimum": 1,
618 618
          "description": "Charisma"
619 619
        },
620 620
        "con": {
621 621
          "type": "integer",
622 622
          "maximum": 30,
623 623
          "minimum": 1,
624 624
          "description": "Constitution"
625 625
        },
626 626
        "dex": {
627 627
          "type": "integer",
628 628
          "maximum": 30,
629 629
          "minimum": 1,
630 630
          "description": "Dexterity"
631 631
        },
632 632
        "int": {
633 633
          "type": "integer",
634 634
          "maximum": 30,
635 635
          "minimum": 1,
636 636
          "description": "Intelligence"
637 637
        },
638 638
        "str": {
639 639
          "type": "integer",
640 640
          "maximum": 30,
641 641
          "minimum": 1,
642 642
          "description": "Strength"
643 643
        },
644 644
        "wis": {
645 645
          "type": "integer",
646 646
          "maximum": 30,
647 647
          "minimum": 1,
648 648
          "description": "Wisdom"
649 649
        }
650 650
      },
651 651
      "description": "The six ability scores (1-30 per SRD)"
652 652
    },
653 653
    "dccAttack": {
654 654
      "type": "object",
655 655
      "required": [
656 656
        "name"
657 657
      ],
658 658
      "properties": {
659 659
        "name": {
660 660
          "type": "string",
661 661
          "maxLength": 100,
662 662
          "description": "Weapon name"
663 663
        },
664 664
        "type": {
665 665
          "type": "string",
666 666
          "maxLength": 20,
667 667
          "description": "Attack type (melee, ranged, etc.)"
668 668
        },
669 669
        "notes": {
670 670
          "type": "string",
671 671
          "maxLength": 200,
672 672
          "description": "Special properties (backstab, trained weapon, etc.)"
673 673
        },
674 674
        "range": {
675 675
          "type": "string",
676 676
          "maxLength": 30,
677 677
          "description": "Range (melee or distance)"
678 678
        },
679 679
        "damage": {
680 680
          "type": "string",
681 681
          "maxLength": 30,
682 682
          "description": "Damage dice (e.g., 1d8+2, 1d6+d3)"
683 683
        },
684 684
        "attackMod": {
685 685
          "type": "string",
686 686
          "maxLength": 30,
687 687
          "description": "Attack modifier (e.g., +2, d16+2 for deed die)"
688 688
        },
689 689
        "damageBonus": {
690 690
          "type": "string",
691 691
          "maxLength": 30,
692 692
          "description": "Damage bonus (e.g., +2, +d3 for deed die)"
693 693
        }
694 694
      },
695 695
      "description": "A weapon attack (includes deed die for warriors)"
696 696
    },
697 697
    "dccCleric": {
698 698
      "type": "object",
699 699
      "properties": {
700 700
        "deity": {
701 701
          "type": "string",
702 702
          "maxLength": 100,
703 703
          "description": "Deity or supernatural patron"
704 704
        },
705 705
        "unholy": {
706 706
          "type": "boolean",
707 707
          "description": "Serves a Chaotic deity (unholy instead of holy)"
708 708
        },
709 709
        "holySymbol": {
710 710
          "type": "string",
711 711
          "maxLength": 100,
712 712
          "description": "Holy symbol description"
713 713
        },
714 714
        "knownSpells": {
715 715
          "type": "array",
716 716
          "items": {
717 717
            "ref": "#dccClericSpell",
718 718
            "type": "ref"
719 719
          },
720 720
          "maxLength": 50,
721 721
          "description": "Known cleric spells"
722 722
        },
723 723
        "layOnHandsDie": {
724 724
          "type": "string",
725 725
          "maxLength": 10,
726 726
          "description": "Lay on hands die (e.g., d14, d16)"
727 727
        },
728 728
        "maxSpellLevel": {
729 729
          "type": "integer",
730 730
          "maximum": 5,
731 731
          "minimum": 1,
732 732
          "description": "Highest spell level accessible"
733 733
        },
734 734
        "spellCheckMod": {
735 735
          "type": "integer",
736 736
          "description": "Spell check modifier (PER mod + level)"
737 737
        },
738 738
        "turnUnholyDie": {
739 739
          "type": "string",
740 740
          "maxLength": 10,
741 741
          "description": "Turn unholy die (e.g., d14, d16)"
742 742
        },
743 743
        "disapprovalRange": {
744 744
          "type": "integer",
745 745
          "maximum": 20,
746 746
          "minimum": 1,
747 747
          "description": "Current disapproval range (starts at 1, accumulates)"
748 748
        },
749 749
        "disapprovalTable": {
750 750
          "type": "string",
751 751
          "maxLength": 100,
752 752
          "description": "Deity-specific disapproval table if any"
753 753
        }
754 754
      },
755 755
      "description": "Cleric spellcasting features"
756 756
    },
757 757
    "dccCombat": {
758 758
      "type": "object",
759 759
      "properties": {
760 760
        "ac": {
761 761
          "type": "integer",
762 762
          "minimum": 0,
763 763
          "description": "Armor Class (10 + armor + AGI mod + shield)"
764 764
        },
765 765
        "speed": {
766 766
          "type": "integer",
767 767
          "minimum": 0,
768 768
          "description": "Speed in feet (typically 30, Dwarves 20)"
769 769
        },
770 770
        "critDie": {
771 771
          "type": "string",
772 772
          "maxLength": 10,
773 773
          "description": "Critical hit die (e.g., d8, d12, d14)"
774 774
        },
775 775
        "actionDie": {
776 776
          "type": "string",
777 777
          "maxLength": 20,
778 778
          "description": "Primary action die (e.g., d20, d20+d14)"
779 779
        },
780 780
        "attackMod": {
781 781
          "type": "integer",
782 782
          "description": "Base attack modifier (level-based for non-warriors)"
783 783
        },
784 784
        "critTable": {
785 785
          "type": "string",
786 786
          "maxLength": 20,
787 787
          "description": "Critical hit table (I, II, III, IV, V)"
788 788
        },
789 789
        "fumbleDie": {
790 790
          "type": "string",
791 791
          "maxLength": 10,
792 792
          "description": "Fumble die (typically d4 for 0-level, varies by armor)"
793 793
        },
794 794
        "initiative": {
795 795
          "type": "integer",
796 796
          "description": "Initiative modifier (AGI mod)"
797 797
        }
798 798
      },
799 799
      "description": "Combat statistics"
800 800
    },
801 801
    "dccWizard": {
802 802
      "type": "object",
803 803
      "properties": {
804 804
        "patron": {
805 805
          "type": "string",
806 806
          "maxLength": 100,
807 807
          "description": "Supernatural patron (if any)"
808 808
        },
809 809
        "spellburn": {
810 810
          "ref": "#dccSpellburn",
811 811
          "type": "ref",
812 812
          "description": "Current spellburn status"
813 813
        },
814 814
        "corruption": {
815 815
          "type": "array",
816 816
          "items": {
817 817
            "ref": "#dccCorruption",
818 818
            "type": "ref"
819 819
          },
820 820
          "maxLength": 20,
821 821
          "description": "Corruption effects suffered (structured)"
822 822
        },
823 823
        "patronBond": {
824 824
          "type": "string",
825 825
          "maxLength": 500,
826 826
          "description": "Patron bond description and effects"
827 827
        },
828 828
        "knownSpells": {
829 829
          "type": "array",
830 830
          "items": {
831 831
            "ref": "#dccWizardSpell",
832 832
            "type": "ref"
833 833
          },
834 834
          "maxLength": 50,
835 835
          "description": "Known spells with mercurial magic effects"
836 836
        },
837 837
        "maxSpellLevel": {
838 838
          "type": "integer",
839 839
          "maximum": 5,
840 840
          "minimum": 1,
841 841
          "description": "Highest spell level accessible"
842 842
        },
843 843
        "spellCheckMod": {
844 844
          "type": "integer",
845 845
          "description": "Spell check modifier (INT mod + level)"
846 846
        },
847 847
        "corruptionText": {
848 848
          "type": "string",
849 849
          "maxLength": 2000,
850 850
          "description": "Corruption effects as free-form text"
851 851
        }
852 852
      },
853 853
      "description": "Wizard and Elf spellcasting features"
854 854
    },
855 855
    "equipment": {
856 856
      "type": "object",
857 857
      "properties": {
858 858
        "gear": {
859 859
          "type": "string",
860 860
          "maxLength": 2000,
861 861
          "description": "Other equipment"
862 862
        },
863 863
        "armor": {
864 864
          "type": "string",
865 865
          "maxLength": 200,
866 866
          "description": "Armor"
867 867
        },
868 868
        "weapons": {
869 869
          "type": "string",
870 870
          "maxLength": 500,
871 871
          "description": "Weapons"
872 872
        },
873 873
        "treasure": {
874 874
          "type": "string",
875 875
          "maxLength": 1000,
876 876
          "description": "Valuables and treasure"
877 877
        }
878 878
      },
879 879
      "description": "Gear and inventory"
880 880
    },
881 881
    "rmmzStats": {
882 882
      "type": "object",
883 883
      "properties": {
884 884
        "hp": {
885 885
          "type": "integer",
886 886
          "minimum": 0,
887 887
          "description": "Current HP"
888 888
        },
889 889
        "mp": {
890 890
          "type": "integer",
891 891
          "minimum": 0,
892 892
          "description": "Current MP"
893 893
        },
894 894
        "tp": {
895 895
          "type": "integer",
896 896
          "minimum": 0,
897 897
          "description": "Current TP"
898 898
        },
899 899
        "xp": {
900 900
          "type": "integer",
901 901
          "minimum": 0,
902 902
          "description": "Experience"
903 903
        },
904 904
        "agi": {
905 905
          "type": "integer",
906 906
          "minimum": 1,
907 907
          "description": "Agility"
908 908
        },
909 909
        "atk": {
910 910
          "type": "integer",
911 911
          "minimum": 1,
912 912
          "description": "Attack"
913 913
        },
914 914
        "cri": {
915 915
          "type": "integer",
916 916
          "maximum": 100,
917 917
          "minimum": 0,
918 918
          "description": "Critical %"
919 919
        },
920 920
        "def": {
921 921
          "type": "integer",
922 922
          "minimum": 1,
923 923
          "description": "Defense"
924 924
        },
925 925
        "eva": {
926 926
          "type": "integer",
927 927
          "maximum": 100,
928 928
          "minimum": 0,
929 929
          "description": "Evasion %"
930 930
        },
931 931
        "hit": {
932 932
          "type": "integer",
933 933
          "maximum": 100,
934 934
          "minimum": 0,
935 935
          "description": "Hit Rate %"
936 936
        },
937 937
        "luk": {
938 938
          "type": "integer",
939 939
          "minimum": 1,
940 940
          "description": "Luck"
941 941
        },
942 942
        "mat": {
943 943
          "type": "integer",
944 944
          "minimum": 1,
945 945
          "description": "Magic Attack"
946 946
        },
947 947
        "mdf": {
948 948
          "type": "integer",
949 949
          "minimum": 1,
950 950
          "description": "Magic Defense"
951 951
        },
952 952
        "class": {
953 953
          "type": "string",
954 954
          "maxLength": 100,
955 955
          "description": "Class"
956 956
        },
957 957
        "level": {
958 958
          "type": "integer",
959 959
          "minimum": 1,
960 960
          "description": "Level"
961 961
        },
962 962
        "maxHp": {
963 963
          "type": "integer",
964 964
          "minimum": 1,
965 965
          "description": "Max HP"
966 966
        },
967 967
        "maxMp": {
968 968
          "type": "integer",
969 969
          "minimum": 0,
970 970
          "description": "Max MP"
971 971
        },
972 972
        "maxTp": {
973 973
          "type": "integer",
974 974
          "minimum": 0,
975 975
          "description": "Max TP"
976 976
        }
977 977
      },
978 978
      "description": "RPG Maker MZ character parameters"
979 979
    },
980 980
    "spellList": {
981 981
      "type": "object",
982 982
      "properties": {
983 983
        "l1": {
984 984
          "type": "array",
985 985
          "items": {
986 986
            "type": "string",
987 987
            "maxLength": 100
988 988
          },
989 989
          "maxLength": 30,
990 990
          "description": "1st-level spells"
991 991
        },
992 992
        "l2": {
993 993
          "type": "array",
994 994
          "items": {
995 995
            "type": "string",
996 996
            "maxLength": 100
997 997
          },
998 998
          "maxLength": 30,
999 999
          "description": "2nd-level spells"
1000 1000
        },
1001 1001
        "l3": {
1002 1002
          "type": "array",
1003 1003
          "items": {
1004 1004
            "type": "string",
1005 1005
            "maxLength": 100
1006 1006
          },
1007 1007
          "maxLength": 30,
1008 1008
          "description": "3rd-level spells"
1009 1009
        },
1010 1010
        "l4": {
1011 1011
          "type": "array",
1012 1012
          "items": {
1013 1013
            "type": "string",
1014 1014
            "maxLength": 100
1015 1015
          },
1016 1016
          "maxLength": 30,
1017 1017
          "description": "4th-level spells"
1018 1018
        },
1019 1019
        "l5": {
1020 1020
          "type": "array",
1021 1021
          "items": {
1022 1022
            "type": "string",
1023 1023
            "maxLength": 100
1024 1024
          },
1025 1025
          "maxLength": 30,
1026 1026
          "description": "5th-level spells"
1027 1027
        },
1028 1028
        "l6": {
1029 1029
          "type": "array",
1030 1030
          "items": {
1031 1031
            "type": "string",
1032 1032
            "maxLength": 100
1033 1033
          },
1034 1034
          "maxLength": 20,
1035 1035
          "description": "6th-level spells"
1036 1036
        },
1037 1037
        "l7": {
1038 1038
          "type": "array",
1039 1039
          "items": {
1040 1040
            "type": "string",
1041 1041
            "maxLength": 100
1042 1042
          },
1043 1043
          "maxLength": 20,
1044 1044
          "description": "7th-level spells"
1045 1045
        },
1046 1046
        "l8": {
1047 1047
          "type": "array",
1048 1048
          "items": {
1049 1049
            "type": "string",
1050 1050
            "maxLength": 100
1051 1051
          },
1052 1052
          "maxLength": 20,
1053 1053
          "description": "8th-level spells"
1054 1054
        },
1055 1055
        "l9": {
1056 1056
          "type": "array",
1057 1057
          "items": {
1058 1058
            "type": "string",
1059 1059
            "maxLength": 100
1060 1060
          },
1061 1061
          "maxLength": 20,
1062 1062
          "description": "9th-level spells"
1063 1063
        },
1064 1064
        "cantrips": {
1065 1065
          "type": "array",
1066 1066
          "items": {
1067 1067
            "type": "string",
1068 1068
            "maxLength": 100
1069 1069
          },
1070 1070
          "maxLength": 20,
1071 1071
          "description": "Cantrips (at-will)"
1072 1072
        }
1073 1073
      },
1074 1074
      "description": "Spells organized by level"
1075 1075
    },
1076 1076
    "spellslot": {
1077 1077
      "type": "object",
1078 1078
      "required": [
1079 1079
        "level",
1080 1080
        "total"
1081 1081
      ],
1082 1082
      "properties": {
1083 1083
        "used": {
1084 1084
          "type": "integer",
1085 1085
          "minimum": 0,
1086 1086
          "description": "Slots used"
1087 1087
        },
1088 1088
        "level": {
1089 1089
          "type": "integer",
1090 1090
          "maximum": 9,
1091 1091
          "minimum": 1,
1092 1092
          "description": "Spell level"
1093 1093
        },
1094 1094
        "total": {
1095 1095
          "type": "integer",
1096 1096
          "minimum": 0,
1097 1097
          "description": "Total slots"
1098 1098
        }
1099 1099
      },
1100 1100
      "description": "Spell slot entry"
1101 1101
    },
1102 1102
    "conditions": {
1103 1103
      "type": "object",
1104 1104
      "properties": {
1105 1105
        "deathSaves": {
1106 1106
          "ref": "#deathSaves",
1107 1107
          "type": "ref",
1108 1108
          "description": "Death saving throw progress"
1109 1109
        },
1110 1110
        "exhaustion": {
1111 1111
          "type": "integer",
1112 1112
          "maximum": 6,
1113 1113
          "minimum": 0,
1114 1114
          "description": "Exhaustion level (0-6)"
1115 1115
        },
1116 1116
        "inspiration": {
1117 1117
          "type": "boolean",
1118 1118
          "description": "Has inspiration"
1119 1119
        }
1120 1120
      },
1121 1121
      "description": "Status conditions and effects"
1122 1122
    },
1123 1123
    "customStat": {
1124 1124
      "type": "object",
1125 1125
      "required": [
1126 1126
        "name",
1127 1127
        "value"
1128 1128
      ],
1129 1129
      "properties": {
1130 1130
        "max": {
1131 1131
          "type": "integer",
1132 1132
          "description": "Maximum (optional)"
1133 1133
        },
1134 1134
        "min": {
1135 1135
          "type": "integer",
1136 1136
          "description": "Minimum (optional)"
1137 1137
        },
1138 1138
        "name": {
1139 1139
          "type": "string",
1140 1140
          "maxLength": 50,
1141 1141
          "description": "Stat name"
1142 1142
        },
1143 1143
        "value": {
1144 1144
          "type": "integer",
1145 1145
          "description": "Value"
1146 1146
        },
1147 1147
        "category": {
1148 1148
          "type": "string",
1149 1149
          "maxLength": 50,
1150 1150
          "description": "Category (optional)"
1151 1151
        }
1152 1152
      },
1153 1153
      "description": "A custom stat"
1154 1154
    },
1155 1155
    "dccCoinage": {
1156 1156
      "type": "object",
1157 1157
      "properties": {
1158 1158
        "cp": {
1159 1159
          "type": "integer",
1160 1160
          "minimum": 0,
1161 1161
          "description": "Copper pieces"
1162 1162
        },
1163 1163
        "gp": {
1164 1164
          "type": "integer",
1165 1165
          "minimum": 0,
1166 1166
          "description": "Gold pieces"
1167 1167
        },
1168 1168
        "sp": {
1169 1169
          "type": "integer",
1170 1170
          "minimum": 0,
1171 1171
          "description": "Silver pieces"
1172 1172
        }
1173 1173
      },
1174 1174
      "description": "DCC uses cp, sp, gp (10cp = 1sp, 10sp = 1gp)"
1175 1175
    },
1176 1176
    "dccWarrior": {
1177 1177
      "type": "object",
1178 1178
      "properties": {
1179 1179
        "deedDie": {
1180 1180
          "type": "string",
1181 1181
          "maxLength": 10,
1182 1182
          "description": "Current deed die (d3, d4, d5, d6, d7, d8, d10+d3, etc.)"
1183 1183
        },
1184 1184
        "smellGold": {
1185 1185
          "type": "boolean",
1186 1186
          "description": "Can smell gold/gems (Dwarves)"
1187 1187
        },
1188 1188
        "shieldBash": {
1189 1189
          "type": "boolean",
1190 1190
          "description": "Can use shield bash (Dwarves)"
1191 1191
        },
1192 1192
        "infravision": {
1193 1193
          "type": "integer",
1194 1194
          "minimum": 0,
1195 1195
          "description": "Infravision range in feet (Dwarves: 60)"
1196 1196
        },
1197 1197
        "luckyWeapon": {
1198 1198
          "type": "string",
1199 1199
          "maxLength": 100,
1200 1200
          "description": "Weapon type luck modifier applies to"
1201 1201
        },
1202 1202
        "mightyDeeds": {
1203 1203
          "type": "array",
1204 1204
          "items": {
1205 1205
            "type": "string",
1206 1206
            "maxLength": 200
1207 1207
          },
1208 1208
          "maxLength": 20,
1209 1209
          "description": "Signature mighty deeds of arms"
1210 1210
        },
1211 1211
        "undergroundSkills": {
1212 1212
          "type": "integer",
1213 1213
          "minimum": 0,
1214 1214
          "description": "Underground detection bonus (Dwarves: equal to level)"
1215 1215
        }
1216 1216
      },
1217 1217
      "description": "Warrior and Dwarf class features"
1218 1218
    },
1219 1219
    "deathSaves": {
1220 1220
      "type": "object",
1221 1221
      "properties": {
1222 1222
        "failures": {
1223 1223
          "type": "integer",
1224 1224
          "maximum": 3,
1225 1225
          "minimum": 0,
1226 1226
          "description": "Failures (0-3)"
1227 1227
        },
1228 1228
        "successes": {
1229 1229
          "type": "integer",
1230 1230
          "maximum": 3,
1231 1231
          "minimum": 0,
1232 1232
          "description": "Successes (0-3)"
1233 1233
        }
1234 1234
      },
1235 1235
      "description": "Death saving throw successes and failures"
1236 1236
    },
1237 1237
    "customStats": {
1238 1238
      "type": "object",
1239 1239
      "properties": {
1240 1240
        "stats": {
1241 1241
          "type": "array",
1242 1242
          "items": {
1243 1243
            "ref": "#customStat",
1244 1244
            "type": "ref"
1245 1245
          },
1246 1246
          "description": "Custom stat entries"
1247 1247
        },
1248 1248
        "systemName": {
1249 1249
          "type": "string",
1250 1250
          "maxLength": 100,
1251 1251
          "description": "System name"
1252 1252
        },
1253 1253
        "systemVersion": {
1254 1254
          "type": "string",
1255 1255
          "maxLength": 50,
1256 1256
          "description": "Version"
1257 1257
        }
1258 1258
      },
1259 1259
      "description": "User-defined custom stat system"
1260 1260
    },
1261 1261
    "dccHalfling": {
1262 1262
      "type": "object",
1263 1263
      "properties": {
1264 1264
        "infravision": {
1265 1265
          "type": "integer",
1266 1266
          "minimum": 0,
1267 1267
          "description": "Infravision range in feet (30)"
1268 1268
        },
1269 1269
        "luckyWeapon": {
1270 1270
          "type": "string",
1271 1271
          "maxLength": 100,
1272 1272
          "description": "Weapon type luck modifier applies to"
1273 1273
        },
1274 1274
        "sneakAndHide": {
1275 1275
          "type": "integer",
1276 1276
          "description": "Bonus to sneak/hide when in natural environment"
1277 1277
        },
1278 1278
        "goodLuckCharm": {
1279 1279
          "type": "boolean",
1280 1280
          "description": "Can spend luck to aid nearby allies"
1281 1281
        },
1282 1282
        "luckSpentOnAllies": {
1283 1283
          "type": "integer",
1284 1284
          "minimum": 0,
1285 1285
          "description": "Total luck points spent helping allies"
1286 1286
        },
1287 1287
        "twoWeaponFighting": {
1288 1288
          "type": "boolean",
1289 1289
          "description": "Can dual-wield without penalty"
1290 1290
        }
1291 1291
      },
1292 1292
      "description": "Halfling class features"
1293 1293
    },
1294 1294
    "dccIdentity": {
1295 1295
      "type": "object",
1296 1296
      "properties": {
1297 1297
        "xp": {
1298 1298
          "type": "integer",
1299 1299
          "minimum": 0,
1300 1300
          "description": "Experience points"
1301 1301
        },
1302 1302
        "class": {
1303 1303
          "type": "string",
1304 1304
          "maxLength": 100,
1305 1305
          "description": "Class (Warrior, Wizard, Cleric, Thief, Elf, Dwarf, Halfling)"
1306 1306
        },
1307 1307
        "level": {
1308 1308
          "type": "integer",
1309 1309
          "maximum": 10,
1310 1310
          "minimum": 0,
1311 1311
          "description": "Character level (0 for funnel characters)"
1312 1312
        },
1313 1313
        "title": {
1314 1314
          "type": "string",
1315 1315
          "maxLength": 100,
1316 1316
          "description": "Level title (e.g., Squire, Cutpurse, Acolyte)"
1317 1317
        },
1318 1318
        "alignment": {
1319 1319
          "type": "string",
1320 1320
          "maxLength": 20,
1321 1321
          "description": "Alignment (Lawful, Neutral, Chaotic)"
1322 1322
        },
1323 1323
        "occupation": {
1324 1324
          "type": "string",
1325 1325
          "maxLength": 100,
1326 1326
          "description": "0-level occupation (e.g., Blacksmith, Farmer)"
1327 1327
        }
1328 1328
      },
1329 1329
      "description": "DCC character identity and progression"
1330 1330
    },
1331 1331
    "personality": {
1332 1332
      "type": "object",
1333 1333
      "properties": {
1334 1334
        "bonds": {
1335 1335
          "type": "string",
1336 1336
          "maxLength": 500,
1337 1337
          "description": "Bonds"
1338 1338
        },
1339 1339
        "flaws": {
1340 1340
          "type": "string",
1341 1341
          "maxLength": 500,
1342 1342
          "description": "Flaws"
1343 1343
        },
1344 1344
        "ideals": {
1345 1345
          "type": "string",
1346 1346
          "maxLength": 500,
1347 1347
          "description": "Ideals"
1348 1348
        },
1349 1349
        "traits": {
1350 1350
          "type": "string",
1351 1351
          "maxLength": 1000,
1352 1352
          "description": "Personality traits"
1353 1353
        },
1354 1354
        "backstory": {
1355 1355
          "type": "string",
1356 1356
          "maxLength": 5000,
1357 1357
          "description": "Backstory"
1358 1358
        }
1359 1359
      },
1360 1360
      "description": "Personality and backstory"
1361 1361
    },
1362 1362
    "dccAbilities": {
1363 1363
      "type": "object",
1364 1364
      "properties": {
1365 1365
        "agi": {
1366 1366
          "type": "integer",
1367 1367
          "maximum": 24,
1368 1368
          "minimum": 1,
1369 1369
          "description": "Agility"
1370 1370
        },
1371 1371
        "int": {
1372 1372
          "type": "integer",
1373 1373
          "maximum": 24,
1374 1374
          "minimum": 1,
1375 1375
          "description": "Intelligence"
1376 1376
        },
1377 1377
        "luk": {
1378 1378
          "type": "integer",
1379 1379
          "maximum": 24,
1380 1380
          "minimum": 1,
1381 1381
          "description": "Luck (can be permanently burned)"
1382 1382
        },
1383 1383
        "per": {
1384 1384
          "type": "integer",
1385 1385
          "maximum": 24,
1386 1386
          "minimum": 1,
1387 1387
          "description": "Personality"
1388 1388
        },
1389 1389
        "sta": {
1390 1390
          "type": "integer",
1391 1391
          "maximum": 24,
1392 1392
          "minimum": 1,
1393 1393
          "description": "Stamina"
1394 1394
        },
1395 1395
        "str": {
1396 1396
          "type": "integer",
1397 1397
          "maximum": 24,
1398 1398
          "minimum": 1,
1399 1399
          "description": "Strength"
1400 1400
        },
1401 1401
        "agiBase": {
1402 1402
          "type": "integer",
1403 1403
          "maximum": 24,
1404 1404
          "minimum": 1,
1405 1405
          "description": "Agility base (before spellburn)"
1406 1406
        },
1407 1407
        "staBase": {
1408 1408
          "type": "integer",
1409 1409
          "maximum": 24,
1410 1410
          "minimum": 1,
1411 1411
          "description": "Stamina base (before spellburn)"
1412 1412
        },
1413 1413
        "strBase": {
1414 1414
          "type": "integer",
1415 1415
          "maximum": 24,
1416 1416
          "minimum": 1,
1417 1417
          "description": "Strength base (before spellburn)"
1418 1418
        }
1419 1419
      },
1420 1420
      "description": "DCC ability scores (3-18 standard, can be modified by corruption/spellburn)"
1421 1421
    },
1422 1422
    "dccEquipment": {
1423 1423
      "type": "object",
1424 1424
      "properties": {
1425 1425
        "gear": {
1426 1426
          "type": "string",
1427 1427
          "maxLength": 2000,
1428 1428
          "description": "Other equipment"
1429 1429
        },
1430 1430
        "armor": {
1431 1431
          "type": "string",
1432 1432
          "maxLength": 200,
1433 1433
          "description": "Armor worn (affects fumble die)"
1434 1434
        },
1435 1435
        "shield": {
1436 1436
          "type": "string",
1437 1437
          "maxLength": 100,
1438 1438
          "description": "Shield (if any)"
1439 1439
        },
1440 1440
        "weapons": {
1441 1441
          "type": "string",
1442 1442
          "maxLength": 500,
1443 1443
          "description": "Weapons carried"
1444 1444
        },
1445 1445
        "treasure": {
1446 1446
          "type": "string",
1447 1447
          "maxLength": 1000,
1448 1448
          "description": "Valuables and treasure"
1449 1449
        },
1450 1450
        "tradeGoods": {
1451 1451
          "type": "string",
1452 1452
          "maxLength": 500,
1453 1453
          "description": "Trade goods from occupation"
1454 1454
        },
1455 1455
        "armorCheckPenalty": {
1456 1456
          "type": "integer",
1457 1457
          "minimum": 0,
1458 1458
          "description": "Armor check penalty (affects skills)"
1459 1459
        }
1460 1460
      },
1461 1461
      "description": "Equipment and inventory"
1462 1462
    },
1463 1463
    "dccSpellburn": {
1464 1464
      "type": "object",
1465 1465
      "properties": {
1466 1466
        "agiBurned": {
1467 1467
          "type": "integer",
1468 1468
          "minimum": 0,
1469 1469
          "description": "Agility points currently burned"
1470 1470
        },
1471 1471
        "staBurned": {
1472 1472
          "type": "integer",
1473 1473
          "minimum": 0,
1474 1474
          "description": "Stamina points currently burned"
1475 1475
        },
1476 1476
        "strBurned": {
1477 1477
          "type": "integer",
1478 1478
          "minimum": 0,
1479 1479
          "description": "Strength points currently burned"
1480 1480
        },
1481 1481
        "recoveryRate": {
1482 1482
          "type": "integer",
1483 1483
          "minimum": 0,
1484 1484
          "description": "Points recovered per day"
1485 1485
        }
1486 1486
      },
1487 1487
      "description": "Current spellburn (temporary ability score sacrifice)"
1488 1488
    },
1489 1489
    "reverieStats": {
1490 1490
      "type": "object",
1491 1491
      "properties": {
1492 1492
        "octant": {
1493 1493
          "type": "string",
1494 +
          "maxLength": 50,
1494 1495
          "description": "Philosophical octant",
1495 1496
          "knownValues": [
1496 1497
            "adaptive",
1497 1498
            "chaotic",
1498 1499
            "prepared",
1499 1500
            "intended",
1500 1501
            "contented",
1501 1502
            "assertive",
1502 1503
            "ordered",
1503 1504
            "guarded",
1504 1505
            "equilibrium",
1505 1506
            "singling",
1506 1507
            "confused"
1507 1508
          ]
1508 1509
        },
1509 1510
        "entropy": {
1510 1511
          "type": "integer",
1511 1512
          "maximum": 100,
1512 1513
          "minimum": 0,
1513 1514
          "description": "Entropy (0-100)"
1514 1515
        },
1515 1516
        "liberty": {
1516 1517
          "type": "integer",
1517 1518
          "maximum": 100,
1518 1519
          "minimum": 0,
1519 1520
          "description": "Liberty (0-100)"
1520 1521
        },
1521 1522
        "skeptic": {
1522 1523
          "type": "integer",
1523 1524
          "maximum": 100,
1524 1525
          "minimum": 0,
1525 1526
          "description": "Skeptic (0-100)"
1526 1527
        },
1527 1528
        "oblivion": {
1528 1529
          "type": "integer",
1529 1530
          "maximum": 100,
1530 1531
          "minimum": 0,
1531 1532
          "description": "Oblivion (0-100)"
1532 1533
        },
1533 1534
        "authority": {
1534 1535
          "type": "integer",
1535 1536
          "maximum": 100,
1536 1537
          "minimum": 0,
1537 1538
          "description": "Authority (0-100)"
1538 1539
        },
1539 1540
        "receptive": {
1540 1541
          "type": "integer",
1541 1542
          "maximum": 100,
1542 1543
          "minimum": 0,
1543 1544
          "description": "Receptive (0-100)"
1544 1545
        }
1545 1546
      },
1546 1547
      "description": "Reverie House philosophical alignment"
1547 1548
    },
1548 1549
    "spellcasting": {
1549 1550
      "type": "object",
1550 1551
      "properties": {
1551 1552
        "dc": {
1552 1553
          "type": "integer",
1553 1554
          "minimum": 1,
1554 1555
          "description": "Spell save DC"
1555 1556
        },
1556 1557
        "slots": {
1557 1558
          "type": "array",
1558 1559
          "items": {
1559 1560
            "ref": "#spellslot",
1560 1561
            "type": "ref"
1561 1562
          },
1562 1563
          "maxLength": 9,
1563 1564
          "description": "Spell slots by level"
1564 1565
        },
1565 1566
        "attack": {
1566 1567
          "type": "integer",
1567 1568
          "description": "Spell attack bonus"
1568 1569
        },
1569 1570
        "spells": {
1570 1571
          "ref": "#spellList",
1571 1572
          "type": "ref",
1572 1573
          "description": "Known/prepared spells by level"
1573 1574
        },
1574 1575
        "ability": {
1575 1576
          "type": "string",
1576 1577
          "maxLength": 3,
1577 1578
          "description": "Spellcasting ability (INT, WIS, CHA)"
1578 1579
        }
1579 1580
      },
1580 1581
      "description": "Spellcasting details"
1581 1582
    },
1582 1583
    "dccCorruption": {
1583 1584
      "type": "object",
1584 1585
      "properties": {
1585 1586
        "type": {
1586 1587
          "type": "string",
1587 1588
          "maxLength": 20,
1588 1589
          "description": "Corruption severity (minor, major, greater)"
1589 1590
        },
1590 1591
        "effect": {
1591 1592
          "type": "string",
1592 1593
          "maxLength": 500,
1593 1594
          "description": "Description of the corruption"
1594 1595
        },
1595 1596
        "source": {
1596 1597
          "type": "string",
1597 1598
          "maxLength": 100,
1598 1599
          "description": "What spell caused this corruption"
1599 1600
        },
1600 1601
        "permanent": {
1601 1602
          "type": "boolean",
1602 1603
          "description": "Whether this corruption is permanent"
1603 1604
        }
1604 1605
      },
1605 1606
      "description": "A corruption effect from failed spell checks"
1606 1607
    },
1607 1608
    "dccClericSpell": {
1608 1609
      "type": "object",
1609 1610
      "required": [
1610 1611
        "name",
1611 1612
        "level"
1612 1613
      ],
1613 1614
      "properties": {
1614 1615
        "name": {
1615 1616
          "type": "string",
1616 1617
          "maxLength": 100,
1617 1618
          "description": "Spell name"
1618 1619
        },
1619 1620
        "level": {
1620 1621
          "type": "integer",
1621 1622
          "maximum": 5,
1622 1623
          "minimum": 1,
1623 1624
          "description": "Spell level"
1624 1625
        },
1625 1626
        "notes": {
1626 1627
          "type": "string",
1627 1628
          "maxLength": 500,
1628 1629
          "description": "Additional spell notes"
1629 1630
        },
1630 1631
        "sinful": {
1631 1632
          "type": "boolean",
1632 1633
          "description": "Casting may cause additional disapproval"
1633 1634
        }
1634 1635
      },
1635 1636
      "description": "A cleric spell"
1636 1637
    },
1637 1638
    "dccThiefSkills": {
1638 1639
      "type": "object",
1639 1640
      "properties": {
1640 1641
        "backstab": {
1641 1642
          "type": "integer",
1642 1643
          "description": "Backstab attack bonus"
1643 1644
        },
1644 1645
        "findTrap": {
1645 1646
          "type": "integer",
1646 1647
          "description": "Find trap bonus"
1647 1648
        },
1648 1649
        "pickLock": {
1649 1650
          "type": "integer",
1650 1651
          "description": "Pick lock bonus"
1651 1652
        },
1652 1653
        "pickPocket": {
1653 1654
          "type": "integer",
1654 1655
          "description": "Pick pocket bonus"
1655 1656
        },
1656 1657
        "disableTrap": {
1657 1658
          "type": "integer",
1658 1659
          "description": "Disable trap bonus"
1659 1660
        },
1660 1661
        "disguiseSelf": {
1661 1662
          "type": "integer",
1662 1663
          "description": "Disguise self bonus"
1663 1664
        },
1664 1665
        "handlePoison": {
1665 1666
          "type": "integer",
1666 1667
          "description": "Handle poison bonus"
1667 1668
        },
1668 1669
        "forgeDocument": {
1669 1670
          "type": "integer",
1670 1671
          "description": "Forge document bonus"
1671 1672
        },
1672 1673
        "hideInShadows": {
1673 1674
          "type": "integer",
1674 1675
          "description": "Hide in shadows bonus"
1675 1676
        },
1676 1677
        "readLanguages": {
1677 1678
          "type": "integer",
1678 1679
          "description": "Read languages bonus"
1679 1680
        },
1680 1681
        "sneakSilently": {
1681 1682
          "type": "integer",
1682 1683
          "description": "Sneak silently bonus"
1683 1684
        },
1684 1685
        "climbSheerSurfaces": {
1685 1686
          "type": "integer",
1686 1687
          "description": "Climb sheer surfaces bonus"
1687 1688
        },
1688 1689
        "castSpellFromScroll": {
1689 1690
          "type": "integer",
1690 1691
          "description": "Cast spell from scroll bonus"
1691 1692
        }
1692 1693
      },
1693 1694
      "description": "Thief skill bonuses (roll d20 + skill vs target)"
1694 1695
    },
1695 1696
    "dccWizardSpell": {
1696 1697
      "type": "object",
1697 1698
      "required": [
1698 1699
        "name",
1699 1700
        "level"
1700 1701
      ],
1701 1702
      "properties": {
1702 1703
        "lost": {
1703 1704
          "type": "boolean",
1704 1705
          "description": "Spell is currently lost (must be re-learned)"
1705 1706
        },
1706 1707
        "name": {
1707 1708
          "type": "string",
1708 1709
          "maxLength": 100,
1709 1710
          "description": "Spell name"
1710 1711
        },
1711 1712
        "level": {
1712 1713
          "type": "integer",
1713 1714
          "maximum": 5,
1714 1715
          "minimum": 1,
1715 1716
          "description": "Spell level"
1716 1717
        },
1717 1718
        "notes": {
1718 1719
          "type": "string",
1719 1720
          "maxLength": 500,
1720 1721
          "description": "Additional spell notes"
1721 1722
        },
1722 1723
        "mercurialRoll": {
1723 1724
          "type": "integer",
1724 1725
          "maximum": 100,
1725 1726
          "minimum": 1,
1726 1727
          "description": "The d100 roll for mercurial magic"
1727 1728
        },
1728 1729
        "mercurialMagic": {
1729 1730
          "type": "string",
1730 1731
          "maxLength": 500,
1731 1732
          "description": "Unique mercurial magic effect (d100 roll result)"
1732 1733
        }
1733 1734
      },
1734 1735
      "description": "A wizard spell with mercurial magic effect"
1735 1736
    },
1736 1737
    "playtopiaStats": {
1737 1738
      "type": "object",
1738 1739
      "properties": {
1739 1740
        "class": {
1740 1741
          "type": "string",
1742 +
          "maxLength": 50,
1741 1743
          "description": "Character class",
1742 1744
          "knownValues": [
1743 1745
            "Artist",
1744 1746
            "Coder",
1745 1747
            "Gamer",
1746 1748
            "Suit",
1747 1749
            "Weirdo"
1748 1750
          ]
1749 1751
        },
1750 1752
        "level": {
1751 1753
          "type": "integer",
1752 1754
          "minimum": 1,
1753 1755
          "description": "Character level"
1754 1756
        },
1755 1757
        "health": {
1756 1758
          "type": "integer",
1757 1759
          "maximum": 3,
1758 1760
          "minimum": 0,
1759 1761
          "description": "Health (0-3 hearts)"
1760 1762
        },
1761 1763
        "traits": {
1762 1764
          "type": "array",
1763 1765
          "items": {
1764 -
            "type": "string"
1766 +
            "type": "string",
1767 +
            "maxLength": 50
1765 1768
          },
1766 1769
          "maxLength": 16,
1767 1770
          "description": "Personal trait names (e.g. Empathic, Courageous, …)"
1768 1771
        },
1769 1772
        "alignment": {
1770 1773
          "type": "string",
1774 +
          "maxLength": 20,
1771 1775
          "description": "Character alignment",
1772 1776
          "knownValues": [
1773 1777
            "Ordered",
1774 1778
            "Neutral",
1775 1779
            "Chaotic"
1776 1780
          ]
1777 1781
        },
1778 1782
        "bestFriend": {
1779 1783
          "type": "string",
1780 1784
          "maxLength": 253,
1781 1785
          "description": "Best friend (Bluesky handle)"
1782 1786
        },
1783 1787
        "faveColour": {
1784 1788
          "type": "string",
1785 1789
          "maxLength": 7,
1786 1790
          "description": "Favourite colour hex code"
1787 1791
        },
1788 1792
        "worstEnemy": {
1789 1793
          "type": "string",
1790 1794
          "maxLength": 253,
1791 1795
          "description": "Worst enemy (Bluesky handle)"
1792 1796
        },
1793 1797
        "catchphrase": {
1794 1798
          "type": "string",
1795 1799
          "maxLength": 200,
1796 1800
          "description": "Character catchphrase"
1797 1801
        }
1798 1802
      },
1799 1803
      "description": "Playtopia Quest character sheet"
1800 1804
    }
1801 1805
  },
1802 1806
  "$type": "com.atproto.lexicon.schema",
1803 1807
  "lexicon": 1,
1804 -
  "revision": 4,
1805 1808
  "description": "RPG character statistics for multiple game systems. Revision 4: Added Dungeon Crawl Classics (DCC) RPG support with Zocchi dice, funnel characters, deed die, spellburn, mercurial magic, corruption, and disapproval systems."
1806 1809
}

Compare Other Versions

Lexicon Garden

@