about summary refs log tree commit diff stats
path: root/data/maps/the_gallery
Commit message (Collapse)AuthorAgeFilesLines
* Changed how door location names are formattedStar Rauchenberger2025-08-304-4/+0
| | | | | | | | | | | | | | | | | | STANDARD type doors with at most four panels in the same map area and no other trigger objects will have their location names generated from the names of the panels used to open the door, similar to Lingo 1. Other door types will use the door's name. In either case, the name can be overridden using the new location_name field. Rooms can also set a panel_display_name field, which will be used in location names for doors, and is used to group panels into areas. Panels themselves can set display names, which differentiates their locations from other panels in the same area. Many maps were updated for this, but note that the_symbolic and the_unyielding have validator failures because of duplicate panel names. This won't matter until panelsanity is implemented.
* [Data] Replace move_paintings with receiversStar Rauchenberger2025-08-281-17/+34
| | | | Also fixed castle stairs.
* Added the_wordsStar Rauchenberger2025-08-261-1/+1
|
* Added the_wondrousStar Rauchenberger2025-08-261-1/+11
|
* Added the_wiseStar Rauchenberger2025-08-261-1/+22
|
* Added the_treeStar Rauchenberger2025-08-261-1/+31
|
* Added the_towerStar Rauchenberger2025-08-261-1/+1
|
* Added daedalusStar Rauchenberger2025-08-241-2/+2
|
* Added the_unyieldingStar Rauchenberger2025-08-211-1/+1
|
* Converted puzzle symbols to an enumStar Rauchenberger2025-08-202-3/+3
|
* Added the_sun_templeStar Rauchenberger2025-08-201-1/+1
|
* Maps have display names nowStar Rauchenberger2025-08-201-0/+1
| | | | Also added endings to the apworld.
* Added "endings" object typeStar Rauchenberger2025-08-201-1/+4
|
* Validate that nodes in game files are usedStar Rauchenberger2025-08-181-0/+8
| | | | You can now also list out nodes that you are explicitly not mapping out. The current state of the repo does produce some warnings when the validator is run and they're either endings, paintings that I'm not sure what to do with yet, and weird proxy stuff I'm not sure how to handle yet.
* Added the_impressiveStar Rauchenberger2025-08-141-2/+2
|
* Added the_graveyardStar Rauchenberger2025-08-141-1/+1
|
* Assigned IDs for the_galleryStar Rauchenberger2025-08-131-2/+2
|
* Added the_galleryStar Rauchenberger2025-08-136-0/+435
364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544