ModernUO/Projects/UOContent/Migrations
Kamron Batman a52ce6ef70
refactor(spawners): subclass-owned entries, lifecycle hooks, per-entry Disabled flag (#2621)
## Summary

Moves spawner entry storage out of the abstract `BaseSpawner` into the concrete owner, so a spawner subclass can store its own entry type while every stock code path keeps working. Motivation: an out-of-tree spawner (ModernSpawner) needs `ModernSpawnerEntry : SpawnerEntry` with extra fields; today `BaseSpawner` owns `List<SpawnerEntry>` and a family of non-virtual members, and the serialization generator constructs list elements from the declared element type, so storage has to live in the class that declares the concrete list.

### What changed

- **`BaseSpawner` v13** no longer owns `_entries`. It reads entries through an abstract view and mutates them through an owner contract (`BaseSpawner.Entries.cs`):
  `Entries` (`IReadOnlyList<SpawnerEntry>`, `[IgnoreDupe]`), `EntrySpan` (`ReadOnlySpan<SpawnerEntry>` for hot loops), `CreateEntry`, `AddEntryCore`, `RemoveEntryCore`, `ClearEntriesCore`, `AdoptEntries`, `CloneEntry`, `TransferSpawned`, plus public `RemoveAllEntries()`, `CopyEntriesTo(target)` and protected `RebuildSpawned()`. Every loop inside `BaseSpawner` is an indexed `for` over `EntrySpan`.
- **`Spawner` v2** owns `[SerializedIgnoreDupe] List<SpawnerEntry> _entryList` (generated `EntryList`, protected). `ProximitySpawner`/`RegionSpawner` inherit it unchanged. The `Spawned` rebuild and timer re-arm moved from the base `[AfterDeserialization]` (which runs before derived fields are read) into `Spawner`'s.
- **Save migration**: `MigrateFrom(V12Content)` (and the v10/v11/legacy readers) hand the old list to the owner via `AdoptEntries`; `Spawner.MigrateFrom(V1Content)` restores its own fields and leaves the adopted list alone. Three v12/v1/v0 save blobs captured before the change are committed as fixtures and loaded by tests.
- **Lifecycle hooks** (`BaseSpawner.Hooks.cs`, all no-op by default): `OnStarted`, `OnStopped`, `OnBeforeSpawn(entry)` veto, `OnConfigureSpawned(entry, spawned)` before positioning, entry-aware `GetSpawnPosition(entry, spawned, map)`, `OnSpawned(entry, spawned)`, `OnSpawnedDeath(entry, spawned, killer)`. `BaseCreature.OnDeath` calls `NotifySpawnedDeath` before base death (which deletes the mobile and unlinks the spawner). `Start()` and the `NextSpawn` setter share one start core so `OnStarted` fires on both.
- **`SpawnerEntry` v2**: per-entry `Disabled` (XmlSpawner's entry "lock"), stored inverted so the common case writes nothing in binary or JSON; skipped by weighted selection, live spawns untouched; toggle button per row in `SpawnerGump`. `SetParent` is public and `Parent` is protected so an out-of-tree entry subclass can adopt and dirty-track.
- **DTO**: `SpawnerDto` loses `Entries`; each concrete record declares its own `entries` at the same JSON order, so `Distribution/Data/Spawns/**` is byte-identical. Import adopts the deserialized entry objects instead of recreating them through `AddEntry`, which is what preserves subtype fields (and `disabled`).

### Breaking changes and behaviour changes

- **API:** `BaseSpawner.Entries` is `IReadOnlyList<SpawnerEntry>` instead of `List<SpawnerEntry>`. The generated `AddToEntries`/`RemoveFromEntries`/`InsertIntoEntries`/`RemoveFromEntriesAt`/`ClearEntries` helpers on `BaseSpawner` are gone; use `AddEntry`/`RemoveEntry`/`RemoveAllEntries`/`CopyEntriesTo`. `RemoveAllEntries()` deletes the entries' live spawns as well as the entries (the old generated `ClearEntries()` only cleared the list), which is why it has a new name rather than the old one.
- `SpawnerControllerGump` "copy entries" now goes through `CopyEntriesTo`, which deletes the target's live spawns (previously it cleared the list and left the spawns orphaned) and is a no-op when source == target (previously that wiped the source).
- `RemoveEntry` with an entry the spawner does not own is now a no-op (previously it deleted that entry's spawns).
- `Respawn()` honours `Disabled` because it calls `Spawn()`; `Spawn(int index)`, `RemoveSpawn`, and `RemoveSpawns` ignore it.
- Copying entries between spawners no longer forces a 1-second first spawn; the target re-arms on its normal delay.
- Subclasses that own a different entry list than `Spawner`'s must call `RebuildSpawned()` from their own `[AfterDeserialization]` (`Spawner`'s call runs before their list is read) and, when converting adopted entries into their own type, carry live spawns across with `TransferSpawned`. The in-repo test subclass demonstrates both.

### Performance

Manual harness (`Benchmark_SpawnPath_Manual`, skipped by default): 100k calls, entries all full so `Spawn()` does selection only.

| Path | Before (4bad0cc9e) | After |
|---|---|---|
| `Spawn()` 1 entry | 48.7 ns | 53.2 ns (within run-to-run noise) |
| `Spawn()` 10 entries | 243.7 ns | 153.1 ns |
| `Spawn()` 50 entries | 1077.6 ns | 645.1 ns |
| `Remove()` 10 entries | 139.6 ns | 83.6 ns |

Hooks are no-ops for stock spawners; `OnMovement` is untouched.

### Tests

- `SpawnerEntryOwnershipTests` (add/remove/clear, start after stop, dupe, copy, self-copy, foreign-entry removal, Disabled binary/JSON)
- `SpawnerHookTests` (hook order for mobiles and items, veto, death notification, `NextSpawn` start, a subclass with its own `List<TestEntry>` round-tripping and duping)
- `SpawnerSaveMigrationTests` (v12 fixtures through `Spawner`, `ProximitySpawner`, `RegionSpawner`; new-format byte-identical round trip with a live spawn reference)
- `SpawnerDtoEntryTests` (compact JSON position of `entries`, `disabled` only when set, import adopts the deserialized objects)
- Existing DTO/JSON/spawn-data tests unchanged. UOContent.Tests 801 passed, Server.Tests 869 passed. Migration schemas regenerated (`BaseSpawner.v13`, `Spawner.v2`, `SpawnerEntry.v2`).

Coverage caveats, stated plainly: v10, v11 and the pre-codegen legacy reader could not be captured as fixtures by the current code; each changed only `_entries = …` → `AdoptEntries(…)` into the same sink the v12 fixtures exercise, and is covered by review. The captured v12 fixtures carry no live spawns, so re-linking live `ISpawnable` references is proven by the new-format round trip, not by a legacy blob. The `SpawnerGump` toggle layout could not be checked in a client; the delete button moved from x=38 to x=46 to make room.
2026-09-11 17:41:08 -07:00
..
Server.Accounting.Account.v3.json
Server.Accounting.Account.v4.json
Server.Accounting.Account.v5.json
Server.Accounting.Account.v6.json
Server.BaseAttributes.v0.json
Server.BloodRose.v0.json
Server.ClarityPotion.v0.json
Server.Engines.BulkOrders.BaseBOBEntry.v1.json
Server.Engines.BulkOrders.BaseBOD.v1.json
Server.Engines.BulkOrders.BOBFilter.v2.json
Server.Engines.BulkOrders.BOBLargeEntry.v1.json fix: Fixes dirty-tracking gaps in generated content: setters, sub-object owners, BaseVendor (#2609) 2026-09-06 09:43:44 -07:00
Server.Engines.BulkOrders.BOBLargeSubEntry.v0.json
Server.Engines.BulkOrders.BOBSmallEntry.v1.json
Server.Engines.BulkOrders.BulkOrderBook.v3.json fix: Fixes dirty-tracking gaps in generated content: setters, sub-object owners, BaseVendor (#2609) 2026-09-06 09:43:44 -07:00
Server.Engines.BulkOrders.LargeBOD.v1.json
Server.Engines.BulkOrders.LargeSmithBOD.v0.json
Server.Engines.BulkOrders.LargeTailorBOD.v0.json
Server.Engines.BulkOrders.SmallBOD.v0.json
Server.Engines.BulkOrders.SmallSmithBOD.v0.json
Server.Engines.BulkOrders.SmallTailorBOD.v0.json
Server.Engines.CannedEvil.ChampionAltar.v0.json
Server.Engines.CannedEvil.ChampionPlatform.v0.json
Server.Engines.CannedEvil.ChampionSkullBrazier.v1.json
Server.Engines.CannedEvil.ChampionSkullPlatform.v0.json
Server.Engines.CannedEvil.ChampionSpawn.v10.json
Server.Engines.CannedEvil.ChampionSpawn.v11.json feat: convert all delta-time serialization to anchored time (#2589) 2026-08-22 19:34:43 -07:00
Server.Engines.CannedEvil.ChampionTitle.v0.json
Server.Engines.CannedEvil.ChampionTitleContext.v1.json fix: Fixes dirty-tracking gaps in generated content: setters, sub-object owners, BaseVendor (#2609) 2026-09-06 09:43:44 -07:00
Server.Engines.CannedEvil.DungeonChampionSpawn.v0.json
Server.Engines.CannedEvil.IdolOfTheChampion.v0.json
Server.Engines.CannedEvil.LLChampionSpawn.v0.json
Server.Engines.ConPVP.ArenasMoongate.v0.json
Server.Engines.ConPVP.BRBoard.v0.json
Server.Engines.ConPVP.BRBomb.v0.json
Server.Engines.ConPVP.BRGoal.v0.json
Server.Engines.ConPVP.CTFBoard.v0.json
Server.Engines.ConPVP.CTFFlag.v0.json
Server.Engines.ConPVP.DDBoard.v0.json
Server.Engines.ConPVP.DDWayPoint.DDStep.v0.json
Server.Engines.ConPVP.DDWayPoint.v0.json
Server.Engines.ConPVP.DuelContext.ArenaMoongate.v0.json
Server.Engines.ConPVP.DuelContext.InternalWall.v0.json
Server.Engines.ConPVP.DuelTeleporterAddon.v0.json
Server.Engines.ConPVP.EventController.v0.json
Server.Engines.ConPVP.HillOfTheKing.v0.json
Server.Engines.ConPVP.KHBoard.v0.json
Server.Engines.ConPVP.LadderItem.v0.json
Server.Engines.ConPVP.TournamentBracketItem.v0.json
Server.Engines.ConPVP.TournamentRegistrar.v0.json
Server.Engines.ConPVP.TournamentSignupItem.v0.json
Server.Engines.Doom.GauntletSpawner.v2.json
Server.Engines.Doom.LampRoomBox.v0.json
Server.Engines.Doom.LampRoomTeleporter.v0.json
Server.Engines.Doom.LeverPuzzleController.v0.json
Server.Engines.Doom.LeverPuzzleLever.v0.json
Server.Engines.Doom.LeverPuzzleStatue.v0.json
Server.Engines.Events.NaughtyTwin.v0.json
Server.Engines.Events.PlayerBones.v0.json
Server.Engines.Events.ZombieSkeleton.v0.json
Server.Engines.Mahjong.MahjongDealerIndicator.v1.json
Server.Engines.Mahjong.MahjongDices.v0.json
Server.Engines.Mahjong.MahjongGame.v1.json
Server.Engines.Mahjong.MahjongPlayers.v1.json
Server.Engines.Mahjong.MahjongTile.v1.json
Server.Engines.Mahjong.MahjongWallBreakIndicator.v0.json
Server.Engines.MLQuests.Definitions.Aelorn.v0.json
Server.Engines.MLQuests.Definitions.Aeluva.v0.json
Server.Engines.MLQuests.Definitions.Aernya.v0.json
Server.Engines.MLQuests.Definitions.Ahie.v0.json
Server.Engines.MLQuests.Definitions.AldenArmstrong.v0.json
Server.Engines.MLQuests.Definitions.Alefian.v0.json
Server.Engines.MLQuests.Definitions.Alejaha.v0.json
Server.Engines.MLQuests.Definitions.Alelle.v0.json
Server.Engines.MLQuests.Definitions.Aluniol.v0.json
Server.Engines.MLQuests.Definitions.AmeliaYoungstone.v0.json
Server.Engines.MLQuests.Definitions.AndreasVesalius.v0.json
Server.Engines.MLQuests.Definitions.Andric.v0.json
Server.Engines.MLQuests.Definitions.Andros.v0.json
Server.Engines.MLQuests.Definitions.Aniel.v0.json
Server.Engines.MLQuests.Definitions.Anolly.v0.json
Server.Engines.MLQuests.Definitions.Arielle.v0.json
Server.Engines.MLQuests.Definitions.Asandos.v0.json
Server.Engines.MLQuests.Definitions.Athailon.v0.json
Server.Engines.MLQuests.Definitions.Aulan.v0.json
Server.Engines.MLQuests.Definitions.Aurelia.v0.json
Server.Engines.MLQuests.Definitions.Avicenna.v0.json
Server.Engines.MLQuests.Definitions.BatteredBucket.v0.json
Server.Engines.MLQuests.Definitions.Belulah.v0.json
Server.Engines.MLQuests.Definitions.Ben.v0.json
Server.Engines.MLQuests.Definitions.Beotham.v0.json
Server.Engines.MLQuests.Definitions.Bolaevin.v0.json
Server.Engines.MLQuests.Definitions.Braen.v0.json
Server.Engines.MLQuests.Definitions.Bravehorn.v0.json
Server.Engines.MLQuests.Definitions.BravehornsMate.v0.json
Server.Engines.MLQuests.Definitions.Brinnae.v0.json
Server.Engines.MLQuests.Definitions.Caelas.v0.json
Server.Engines.MLQuests.Definitions.Cailla.v0.json
Server.Engines.MLQuests.Definitions.Canir.v0.json
Server.Engines.MLQuests.Definitions.Chiyo.v0.json
Server.Engines.MLQuests.Definitions.Churchill.v0.json
Server.Engines.MLQuests.Definitions.Ciala.v0.json
Server.Engines.MLQuests.Definitions.Cillitha.v0.json
Server.Engines.MLQuests.Definitions.Clairesse.v0.json
Server.Engines.MLQuests.Definitions.Clehin.v0.json
Server.Engines.MLQuests.Definitions.Cloorne.v0.json
Server.Engines.MLQuests.Definitions.Daelas.v0.json
Server.Engines.MLQuests.Definitions.Dallid.v0.json
Server.Engines.MLQuests.Definitions.Danoel.v0.json
Server.Engines.MLQuests.Definitions.Dimethro.v0.json
Server.Engines.MLQuests.Definitions.Drithen.v0.json
Server.Engines.MLQuests.Definitions.ElderAbbein.v0.json
Server.Engines.MLQuests.Definitions.ElderAcob.v0.json
Server.Engines.MLQuests.Definitions.ElderAlethanian.v0.json
Server.Engines.MLQuests.Definitions.ElderBrae.v0.json
Server.Engines.MLQuests.Definitions.ElderJothan.v0.json
Server.Engines.MLQuests.Definitions.ElderMallew.v0.json
Server.Engines.MLQuests.Definitions.ElderOnallan.v0.json
Server.Engines.MLQuests.Definitions.ElderTaellia.v0.json
Server.Engines.MLQuests.Definitions.ElderVicaie.v0.json
Server.Engines.MLQuests.Definitions.Emerillo.v0.json
Server.Engines.MLQuests.Definitions.Emilio.v0.json
Server.Engines.MLQuests.Definitions.Enigma.v0.json
Server.Engines.MLQuests.Definitions.Evan.v0.json
Server.Engines.MLQuests.Definitions.Frederic.v0.json
Server.Engines.MLQuests.Definitions.GeorgeHephaestus.v0.json
Server.Engines.MLQuests.Definitions.Gervis.v0.json
Server.Engines.MLQuests.Definitions.Gorrow.v0.json
Server.Engines.MLQuests.Definitions.GrandpaCharley.v0.json
Server.Engines.MLQuests.Definitions.Gustar.v0.json
Server.Engines.MLQuests.Definitions.GustarShroud.v0.json
Server.Engines.MLQuests.Definitions.Hamato.v0.json
Server.Engines.MLQuests.Definitions.Hargrove.v0.json
Server.Engines.MLQuests.Definitions.Huntsman.v0.json
Server.Engines.MLQuests.Definitions.Iosep.v0.json
Server.Engines.MLQuests.Definitions.JacobWaltz.v0.json
Server.Engines.MLQuests.Definitions.Jamal.v0.json
Server.Engines.MLQuests.Definitions.Jelrice.v0.json
Server.Engines.MLQuests.Definitions.Jillian.v0.json
Server.Engines.MLQuests.Definitions.Jockles.v0.json
Server.Engines.MLQuests.Definitions.Jun.v0.json
Server.Engines.MLQuests.Definitions.Jusae.v0.json
Server.Engines.MLQuests.Definitions.Kaelynna.v0.json
Server.Engines.MLQuests.Definitions.Kashiel.v0.json
Server.Engines.MLQuests.Definitions.Kia.v0.json
Server.Engines.MLQuests.Definitions.Koole.v0.json
Server.Engines.MLQuests.Definitions.Landy.v0.json
Server.Engines.MLQuests.Definitions.Leon.v0.json
Server.Engines.MLQuests.Definitions.Lissbet.v0.json
Server.Engines.MLQuests.Definitions.Lohn.v0.json
Server.Engines.MLQuests.Definitions.LorekeeperAneen.v0.json
Server.Engines.MLQuests.Definitions.LorekeeperBroolol.v0.json
Server.Engines.MLQuests.Definitions.LorekeeperCalendor.v0.json
Server.Engines.MLQuests.Definitions.LorekeeperNillaen.v0.json
Server.Engines.MLQuests.Definitions.LorekeeperOolua.v0.json
Server.Engines.MLQuests.Definitions.LorekeeperRollarn.v0.json
Server.Engines.MLQuests.Definitions.LorekeeperRyal.v0.json
Server.Engines.MLQuests.Definitions.LorekeeperSiarra.v0.json
Server.Engines.MLQuests.Definitions.Lowel.v0.json
Server.Engines.MLQuests.Definitions.Lyle.v0.json
Server.Engines.MLQuests.Definitions.MasterGnosos.v0.json
Server.Engines.MLQuests.Definitions.MaulTheBear.v0.json
Server.Engines.MLQuests.Definitions.Mielan.v0.json
Server.Engines.MLQuests.Definitions.Mithneral.v0.json
Server.Engines.MLQuests.Definitions.Morganna.v0.json
Server.Engines.MLQuests.Definitions.Mugg.v0.json
Server.Engines.MLQuests.Definitions.Mulcivikh.v0.json
Server.Engines.MLQuests.Definitions.Nibbet.v0.json
Server.Engines.MLQuests.Definitions.Norton.v0.json
Server.Engines.MLQuests.Definitions.Nythalia.v0.json
Server.Engines.MLQuests.Definitions.Olaeni.v0.json
Server.Engines.MLQuests.Definitions.Olla.v0.json
Server.Engines.MLQuests.Definitions.Patricus.v0.json
Server.Engines.MLQuests.Definitions.Rebinil.v0.json
Server.Engines.MLQuests.Definitions.Recaro.v0.json
Server.Engines.MLQuests.Definitions.Regina.v0.json
Server.Engines.MLQuests.Definitions.Robyn.v0.json
Server.Engines.MLQuests.Definitions.Ryuichi.v0.json
Server.Engines.MLQuests.Definitions.Sadrah.v0.json
Server.Engines.MLQuests.Definitions.Salaenih.v0.json
Server.Engines.MLQuests.Definitions.Saril.v0.json
Server.Engines.MLQuests.Definitions.SarsmeaSmythe.v0.json
Server.Engines.MLQuests.Definitions.SkeletonOfSzandor.v0.json
Server.Engines.MLQuests.Definitions.Sledge.v0.json
Server.Engines.MLQuests.Definitions.Sleen.v0.json
Server.Engines.MLQuests.Definitions.Strongroot.v0.json
Server.Engines.MLQuests.Definitions.Synaeva.v0.json
Server.Engines.MLQuests.Definitions.Tallinin.v0.json
Server.Engines.MLQuests.Definitions.Tamm.v0.json
Server.Engines.MLQuests.Definitions.Thalia.v0.json
Server.Engines.MLQuests.Definitions.Thallary.v0.json
Server.Engines.MLQuests.Definitions.Tholef.v0.json
Server.Engines.MLQuests.Definitions.Tiana.v0.json
Server.Engines.MLQuests.Definitions.Tillanil.v0.json
Server.Engines.MLQuests.Definitions.Tyeelor.v0.json
Server.Engines.MLQuests.Definitions.TylAriadne.v0.json
Server.Engines.MLQuests.Definitions.Unoelil.v0.json
Server.Engines.MLQuests.Definitions.Vilo.v0.json
Server.Engines.MLQuests.Definitions.Waelian.v0.json
Server.Engines.MLQuests.Definitions.Walker.v0.json
Server.Engines.MLQuests.Definitions.Yellienir.v0.json
Server.Engines.MLQuests.Definitions.Yorus.v0.json
Server.Engines.MLQuests.Gumps.RaceChangeDeed.v0.json
Server.Engines.MLQuests.Items.BagOfTreasure.v0.json
Server.Engines.MLQuests.Items.BagOfTrinkets.v0.json
Server.Engines.MLQuests.Items.BaseCraftmansSatchel.v0.json
Server.Engines.MLQuests.Items.BedlamTeleporter.v0.json
Server.Engines.MLQuests.Items.BlacksmithSatchel.v0.json
Server.Engines.MLQuests.Items.CarpentrySatchel.v0.json
Server.Engines.MLQuests.Items.FletchingSatchel.v0.json
Server.Engines.MLQuests.Items.LargeBagOfTreasure.v0.json
Server.Engines.MLQuests.Items.MLQuestTeleporter.v1.json
Server.Engines.MLQuests.Items.QuestGiverItem.v0.json
Server.Engines.MLQuests.Items.RewardStrongbox.v0.json
Server.Engines.MLQuests.Items.SmallBagOfTrinkets.v0.json
Server.Engines.MLQuests.Items.TailorSatchel.v0.json
Server.Engines.MLQuests.Items.TicketTeleporter.v1.json
Server.Engines.MLQuests.Items.TinkerSatchel.v0.json
Server.Engines.MLQuests.Items.TransientQuestGiverItem.v0.json
Server.Engines.MLQuests.Mobiles.Darius.v0.json
Server.Engines.MLQuests.Mobiles.DoneQuestCollector.v0.json
Server.Engines.MLQuests.Mobiles.Nedrick.v0.json
Server.Engines.MLQuests.Mobiles.SirHelper.v0.json
Server.Engines.Plants.PlantBowl.v0.json
Server.Engines.Plants.PlantItem.v3.json
Server.Engines.Plants.PlantSystem.v3.json
Server.Engines.Plants.Seed.v3.json
Server.Engines.PlayerMurderSystem.MurderContext.v0.json
Server.Engines.PlayerMurderSystem.MurderContext.v1.json
Server.Engines.PlayerMurderSystem.MurderContext.v2.json
Server.Engines.Quests.Ambitious.BaseAmbitiousSolenQueen.v0.json
Server.Engines.Quests.Ambitious.BlackAmbitiousSolenQueen.v0.json
Server.Engines.Quests.Ambitious.RedAmbitiousSolenQueen.v0.json
Server.Engines.Quests.BaseQuester.v0.json
Server.Engines.Quests.Collector.AlbertaGiacco.v0.json
Server.Engines.Quests.Collector.ElwoodMcCarrin.v0.json
Server.Engines.Quests.Collector.EnchantedPaints.v0.json
Server.Engines.Quests.Collector.GabrielPiete.v0.json
Server.Engines.Quests.Collector.Impresario.v0.json
Server.Engines.Quests.Collector.Obsidian.v0.json
Server.Engines.Quests.Collector.PaintedImage.v0.json
Server.Engines.Quests.Collector.TomasONeerlan.v0.json
Server.Engines.Quests.Doom.BellOfTheDead.v0.json
Server.Engines.Quests.Doom.Chyloth.v0.json
Server.Engines.Quests.Doom.ChylothShroud.v0.json
Server.Engines.Quests.Doom.ChylothStaff.v0.json
Server.Engines.Quests.Doom.GoldenSkull.v0.json
Server.Engines.Quests.Doom.GrandGrimoire.v0.json
Server.Engines.Quests.Doom.SummoningAltar.v0.json
Server.Engines.Quests.Doom.Victoria.v0.json
Server.Engines.Quests.DynamicTeleporter.v0.json
Server.Engines.Quests.Hag.Blackheart.v0.json
Server.Engines.Quests.Hag.Grizelda.v0.json
Server.Engines.Quests.Hag.HagApprenticeCorpse.v0.json
Server.Engines.Quests.Hag.HangoverCure.v0.json
Server.Engines.Quests.Hag.MagicFlute.v0.json
Server.Engines.Quests.Hag.MoonfireBrew.v0.json
Server.Engines.Quests.Hag.Zeefzorpul.v0.json
Server.Engines.Quests.Haven.Cannon.v0.json
Server.Engines.Quests.Haven.CannonComponent.v0.json
Server.Engines.Quests.Haven.DaemonBloodChest.v0.json
Server.Engines.Quests.Haven.Dryad.v0.json
Server.Engines.Quests.Haven.MansionGuard.v0.json
Server.Engines.Quests.Haven.MilitiaCanoneer.v0.json
Server.Engines.Quests.Haven.MilitiaFighter.v0.json
Server.Engines.Quests.Haven.MilitiaFighterCorpse.v0.json
Server.Engines.Quests.Haven.QuestDaemonBlood.v0.json
Server.Engines.Quests.Haven.QuestDaemonBone.v0.json
Server.Engines.Quests.Haven.QuestFertileDirt.v0.json
Server.Engines.Quests.Haven.Schmendrick.v0.json
Server.Engines.Quests.Haven.SchmendrickApprenticeCorpse.v0.json
Server.Engines.Quests.Haven.SchmendrickScrollOfPower.v0.json
Server.Engines.Quests.Haven.Uzeraan.v0.json
Server.Engines.Quests.Haven.UzeraanTurmoilHorn.v0.json
Server.Engines.Quests.Haven.UzeraanTurmoilTeleporter.v0.json
Server.Engines.Quests.HornOfRetreat.v0.json
Server.Engines.Quests.HornOfRetreatMoongate.v0.json
Server.Engines.Quests.Matriarch.BaseSolenMatriarch.v0.json
Server.Engines.Quests.Matriarch.BlackSolenMatriarch.v0.json
Server.Engines.Quests.Matriarch.RedSolenMatriarch.v0.json
Server.Engines.Quests.Naturalist.Naturalist.v0.json
Server.Engines.Quests.Necro.CrystalCaveBarrier.v0.json
Server.Engines.Quests.Necro.DarkTidesHorn.v0.json
Server.Engines.Quests.Necro.DarkTidesTeleporter.v0.json
Server.Engines.Quests.Necro.Horus.v0.json
Server.Engines.Quests.Necro.KronusScroll.v0.json
Server.Engines.Quests.Necro.KronusScrollBox.v0.json
Server.Engines.Quests.Necro.Maabus.v0.json
Server.Engines.Quests.Necro.MaabusCoffin.v0.json
Server.Engines.Quests.Necro.MaabusCoffinComponent.v0.json
Server.Engines.Quests.Necro.Mardoth.v0.json
Server.Engines.Quests.Necro.ScrollOfAbraxus.v0.json
Server.Engines.Quests.Necro.SummonedPaladin.v0.json
Server.Engines.Quests.Necro.SummonedPaladinMoongate.v0.json
Server.Engines.Quests.Necro.VaultOfSecretsBarrier.v0.json
Server.Engines.Quests.Ninja.BlueNinjaQuestTeleporter.v0.json
Server.Engines.Quests.Ninja.Emino.v0.json
Server.Engines.Quests.Ninja.EminosKatana.v0.json
Server.Engines.Quests.Ninja.EminosKatanaChest.v0.json
Server.Engines.Quests.Ninja.EnshroudedFigure.v0.json
Server.Engines.Quests.Ninja.GreenNinjaQuestTeleporter.v0.json
Server.Engines.Quests.Ninja.GuardianBarrier.v0.json
Server.Engines.Quests.Ninja.Henchman.v0.json
Server.Engines.Quests.Ninja.HiddenFigure.v0.json
Server.Engines.Quests.Ninja.JedahEntille.v0.json
Server.Engines.Quests.Ninja.NoteForZoel.v0.json
Server.Engines.Quests.Ninja.WhiteNinjaQuestTeleporter.v0.json
Server.Engines.Quests.Ninja.Zoel.v0.json
Server.Engines.Quests.QuestItem.v0.json
Server.Engines.Quests.Samurai.CursedSoul.v0.json
Server.Engines.Quests.Samurai.DeadlyImp.v0.json
Server.Engines.Quests.Samurai.DiseasedCat.v0.json
Server.Engines.Quests.Samurai.FierceDragon.v0.json
Server.Engines.Quests.Samurai.Haochi.v0.json
Server.Engines.Quests.Samurai.HaochisGuardsman.v0.json
Server.Engines.Quests.Samurai.HaochisKatana.v0.json
Server.Engines.Quests.Samurai.HaochisKatanaGenerator.v0.json
Server.Engines.Quests.Samurai.HaochisTreasureChest.v0.json
Server.Engines.Quests.Samurai.HonorCandle.v0.json
Server.Engines.Quests.Samurai.InjuredWolf.v0.json
Server.Engines.Quests.Samurai.Relnia.v0.json
Server.Engines.Quests.Samurai.YoungNinja.v0.json
Server.Engines.Quests.Samurai.YoungRonin.v0.json
Server.Engines.Quests.Zento.AnsellaGryen.v0.json
Server.Engines.Spawners.BaseSpawner.v10.json
Server.Engines.Spawners.BaseSpawner.v11.json
Server.Engines.Spawners.BaseSpawner.v12.json
Server.Engines.Spawners.BaseSpawner.v13.json refactor(spawners): subclass-owned entries, lifecycle hooks, per-entry Disabled flag (#2621) 2026-09-11 17:41:08 -07:00
Server.Engines.Spawners.ProximitySpawner.v0.json
Server.Engines.Spawners.RegionSpawner.v0.json
Server.Engines.Spawners.Spawner.v0.json
Server.Engines.Spawners.Spawner.v1.json
Server.Engines.Spawners.Spawner.v2.json refactor(spawners): subclass-owned entries, lifecycle hooks, per-entry Disabled flag (#2621) 2026-09-11 17:41:08 -07:00
Server.Engines.Spawners.SpawnerBorder.v0.json
Server.Engines.Spawners.SpawnerEntry.v1.json
Server.Engines.Spawners.SpawnerEntry.v2.json refactor(spawners): subclass-owned entries, lifecycle hooks, per-entry Disabled flag (#2621) 2026-09-11 17:41:08 -07:00
Server.Engines.Virtues.VirtueContext.v0.json
Server.Engines.Virtues.VirtueContext.v1.json feat: convert all delta-time serialization to anchored time (#2589) 2026-08-22 19:34:43 -07:00
Server.Ethics.Ethic.v1.json
Server.Ethics.EthicsEntity.v0.json
Server.Ethics.Evil.EvilEthic.v0.json
Server.Ethics.Hero.HeroEthic.v0.json
Server.Ethics.Player.v1.json
Server.Ethics.Player.v2.json feat: convert all delta-time serialization to anchored time (#2589) 2026-08-22 19:34:43 -07:00
Server.Factions.BaseSystemController.v1.json
Server.Factions.FactionBerserker.v0.json
Server.Factions.FactionBoardVendor.v0.json
Server.Factions.FactionBottleVendor.v0.json
Server.Factions.FactionDeathKnight.v0.json
Server.Factions.FactionDragoon.v0.json
Server.Factions.FactionExplosionTrap.v0.json
Server.Factions.FactionExplosionTrapDeed.v0.json
Server.Factions.FactionGasTrap.v0.json
Server.Factions.FactionGasTrapDeed.v0.json
Server.Factions.FactionHenchman.v0.json
Server.Factions.FactionHorseVendor.v0.json
Server.Factions.FactionKnight.v0.json
Server.Factions.FactionMercenary.v0.json
Server.Factions.FactionNecromancer.v0.json
Server.Factions.FactionOreVendor.v0.json
Server.Factions.FactionPaladin.v0.json
Server.Factions.FactionReagentVendor.v0.json
Server.Factions.FactionSawTrap.v0.json
Server.Factions.FactionSawTrapDeed.v0.json
Server.Factions.FactionSorceress.v0.json
Server.Factions.FactionSpikeTrap.v0.json
Server.Factions.FactionSpikeTrapDeed.v0.json
Server.Factions.FactionTrapRemovalKit.v0.json
Server.Factions.FactionWizard.v0.json
Server.Factions.Silver.v0.json
Server.Factions.VirtualMountItem.v0.json
Server.GemOfEmpowerment.v0.json
Server.Items.ABauble.v0.json
Server.Items.AbbatoirAddon.v0.json
Server.Items.AbbatoirDeed.v0.json
Server.Items.AbscessTail.v0.json
Server.Items.AbyssReaver.v0.json
Server.Items.AcademicBooksArtifact.v0.json
Server.Items.Acid.v0.json
Server.Items.AcidProofRobe.v0.json
Server.Items.AcidProofRope.v0.json
Server.Items.AddonComponent.v1.json
Server.Items.AddonContainerComponent.v0.json
Server.Items.AdminRobe.v0.json
Server.Items.AdmiralsHeartyRum.v0.json
Server.Items.AdventurersMachete.v0.json
Server.Items.Aegis.v0.json
Server.Items.AegisOfGrace.v0.json
Server.Items.AgapiteGranite.v0.json
Server.Items.AgapiteIngot.v0.json
Server.Items.AgapiteOre.v0.json
Server.Items.AgilityPotion.v0.json
Server.Items.AgilityScroll.v0.json
Server.Items.AlbinoCourtesanFish.v0.json
Server.Items.AlbinoFrog.v0.json
Server.Items.AlchemistsBandage.v0.json
Server.Items.AlchemistsBauble.v0.json
Server.Items.AlchemistTableEastAddon.v0.json
Server.Items.AlchemistTableEastDeed.v0.json
Server.Items.AlchemistTableSouthAddon.v0.json
Server.Items.AlchemistTableSouthDeed.v0.json
Server.Items.AlchemyBag.v0.json
Server.Items.AlchemyStone.v0.json
Server.Items.Amber.v0.json
Server.Items.AmeliasToolbox.v0.json
Server.Items.Amethyst.v0.json
Server.Items.AncientFarmersKasa.v0.json
Server.Items.AncientSamuraiDo.v0.json
Server.Items.AncientSmithyHammer.v0.json
Server.Items.AncientUrn.v0.json
Server.Items.AncientWildStaff.v0.json
Server.Items.AndricSatchel.v0.json
Server.Items.AndrosGratitude.v0.json
Server.Items.ANecromancerShroud.v0.json
Server.Items.AniLargeVioletFlask.v0.json
Server.Items.AnimateDeadScroll.v0.json
Server.Items.AnimatedHeartShapedBox.v0.json
Server.Items.AnimatedWeaponScroll.v0.json
Server.Items.AniRedRibbedFlask.v0.json
Server.Items.AniSmallBlueFlask.v0.json
Server.Items.AnkhNorth.InternalItem.v0.json
Server.Items.AnkhNorth.v0.json
Server.Items.AnkhOfSacrificeAddon.v0.json
Server.Items.AnkhOfSacrificeComponent.v0.json
Server.Items.AnkhOfSacrificeDeed.v0.json
Server.Items.AnkhWest.InternalItem.v0.json
Server.Items.AnkhWest.v0.json
Server.Items.AnOldNecklace.v0.json
Server.Items.AnOldRing.v0.json
Server.Items.AnthropomorphistGlasses.v0.json
Server.Items.Anvil.v0.json
Server.Items.AnvilComponent.v0.json
Server.Items.AnvilEastAddon.v0.json
Server.Items.AnvilEastDeed.v0.json
Server.Items.AnvilSouthAddon.v0.json
Server.Items.AnvilSouthDeed.v0.json
Server.Items.APersonalLetterAddressedToAhie.v0.json
Server.Items.Apple.v0.json
Server.Items.ApplePie.v0.json
Server.Items.AppleTreeAddon.v0.json
Server.Items.AppleTreeDeed.v0.json
Server.Items.AppleTrunkAddon.v0.json
Server.Items.AppleTrunkDeed.v0.json
Server.Items.Aquarium.v4.json
Server.Items.AquariumEastDeed.v0.json
Server.Items.AquariumFishNet.v0.json
Server.Items.AquariumFood.v0.json
Server.Items.AquariumMessage.v0.json
Server.Items.AquariumNorthDeed.v0.json
Server.Items.AquariumState.v0.json
Server.Items.ArcaneBookshelfEastAddon.v0.json
Server.Items.ArcaneBookshelfEastDeed.v0.json
Server.Items.ArcaneBookshelfSouthAddon.v0.json
Server.Items.ArcaneBookshelfSouthDeed.v0.json
Server.Items.ArcaneCircleAddon.v0.json
Server.Items.ArcaneCircleDeed.v0.json
Server.Items.ArcaneCircleScroll.v0.json
Server.Items.ArcaneEmpowermentScroll.v0.json
Server.Items.ArcaneFocus.v0.json
Server.Items.ArcaneGem.v0.json
Server.Items.ArcaneShield.v0.json
Server.Items.ArcanistStatueEastAddon.v0.json
Server.Items.ArcanistStatueEastDeed.v0.json
Server.Items.ArcanistStatueSouthAddon.v0.json
Server.Items.ArcanistStatueSouthDeed.v0.json
Server.Items.ArcanistsWildStaff.v0.json
Server.Items.ArchCureScroll.v0.json
Server.Items.ArcheryButte.v0.json
Server.Items.ArcheryButteAddon.v0.json
Server.Items.ArcheryButteDeed.v0.json
Server.Items.ArchProtectionScroll.v0.json
Server.Items.ArcticDeathDealer.v0.json
Server.Items.Armoire.v0.json
Server.Items.ArmorOfFortune.v0.json
Server.Items.ArmsAndWeaponsPrimer.v0.json
Server.Items.ArmsOfArmstrong.v0.json
Server.Items.ArmsOfTacticalExcellence.v0.json
Server.Items.Arrow.v0.json
Server.Items.ArtifactLargeVase.v0.json
Server.Items.ArtifactVase.v0.json
Server.Items.ArtsGlasses.v0.json
Server.Items.AsandosSatchel.v0.json
Server.Items.AshBoard.v0.json
Server.Items.AshLog.v0.json
Server.Items.AssassinSpike.v0.json
Server.Items.AssassinsShortbow.v0.json
Server.Items.AttuneWeaponScroll.v0.json
Server.Items.AwaseMisoSoup.v0.json
Server.Items.AwesomeDisturbingPortraitAddon.v0.json
Server.Items.AwesomeDisturbingPortraitComponent.v0.json
Server.Items.AwesomeDisturbingPortraitDeed.v0.json
Server.Items.Axe.v0.json
Server.Items.AxeOfTheHeavens.v0.json
Server.Items.Axle.v0.json
Server.Items.AxleGears.v0.json
Server.Items.Backgammon.v0.json
Server.Items.Backpack.v0.json
Server.Items.BackpackArtifact.v0.json
Server.Items.Bacon.v0.json
Server.Items.BadCard.v0.json
Server.Items.Bag.v0.json
Server.Items.BagOfAllReagents.v0.json
Server.Items.BagOfingots.v0.json
Server.Items.BagOfNecromancerReagents.v0.json
Server.Items.BagOfNecroReagents.v0.json
Server.Items.BagOfReagents.v0.json
Server.Items.BagOfSending.v2.json
Server.Items.BagOfSmokeBombs.v0.json
Server.Items.BallOfSummoning.v2.json
Server.Items.BallotBox.v0.json
Server.Items.BallotBoxAddon.v0.json
Server.Items.BallotBoxDeed.v0.json
Server.Items.BambooChair.v0.json
Server.Items.BambooFlute.v0.json
Server.Items.BambooScreen.v0.json
Server.Items.Banana.v0.json
Server.Items.Bananas.v0.json
Server.Items.Bandage.v0.json
Server.Items.Bandana.v0.json
Server.Items.BankCheck.v0.json
Server.Items.Banner.v0.json
Server.Items.BannerDeed.v0.json
Server.Items.BansheesCall.v0.json
Server.Items.BarbedHides.v0.json
Server.Items.BarbedLeather.v0.json
Server.Items.BarbedLongbow.v0.json
Server.Items.Bardiche.v0.json
Server.Items.BarkeepContract.v0.json
Server.Items.BarkFragment.v0.json
Server.Items.BarredMetalDoor.v0.json
Server.Items.BarredMetalDoor2.v0.json
Server.Items.Barrel.v0.json
Server.Items.BarrelHoops.v0.json
Server.Items.BarrelLid.v0.json
Server.Items.BarrelStaves.v0.json
Server.Items.BarrelTap.v0.json
Server.Items.Bascinet.v0.json
Server.Items.BaseAddon.v3.json
Server.Items.BaseAddonContainer.v2.json
Server.Items.BaseAddonContainerDeed.v2.json
Server.Items.BaseAddonDeed.v0.json
Server.Items.BaseAgilityPotion.v0.json
Server.Items.BaseArmor.v8.json
Server.Items.BaseArmor.v9.json
Server.Items.BaseArmor.v10.json
Server.Items.BaseAxe.v0.json
Server.Items.BaseBagBall.v0.json
Server.Items.BaseBashing.v0.json
Server.Items.BaseBeverage.v2.json
Server.Items.BaseBoard.v2.json
Server.Items.BaseBook.v5.json
Server.Items.BaseBracelet.v0.json
Server.Items.BaseBulletinBoard.v0.json
Server.Items.BaseCloak.v0.json
Server.Items.BaseClothing.v6.json
Server.Items.BaseClothing.v7.json
Server.Items.BaseClothing.v8.json
Server.Items.BaseClothMaterial.v0.json
Server.Items.BaseConflagrationPotion.InternalItem.v0.json
Server.Items.BaseConflagrationPotion.v0.json
Server.Items.BaseConfusionBlastPotion.v0.json
Server.Items.BaseCurePotion.v0.json
Server.Items.BaseDecorationArtifact.v0.json
Server.Items.BaseDecorationContainerArtifact.v0.json
Server.Items.BaseDoor.v0.json
Server.Items.BaseEarrings.v0.json
Server.Items.BaseEquipableLight.v0.json
Server.Items.BaseExplosionPotion.v0.json
Server.Items.BaseFish.v0.json
Server.Items.BaseFloor.v0.json
Server.Items.BaseFormTalisman.v0.json
Server.Items.BaseFruitTreeAddon.v0.json
Server.Items.BaseGlovesOfMining.v0.json
Server.Items.BaseGranite.v2.json
Server.Items.BaseHarvestTool.v2.json
Server.Items.BaseHat.v0.json
Server.Items.BaseHealPotion.v0.json
Server.Items.BaseHides.v2.json
Server.Items.BaseHouseDoor.v2.json
Server.Items.BaseImprisonedMobile.v0.json
Server.Items.BaseIngot.v2.json
Server.Items.BaseInstrument.v4.json
Server.Items.BaseJewel.v4.json
Server.Items.BaseJewel.v5.json
Server.Items.BaseKnife.v0.json
Server.Items.BaseLeather.v2.json
Server.Items.BaseLight.v1.json
Server.Items.BaseLight.v2.json
Server.Items.BaseMagicFish.v0.json
Server.Items.BaseMiddleTorso.v0.json
Server.Items.BaseNecklace.v0.json
Server.Items.BaseOre.v2.json
Server.Items.BaseOuterLegs.v0.json
Server.Items.BaseOuterTorso.v0.json
Server.Items.BasePants.v0.json
Server.Items.BasePiece.v0.json
Server.Items.BasePigmentsOfTokuno.v0.json
Server.Items.BasePlayerBB.v0.json fix: Fixes dirty-tracking gaps in generated content: setters, sub-object owners, BaseVendor (#2609) 2026-09-06 09:43:44 -07:00
Server.Items.BasePoisonPotion.v0.json
Server.Items.BasePoleArm.v0.json
Server.Items.BasePotion.v2.json
Server.Items.BaseQuiver.v1.json
Server.Items.BaseRanged.v0.json
Server.Items.BaseReagent.v0.json
Server.Items.BaseRefreshPotion.v0.json
Server.Items.BaseRejuvinationAnkh.v0.json
Server.Items.BaseRing.v0.json
Server.Items.BaseRunicTool.v1.json
Server.Items.BaseScales.v1.json
Server.Items.BaseShield.v0.json
Server.Items.BaseShirt.v0.json
Server.Items.BaseShoes.v0.json
Server.Items.BaseSign.v0.json
Server.Items.BaseSpear.v0.json
Server.Items.BaseStaff.v0.json
Server.Items.BaseStrengthPotion.v0.json
Server.Items.BaseSuit.v1.json
Server.Items.BaseSword.v0.json
Server.Items.BaseTalisman.v1.json fix: Fixes dirty-tracking gaps in generated content: setters, sub-object owners, BaseVendor (#2609) 2026-09-06 09:43:44 -07:00
Server.Items.BaseThrown.v0.json
Server.Items.BaseTool.v2.json
Server.Items.BaseTrap.v0.json
Server.Items.BaseTreasureChest.v1.json
Server.Items.BaseWaist.v0.json
Server.Items.BaseWall.v0.json
Server.Items.BaseWand.v1.json
Server.Items.BaseWaterContainer.v0.json
Server.Items.BaseWeapon.v10.json
Server.Items.BaseWeapon.v11.json
Server.Items.BaseWindChimes.v0.json
Server.Items.BasinOfCrystalClearWater.v0.json
Server.Items.Basket.v0.json
Server.Items.Basket1Artifact.v0.json
Server.Items.Basket2Artifact.v0.json
Server.Items.Basket3NorthArtifact.v0.json
Server.Items.Basket3WestArtifact.v0.json
Server.Items.Basket4Artifact.v0.json
Server.Items.Basket5NorthArtifact.v0.json
Server.Items.Basket5WestArtifact.v0.json
Server.Items.Basket6Artifact.v0.json
Server.Items.BattleAxe.v0.json
Server.Items.BatWing.v0.json
Server.Items.Beads.v0.json
Server.Items.BearMask.v0.json
Server.Items.BedOfNailsAddon.v0.json
Server.Items.BedOfNailsComponent.v0.json
Server.Items.BedOfNailsDeed.v0.json
Server.Items.Bedroll.v0.json
Server.Items.Beeswax.v0.json
Server.Items.BentoBox.v0.json
Server.Items.BeverageBottle.v0.json
Server.Items.BigElvenChair.v0.json
Server.Items.BigFish.v1.json
Server.Items.BirdsOfBritannia.v0.json
Server.Items.BlackDyeTub.v0.json
Server.Items.BlackLotusHood.v0.json
Server.Items.BlackPearl.v0.json
Server.Items.BlackScales.v0.json
Server.Items.BlackStaff.v0.json
Server.Items.BlackthornWelcomeBook.v0.json
Server.Items.BladeDance.v0.json
Server.Items.BladedStaff.v0.json
Server.Items.BladeOfInsanity.v0.json
Server.Items.BladeOfTheRighteous.v0.json
Server.Items.BladeSpiritsScroll.v0.json
Server.Items.BlankMap.v0.json
Server.Items.BlankScroll.v0.json
Server.Items.BlazeDyeTub.v0.json
Server.Items.BlazeOfDeath.v0.json
Server.Items.Bleach.v0.json
Server.Items.BlessScroll.v0.json
Server.Items.Blight.v0.json
Server.Items.BlightGrippedLongbow.v0.json
Server.Items.Blocker.v0.json
Server.Items.Blood.v0.json
Server.Items.BloodBlade.v0.json
Server.Items.Bloodmoss.v0.json
Server.Items.BloodOathScroll.v0.json
Server.Items.BloodPentagram.v0.json
Server.Items.BloodwoodBoard.v0.json
Server.Items.BloodwoodLog.v0.json
Server.Items.BloodwoodSpirit.v0.json
Server.Items.BloodyPentagramAddon.v0.json
Server.Items.BloodyPentagramComponent.v0.json
Server.Items.BloodyPentagramDeed.v0.json
Server.Items.BloodyWaterArtifact.v0.json
Server.Items.Blowpipe.v0.json
Server.Items.BlueBeaker.v0.json
Server.Items.BlueBook.v0.json
Server.Items.BlueCurvedFlask.v0.json
Server.Items.BlueDecorativeRugAddon.v0.json
Server.Items.BlueDecorativeRugDeed.v0.json
Server.Items.BlueDiamond.v0.json
Server.Items.BlueFancyRugAddon.v0.json
Server.Items.BlueFancyRugDeed.v0.json
Server.Items.BluePlainRugAddon.v0.json
Server.Items.BluePlainRugDeed.v0.json
Server.Items.BlueScales.v0.json
Server.Items.BlueSlateFloorCenter.v0.json
Server.Items.BlueSnowflake.v0.json
Server.Items.BlueSoulstone.v0.json
Server.Items.Board.v4.json
Server.Items.BodySash.v0.json
Server.Items.BoilingCauldronAddon.v0.json
Server.Items.BoilingCauldronDeed.v0.json
Server.Items.Bokuto.v0.json
Server.Items.Bola.v0.json
Server.Items.BolaBall.v0.json
Server.Items.BoldStranger.v0.json
Server.Items.Bolt.v0.json
Server.Items.BoltOfCloth.v0.json
Server.Items.BombardScroll.v0.json
Server.Items.Bone.v0.json
Server.Items.BoneArms.v0.json
Server.Items.BoneChest.v0.json
Server.Items.BoneCouchAddon.v0.json
Server.Items.BoneCouchComponent.v0.json
Server.Items.BoneCouchDeed.v0.json
Server.Items.BoneCrusher.v0.json
Server.Items.BoneGloves.v0.json
Server.Items.BoneHarvester.v0.json
Server.Items.BoneHelm.v0.json
Server.Items.BoneLegs.v0.json
Server.Items.BoneMachete.v0.json
Server.Items.BonePile.v0.json
Server.Items.Bonesmasher.v0.json
Server.Items.BoneTableAddon.v0.json
Server.Items.BoneTableDeed.v0.json
Server.Items.BoneThroneAddon.v0.json
Server.Items.BoneThroneComponent.v0.json
Server.Items.BoneThroneDeed.v0.json
Server.Items.Bonnet.v0.json
Server.Items.BookOfBushido.v0.json
Server.Items.BookOfChivalry.v0.json
Server.Items.BookOfNinjitsu.v0.json
Server.Items.BooksFaceDownArtifact.v0.json
Server.Items.BooksNorthArtifact.v0.json
Server.Items.BooksWestArtifact.v0.json
Server.Items.Boomerang.v0.json
Server.Items.Boomstick.v0.json
Server.Items.Boots.v0.json
Server.Items.Bottle.v0.json
Server.Items.BottleArtifact.v0.json
Server.Items.BountyBoard.v0.json
Server.Items.Bow.v0.json
Server.Items.BowlArtifact.v0.json
Server.Items.BowlFlour.v0.json
Server.Items.BowlsHorizontalArtifact.v0.json
Server.Items.BowlsVerticalArtifact.v0.json
Server.Items.BowOfTheJukaKing.v0.json
Server.Items.BraceletOfBinding.v2.json
Server.Items.BraceletOfHealth.v0.json
Server.Items.BraceletOfResilience.v0.json
Server.Items.BrambleCoat.v0.json
Server.Items.BraveKnightOfTheBritannia.v0.json
Server.Items.Brazier.v0.json
Server.Items.BrazierArtifact.v0.json
Server.Items.BrazierTall.v0.json
Server.Items.BreadLoaf.v0.json
Server.Items.BreathOfTheDead.v0.json
Server.Items.BricksFloor1.v0.json
Server.Items.BricksFloor2.v0.json
Server.Items.BridesLetter.v0.json
Server.Items.BrightlyColoredEggs.v0.json
Server.Items.BrightsightLenses.v0.json
Server.Items.BrilliantAmber.v0.json
Server.Items.BrineShrimp.v0.json
Server.Items.BritainCrownFish.v0.json
Server.Items.BritannianFlora.v0.json
Server.Items.BroadcastCrystal.v1.json
Server.Items.Broadsword.v0.json
Server.Items.BrocadeGozaMatEastAddon.v0.json
Server.Items.BrocadeGozaMatEastDeed.v0.json
Server.Items.BrocadeGozaMatSouthAddon.v0.json
Server.Items.BrocadeGozaMatSouthDeed.v0.json
Server.Items.BrocadeSquareGozaMatEastAddon.v0.json
Server.Items.BrocadeSquareGozaMatEastDeed.v0.json
Server.Items.BrocadeSquareGozaMatSouthAddon.v0.json
Server.Items.BrocadeSquareGozaMatSouthDeed.v0.json
Server.Items.BrokenArmoireAddon.v0.json
Server.Items.BrokenArmoireComponent.v0.json
Server.Items.BrokenArmoireDeed.v0.json
Server.Items.BrokenBedAddon.v0.json
Server.Items.BrokenBedDeed.v0.json
Server.Items.BrokenBookcaseAddon.v0.json
Server.Items.BrokenBookcaseComponent.v0.json
Server.Items.BrokenBookcaseDeed.v0.json
Server.Items.BrokenChair.v0.json
Server.Items.BrokenChestOfDrawersAddon.v0.json
Server.Items.BrokenChestOfDrawersComponent.v0.json
Server.Items.BrokenChestOfDrawersDeed.v0.json
Server.Items.BrokenCoveredChairAddon.v0.json
Server.Items.BrokenCoveredChairComponent.v0.json
Server.Items.BrokenCoveredChairDeed.v0.json
Server.Items.BrokenFallenChairAddon.v0.json
Server.Items.BrokenFallenChairComponent.v0.json
Server.Items.BrokenFallenChairDeed.v0.json
Server.Items.BrokenVanityAddon.v0.json
Server.Items.BrokenVanityDeed.v0.json
Server.Items.BronzeGranite.v0.json
Server.Items.BronzeIngot.v0.json
Server.Items.BronzeOre.v0.json
Server.Items.BronzeShield.v0.json
Server.Items.BronzeStatueMaker.v0.json
Server.Items.BrownBearRugEastAddon.v0.json
Server.Items.BrownBearRugEastDeed.v0.json
Server.Items.BrownBearRugSouthAddon.v0.json
Server.Items.BrownBearRugSouthDeed.v0.json
Server.Items.BrownBook.v0.json
Server.Items.Bucket.v0.json
Server.Items.Buckler.v0.json
Server.Items.BulletinBoard.v0.json
Server.Items.BulletinMessage.v2.json
Server.Items.BulwarkLeggings.v0.json
Server.Items.BurglarsBandana.v0.json
Server.Items.BurningOfTrinsic.v0.json
Server.Items.BustEast.v0.json
Server.Items.BustSouth.v0.json
Server.Items.ButcherKnife.v0.json
Server.Items.ButchersWarCleaver.v0.json
Server.Items.Cabbage.v0.json
Server.Items.Cake.v0.json
Server.Items.CakeMix.v0.json
Server.Items.CallToAnarchy.v0.json
Server.Items.Calm.v0.json
Server.Items.Campfire.v0.json
Server.Items.Candelabra.v0.json
Server.Items.CandelabraOfSouls.v0.json
Server.Items.CandelabraStand.v0.json
Server.Items.Candle.v0.json
Server.Items.CandleLarge.v0.json
Server.Items.CandleLong.v0.json
Server.Items.CandleShort.v0.json
Server.Items.CandleSkull.v0.json
Server.Items.CandyCane.v0.json
Server.Items.CannonAddon.v1.json
Server.Items.CannonAddonComponent.v0.json
Server.Items.CannonDeed.v0.json
Server.Items.Cantaloupe.v0.json
Server.Items.Cap.v0.json
Server.Items.CaptainBlackheartsFishingPole.v0.json
Server.Items.CaptainJohnsHat.v0.json
Server.Items.CaptainQuacklebushsCutlass.v0.json
Server.Items.CapturedEssence.v0.json
Server.Items.Cards.v0.json
Server.Items.Cards2.v0.json
Server.Items.Cards3.v0.json
Server.Items.Cards4.v0.json
Server.Items.Carrot.v0.json
Server.Items.Cauldron.v0.json
Server.Items.CaveFloorCenter.v0.json
Server.Items.CaveFloorEast.v0.json
Server.Items.CaveFloorNorth.v0.json
Server.Items.CaveFloorSouth.v0.json
Server.Items.CaveFloorWest.v0.json
Server.Items.CavortingClub.v0.json
Server.Items.CeramicMug.v0.json
Server.Items.ChainChest.v0.json
Server.Items.ChainCoif.v0.json
Server.Items.ChainHatsuburi.v0.json
Server.Items.ChainLegs.v0.json
Server.Items.ChainLightningScroll.v0.json
Server.Items.ChairInAGhostCostume.v0.json
Server.Items.ChampionSkull.v2.json
Server.Items.ChaosShield.v0.json
Server.Items.CharacterStatueMaker.v1.json
Server.Items.CharacterStatuePlinth.v0.json
Server.Items.ChargedAssassinSpike.v0.json
Server.Items.CheckerBoard.v0.json
Server.Items.Checkers.v0.json
Server.Items.Checkers2.v0.json
Server.Items.CheesePizza.v0.json
Server.Items.CheeseSlice.v0.json
Server.Items.CheeseWedge.v0.json
Server.Items.CheeseWheel.v0.json
Server.Items.CherryArmoire.v0.json
Server.Items.CherryBlossomTreeAddon.v0.json
Server.Items.CherryBlossomTreeDeed.v0.json
Server.Items.CherryBlossomTrunkAddon.v0.json
Server.Items.CherryBlossomTrunkDeed.v0.json
Server.Items.Chessboard.v0.json
Server.Items.Chessmen.v0.json
Server.Items.Chessmen2.v0.json
Server.Items.Chessmen3.v0.json
Server.Items.ChestOfHeirlooms.v0.json
Server.Items.ChickenLeg.v0.json
Server.Items.ChildrenTalesVol2.v0.json
Server.Items.ChiselsNorth.v0.json
Server.Items.ChiselsWest.v0.json
Server.Items.ChurchillsWarMace.v0.json
Server.Items.CinnamonFancyRugAddon.v0.json
Server.Items.CinnamonFancyRugDeed.v0.json
Server.Items.Circlet.v0.json
Server.Items.Citrine.v0.json
Server.Items.CityMap.v0.json
Server.Items.ClaspOfConcentration.v0.json
Server.Items.CleansingWindsScroll.v0.json
Server.Items.Cleaver.v0.json
Server.Items.Cloak.v2.json
Server.Items.Clock.v0.json
Server.Items.ClockFrame.v0.json
Server.Items.ClockLeft.v0.json
Server.Items.ClockParts.v0.json
Server.Items.ClockRight.v0.json
Server.Items.ClockworkAssembly.v0.json
Server.Items.ClosedBarrel.v0.json
Server.Items.CloseHelm.v0.json
Server.Items.Cloth.v0.json
Server.Items.ClothingBlessDeed.v0.json
Server.Items.ClothNinjaHood.v0.json
Server.Items.ClothNinjaJacket.v0.json
Server.Items.Club.v0.json
Server.Items.ClumsyScroll.v0.json
Server.Items.ClumsyWand.v0.json
Server.Items.Coal.v0.json
Server.Items.CobblestonesFloor.v0.json
Server.Items.CocoaButter.v0.json
Server.Items.CocoaLiquor.v0.json
Server.Items.CocoaPulp.v0.json
Server.Items.Coconut.v0.json
Server.Items.CocoonArtifact.v0.json
Server.Items.CoilsFang.v0.json
Server.Items.ColdBlood.v0.json
Server.Items.ColdForgedBlade.v0.json
Server.Items.ColoredAnvil.v0.json
Server.Items.ColoredSmallWebs.v0.json
Server.Items.CommodityDeed.v1.json
Server.Items.CommodityDeedBox.v0.json
Server.Items.CompletedTuitionReimbursementForm.v0.json
Server.Items.CompositeBow.v0.json
Server.Items.ConditionTeleporter.v1.json
Server.Items.ConfirmationMoongate.v1.json
Server.Items.ConflagrationPotion.v0.json
Server.Items.ConfusionBlastPotion.v0.json
Server.Items.ContestMiniHouse.v0.json
Server.Items.ContestMiniHouseDeed.v0.json
Server.Items.ContractOfEmployment.v0.json
Server.Items.ControlPanel.v1.json
Server.Items.CookableFood.v0.json
Server.Items.CookedBird.v0.json
Server.Items.CookieMix.v0.json
Server.Items.Cookies.v0.json
Server.Items.CopperGranite.v0.json
Server.Items.CopperIngot.v0.json
Server.Items.CopperOre.v0.json
Server.Items.CopperWire.v0.json
Server.Items.Coral.v0.json
Server.Items.Corpse.v13.json
Server.Items.Corpse.v14.json
Server.Items.Corpse.v15.json
Server.Items.Corpse.v16.json
Server.Items.Corpse.v17.json
Server.Items.Corpse.v18.json
Server.Items.Corpse.v19.json feat: convert all delta-time serialization to anchored time (#2589) 2026-08-22 19:34:43 -07:00
Server.Items.CorpseSkinScroll.v0.json
Server.Items.CorruptedRuneBlade.v0.json
Server.Items.Corruption.v0.json
Server.Items.Cotton.v0.json
Server.Items.CounselorRobe.v0.json
Server.Items.CoveredChair.v0.json
Server.Items.CraftysFishingHat.v0.json
Server.Items.CrateForSledge.v0.json
Server.Items.CreateFoodScroll.v0.json
Server.Items.CreatureBackpack.v0.json
Server.Items.CreepyCake.v0.json
Server.Items.CreepyPortraitAddon.v0.json
Server.Items.CreepyPortraitComponent.v0.json
Server.Items.CreepyPortraitDeed.v0.json
Server.Items.CrescentBlade.v0.json
Server.Items.CrimsonCincture.v0.json
Server.Items.Crossbow.v0.json
Server.Items.CrossbowBolts.v0.json
Server.Items.CrownOfTalKeesh.v0.json
Server.Items.CrystallineFragments.v0.json
Server.Items.CunningScroll.v0.json
Server.Items.CupidsArrow.v0.json
Server.Items.CupidStatue.v0.json
Server.Items.CupsArtifact.v0.json
Server.Items.CurePotion.v0.json
Server.Items.CureScroll.v0.json
Server.Items.CurseScroll.v0.json
Server.Items.CurseWeaponScroll.v0.json
Server.Items.CurtainsAddon.v0.json
Server.Items.CurtainsComponent.v0.json
Server.Items.CurtainsDeed.v0.json
Server.Items.CurvedFlask.v0.json
Server.Items.CuSidheFormTalisman.v0.json
Server.Items.Cutlass.v0.json
Server.Items.Cyclone.v0.json
Server.Items.DaemonArms.v0.json
Server.Items.DaemonBlood.v0.json
Server.Items.DaemonBone.v0.json
Server.Items.DaemonChest.v0.json
Server.Items.DaemonGloves.v0.json
Server.Items.DaemonHelm.v0.json
Server.Items.DaemonLegs.v0.json
Server.Items.Dagger.v0.json
Server.Items.DaimyosHelm.v0.json
Server.Items.Daisho.v0.json
Server.Items.DamagedBooksArtifact.v0.json
Server.Items.DarkChocolate.v0.json
Server.Items.DarkenedSky.v0.json
Server.Items.DarkFlowerTapestryEastAddon.v0.json
Server.Items.DarkFlowerTapestryEastDeed.v0.json
Server.Items.DarkFlowerTapestrySouthAddon.v0.json
Server.Items.DarkFlowerTapestrySouthDeed.v0.json
Server.Items.DarkglowPotion.v0.json
Server.Items.DarkglowScimitar.v0.json
Server.Items.DarkSandstoneFloorN.v0.json
Server.Items.DarkSandstoneFloorW.v0.json
Server.Items.DarkSapphire.v0.json
Server.Items.DarkSource.v0.json
Server.Items.DarkWoodDoor.v0.json
Server.Items.DarkWoodGate.v0.json
Server.Items.DarkWoodHouseDoor.v0.json
Server.Items.DarkWoodWall.v0.json
Server.Items.DarkYarn.v0.json
Server.Items.DartBoard.v0.json
Server.Items.DartBoardEastAddon.v0.json
Server.Items.DartBoardEastDeed.v0.json
Server.Items.DartBoardSouthAddon.v0.json
Server.Items.DartBoardSouthDeed.v0.json
Server.Items.Dates.v0.json
Server.Items.DawnsMusicBox.v1.json
Server.Items.DawnsMusicGear.v2.json
Server.Items.DeadlyPoisonPotion.v0.json
Server.Items.DeadWood.v0.json
Server.Items.DeathRobe.v3.json
Server.Items.DeathRobe.v4.json
Server.Items.DeathShroud.v0.json
Server.Items.DecayedCorpse.v2.json
Server.Items.DecayedCorpse.v3.json
Server.Items.DeceitBrazier.v0.json
Server.Items.DeceitDungeonOfHorror.v0.json
Server.Items.DecoArrowShafts.v0.json
Server.Items.DecoBlackmoor.v0.json
Server.Items.DecoBloodspawn.v0.json
Server.Items.DecoBottlesOfLiquor.v0.json
Server.Items.DecoBridle.v0.json
Server.Items.DecoBridle2.v0.json
Server.Items.DecoBrimstone.v0.json
Server.Items.DecoCards5.v0.json
Server.Items.DecoCrystalBall.v0.json
Server.Items.DecoDeckOfTarot.v0.json
Server.Items.DecoDeckOfTarot2.v0.json
Server.Items.DecoDragonsBlood.v0.json
Server.Items.DecoDragonsBlood2.v0.json
Server.Items.DecoEyeOfNewt.v0.json
Server.Items.DecoFlower.v0.json
Server.Items.DecoFlower2.v0.json
Server.Items.DecoFullJar.v0.json
Server.Items.DecoFullJars3.v0.json
Server.Items.DecoFullJars4.v0.json
Server.Items.DecoGarlic.v0.json
Server.Items.DecoGarlic2.v0.json
Server.Items.DecoGarlicBulb.v0.json
Server.Items.DecoGarlicBulb2.v0.json
Server.Items.DecoGinseng.v0.json
Server.Items.DecoGinseng2.v0.json
Server.Items.DecoGinsengRoot.v0.json
Server.Items.DecoGinsengRoot2.v0.json
Server.Items.DecoGoldIngot.v0.json
Server.Items.DecoGoldIngot2.v0.json
Server.Items.DecoGoldIngots.v0.json
Server.Items.DecoGoldIngots2.v0.json
Server.Items.DecoGoldIngots3.v0.json
Server.Items.DecoGoldIngots4.v0.json
Server.Items.DecoHay.v0.json
Server.Items.DecoHay2.v0.json
Server.Items.DecoHorseDung.v0.json
Server.Items.DecoIronIngot.v0.json
Server.Items.DecoIronIngot2.v0.json
Server.Items.DecoIronIngots.v0.json
Server.Items.DecoIronIngots2.v0.json
Server.Items.DecoIronIngots3.v0.json
Server.Items.DecoIronIngots4.v0.json
Server.Items.DecoIronIngots5.v0.json
Server.Items.DecoIronIngots6.v0.json
Server.Items.DecoMagicalCrystal.v0.json
Server.Items.DecoMandrake.v0.json
Server.Items.DecoMandrake2.v0.json
Server.Items.DecoMandrake3.v0.json
Server.Items.DecoMandrakeRoot.v0.json
Server.Items.DecoMandrakeRoot2.v0.json
Server.Items.DecoNightshade.v0.json
Server.Items.DecoNightshade2.v0.json
Server.Items.DecoNightshade3.v0.json
Server.Items.DecoObsidian.v0.json
Server.Items.DecoPumice.v0.json
Server.Items.DecorativeAxeNorth.v0.json
Server.Items.DecorativeAxeWest.v0.json
Server.Items.DecorativeBowNorth.v0.json
Server.Items.DecorativeBowWest.v0.json
Server.Items.DecorativeBox.v0.json
Server.Items.DecorativeDAxeNorth.InternalItem.v0.json
Server.Items.DecorativeDAxeNorth.v0.json
Server.Items.DecorativeDAxeWest.InternalItem.v0.json
Server.Items.DecorativeDAxeWest.v0.json
Server.Items.DecorativePlateKabuto.v0.json
Server.Items.DecorativeShield.v0.json
Server.Items.DecorativeShield1.v0.json
Server.Items.DecorativeShield2.v0.json
Server.Items.DecorativeShield3.v0.json
Server.Items.DecorativeShield4.v0.json
Server.Items.DecorativeShield5.v0.json
Server.Items.DecorativeShield6.v0.json
Server.Items.DecorativeShield7.v0.json
Server.Items.DecorativeShield8.v0.json
Server.Items.DecorativeShield9.v0.json
Server.Items.DecorativeShield10.v0.json
Server.Items.DecorativeShield11.v0.json
Server.Items.DecorativeShieldDeed.v0.json
Server.Items.DecorativeShieldSword1North.v0.json
Server.Items.DecorativeShieldSword1West.v0.json
Server.Items.DecorativeShieldSword2North.v0.json
Server.Items.DecorativeShieldSword2West.v0.json
Server.Items.DecorativeSwordNorth.InternalItem.v0.json
Server.Items.DecorativeSwordNorth.v0.json
Server.Items.DecorativeSwordWest.InternalItem.v0.json
Server.Items.DecorativeSwordWest.v0.json
Server.Items.DecorativeTopiary.v0.json
Server.Items.DecoRock.v0.json
Server.Items.DecoRock2.v0.json
Server.Items.DecoRocks.v0.json
Server.Items.DecoRocks2.v0.json
Server.Items.DecoRoseOfTrinsic.v0.json
Server.Items.DecoRoseOfTrinsic2.v0.json
Server.Items.DecoRoseOfTrinsic3.v0.json
Server.Items.DecoSilverIngot.v0.json
Server.Items.DecoSilverIngot2.v0.json
Server.Items.DecoSilverIngots.v0.json
Server.Items.DecoSilverIngots2.v0.json
Server.Items.DecoSilverIngots3.v0.json
Server.Items.DecoSilverIngots4.v0.json
Server.Items.DecoSilverIngots5.v0.json
Server.Items.DecoSpittoon.v0.json
Server.Items.DecoTarot.v0.json
Server.Items.DecoTarot2.v0.json
Server.Items.DecoTarot3.v0.json
Server.Items.DecoTarot4.v0.json
Server.Items.DecoTarot5.v0.json
Server.Items.DecoTarot6.v0.json
Server.Items.DecoTarot7.v0.json
Server.Items.DecoTray.v0.json
Server.Items.DecoTray2.v0.json
Server.Items.DecoWyrmsHeart.v0.json
Server.Items.DeerMask.v0.json
Server.Items.DemonForks.v0.json
Server.Items.DemonSkull.v0.json
Server.Items.DetectiveBoots.v0.json
Server.Items.Diamond.v0.json
Server.Items.DiamondMace.v0.json
Server.Items.Dices.v0.json
Server.Items.DimensionalTravel.v0.json
Server.Items.DirtPatch.v0.json
Server.Items.DirtyFrypan.v0.json
Server.Items.DirtyKettle.v0.json
Server.Items.DirtyPan.v0.json
Server.Items.DirtyPot.v0.json
Server.Items.DirtyRoundPot.v0.json
Server.Items.DirtySmallPot.v0.json
Server.Items.DirtySmallRoundPot.v0.json
Server.Items.DisappearingRaiseSwitch.v0.json
Server.Items.DiscMace.v0.json
Server.Items.DiseasedBark.v0.json
Server.Items.DiseasedMachete.v0.json
Server.Items.DisguiseKit.v0.json
Server.Items.DispelFieldScroll.v0.json
Server.Items.DispelScroll.v0.json
Server.Items.DisturbingPortraitAddon.v0.json
Server.Items.DisturbingPortraitComponent.v0.json
Server.Items.DisturbingPortraitDeed.v0.json
Server.Items.DiversityOfOurLand.v0.json
Server.Items.DivineCountenance.v0.json
Server.Items.DjinnisRing.v0.json
Server.Items.DolphinLeftArtifact.v0.json
Server.Items.DolphinRightArtifact.v0.json
Server.Items.DoubleAxe.v0.json
Server.Items.DoubleBladedStaff.v0.json
Server.Items.Doublet.v0.json
Server.Items.Dough.v0.json
Server.Items.DovetailSaw.v0.json
Server.Items.DragonArms.v0.json
Server.Items.DragonBardingDeed.v2.json
Server.Items.DragonChest.v0.json
Server.Items.DragonEasterEgg.v0.json
Server.Items.DragonFlameSectBadge.v0.json
Server.Items.DragonGloves.v0.json
Server.Items.DragonHelm.v0.json
Server.Items.DragonLegs.v0.json
Server.Items.DragonNunchaku.v0.json
Server.Items.DragonsBlood.v0.json
Server.Items.DrakovsJournal.v0.json
Server.Items.Drawer.v0.json
Server.Items.DrawKnife.v0.json
Server.Items.DreadHornMane.v0.json
Server.Items.DreadPirateHat.v0.json
Server.Items.DreadSpiderSilk.v0.json
Server.Items.DreadSword.v0.json
Server.Items.Dressform.v0.json
Server.Items.DriedHerbs.v0.json
Server.Items.DriedOnions.v0.json
Server.Items.Drums.v0.json
Server.Items.DryadAllureScroll.v0.json
Server.Items.DualPointedSpear.v0.json
Server.Items.DualShortAxes.v0.json
Server.Items.DullCopperGranite.v0.json
Server.Items.DullCopperIngot.v0.json
Server.Items.DullCopperOre.v0.json
Server.Items.DupresShield.v0.json
Server.Items.DupreSuit.v0.json
Server.Items.Dyes.v0.json
Server.Items.DyeTub.v2.json
Server.Items.EagleStrikeScroll.v0.json
Server.Items.EarOfCorn.v0.json
Server.Items.EarringBoxSet.v0.json
Server.Items.EarringsOfProtection.v0.json
Server.Items.EarthquakeScroll.v0.json
Server.Items.Easel.v0.json
Server.Items.EasterEggs.v0.json
Server.Items.EcruCitrine.v0.json
Server.Items.EffectController.v0.json
Server.Items.EffectItem.v0.json
Server.Items.EggBomb.v0.json
Server.Items.EggCaseArtifact.v0.json
Server.Items.Eggs.v0.json
Server.Items.Eggshells.v0.json
Server.Items.ElegantArmoire.v0.json
Server.Items.ElegantLowTable.v0.json
Server.Items.ElvenBedEastAddon.v0.json
Server.Items.ElvenBedEastDeed.v0.json
Server.Items.ElvenBedSouthAddon.v0.json
Server.Items.ElvenBedSouthDeed.v0.json
Server.Items.ElvenBoots.v0.json
Server.Items.ElvenCompositeLongbow.v0.json
Server.Items.ElvenDarkShirt.v0.json
Server.Items.ElvenDresserEastAddon.v0.json
Server.Items.ElvenDresserEastDeed.v0.json
Server.Items.ElvenDresserSouthAddon.v0.json
Server.Items.ElvenDresserSouthDeed.v0.json
Server.Items.ElvenForgeAddon.v0.json
Server.Items.ElvenForgeDeed.v0.json
Server.Items.ElvenGlasses.v0.json
Server.Items.ElvenLoveseatEastAddon.v0.json
Server.Items.ElvenLoveseatEastDeed.v0.json
Server.Items.ElvenLoveseatSouthAddon.v0.json
Server.Items.ElvenLoveseatSouthDeed.v0.json
Server.Items.ElvenMachete.v0.json
Server.Items.ElvenPants.v0.json
Server.Items.ElvenPodium.v0.json
Server.Items.ElvenQuiver.v0.json
Server.Items.ElvenReadingChair.v0.json
Server.Items.ElvenShirt.v0.json
Server.Items.ElvenSpellblade.v0.json
Server.Items.ElvenSpinningWheelEastAddon.v0.json
Server.Items.ElvenSpinningWheelEastDeed.v0.json
Server.Items.ElvenSpinningWheelSouthAddon.v0.json
Server.Items.ElvenSpinningWheelSouthDeed.v0.json
Server.Items.ElvenStoveEastAddon.v0.json
Server.Items.ElvenStoveEastDeed.v0.json
Server.Items.ElvenStoveSouthAddon.v0.json
Server.Items.ElvenStoveSouthDeed.v0.json
Server.Items.ElvenWashBasinEastAddon.v0.json
Server.Items.ElvenWashBasinEastDeed.v0.json
Server.Items.ElvenWashBasinSouthAddon.v0.json
Server.Items.ElvenWashBasinSouthDeed.v0.json
Server.Items.EmberStaff.v0.json
Server.Items.EmbroideredOakLeafCloak.v0.json
Server.Items.Emerald.v0.json
Server.Items.EmeraldMace.v0.json
Server.Items.EmptyBentoBox.v0.json
Server.Items.EmptyBookcase.v0.json
Server.Items.EmptyCurvedFlaskE.v0.json
Server.Items.EmptyCurvedFlaskW.v0.json
Server.Items.EmptyJar.v0.json
Server.Items.EmptyJars.v0.json
Server.Items.EmptyJars2.v0.json
Server.Items.EmptyJars3.v0.json
Server.Items.EmptyJars4.v0.json
Server.Items.EmptyOilFlask.v0.json
Server.Items.EmptyPewterBowl.v0.json
Server.Items.EmptyPewterTub.v0.json
Server.Items.EmptyRibbedFlask.v0.json
Server.Items.EmptyToolKit.v0.json
Server.Items.EmptyToolKit2.v0.json
Server.Items.EmptyVial.v0.json
Server.Items.EmptyVialsWRack.v0.json
Server.Items.EmptyWoodenBowl.v0.json
Server.Items.EmptyWoodenTub.v0.json
Server.Items.EnchantedSextant.v0.json
Server.Items.EnchantedSwitch.v0.json
Server.Items.EnchantedTitanLegBone.v0.json
Server.Items.EnchantScroll.v0.json
Server.Items.EndlessDecanter.v0.json
Server.Items.EnergyBoltScroll.v0.json
Server.Items.EnergyFieldScroll.v0.json
Server.Items.EnergyVortexScroll.v0.json
Server.Items.EnhancedBandage.v0.json
Server.Items.EscutcheonDeAriadne.v0.json
Server.Items.EssenceOfBattle.v0.json
Server.Items.EssenceOfWindScroll.v0.json
Server.Items.EternallyCorruptTree.v0.json
Server.Items.EtherealVoyageScroll.v0.json
Server.Items.EthicalHedonism.v0.json
Server.Items.EvilIdolSkull.v0.json
Server.Items.EvilOmenScroll.v0.json
Server.Items.ExcellentIronMaiden.v0.json
Server.Items.ExecutionersAxe.v0.json
Server.Items.ExecutionersCap.v0.json
Server.Items.Exiler.v0.json
Server.Items.ExorcismScroll.v0.json
Server.Items.ExplosionPotion.v0.json
Server.Items.ExplosionScroll.v0.json
Server.Items.EyeOfTheTravesty.v0.json
Server.Items.FabledFishingNet.v0.json
Server.Items.FaerieFire.v0.json
Server.Items.FancyArmoire.v0.json
Server.Items.FancyDrawer.v0.json
Server.Items.FancyDress.v0.json
Server.Items.FancyElvenArmoire.v0.json
Server.Items.FancyElvenTableEastAddon.v0.json
Server.Items.FancyElvenTableEastDeed.v0.json
Server.Items.FancyElvenTableSouthAddon.v0.json
Server.Items.FancyElvenTableSouthDeed.v0.json
Server.Items.FancyShirt.v0.json
Server.Items.FancyWindChimes.v0.json
Server.Items.FancyWoodenChairCushion.v0.json
Server.Items.FandancerFish.v0.json
Server.Items.FangOfRactus.v0.json
Server.Items.FanNorthArtifact.v0.json
Server.Items.FanWestArtifact.v0.json
Server.Items.FarmableCabbage.v0.json
Server.Items.FarmableCarrot.v0.json
Server.Items.FarmableCotton.v0.json
Server.Items.FarmableCrop.v0.json
Server.Items.FarmableFlax.v0.json
Server.Items.FarmableLettuce.v0.json
Server.Items.FarmableOnion.v0.json
Server.Items.FarmablePumpkin.v0.json
Server.Items.FarmableTurnip.v0.json
Server.Items.FarmableWheat.v0.json
Server.Items.Feather.v0.json
Server.Items.FeatheredHat.v0.json
Server.Items.FeeblemindScroll.v0.json
Server.Items.FeebleWand.v0.json
Server.Items.FemaleElvenPlateChest.v0.json
Server.Items.FemaleElvenRobe.v0.json
Server.Items.FemaleKimono.v0.json
Server.Items.FemaleLeafChest.v0.json
Server.Items.FemaleLeatherChest.v0.json
Server.Items.FemalePlateChest.v0.json
Server.Items.FemaleStuddedChest.v0.json
Server.Items.FerretFormTalisman.v0.json
Server.Items.FertileDirt.v0.json
Server.Items.FestiveCactus.v0.json
Server.Items.FeyLeggings.v0.json
Server.Items.FierySpellblade.v0.json
Server.Items.FillableBarrel.v0.json
Server.Items.FillableContainer.v2.json
Server.Items.FillableContainer.v3.json
Server.Items.FillableLargeCrate.v0.json
Server.Items.FillableMetalBox.v0.json
Server.Items.FillableMetalChest.v0.json
Server.Items.FillableMetalGoldenChest.v0.json
Server.Items.FillableSmallCrate.v0.json
Server.Items.FillableWoodenBox.v0.json
Server.Items.FillableWoodenChest.v0.json
Server.Items.FinishedWoodenChest.v0.json
Server.Items.FireballScroll.v0.json
Server.Items.FireballWand.v0.json
Server.Items.Firebomb.v0.json
Server.Items.FireColumnAddon.v0.json
Server.Items.FireColumnTrap.v0.json
Server.Items.FireFieldScroll.v0.json
Server.Items.Fireflies.v0.json
Server.Items.FirefliesDeed.v0.json
Server.Items.FireHorn.v0.json
Server.Items.FireRuby.v0.json
Server.Items.FireworksWand.v0.json
Server.Items.Fish.v0.json
Server.Items.FishBones.v0.json
Server.Items.FishBowl.v0.json
Server.Items.FishingPole.v0.json
Server.Items.FishOilFlask.v0.json
Server.Items.FishSteak.v0.json
Server.Items.Fists.v0.json
Server.Items.FlameSpurtTrap.v0.json
Server.Items.FlamestrikeScroll.v0.json
Server.Items.FlamingHead.v0.json
Server.Items.FlamingHeadDeed.v0.json
Server.Items.Flax.v0.json
Server.Items.FleshRipper.v0.json
Server.Items.FletcherTools.v0.json
Server.Items.FloppyHat.v0.json
Server.Items.FlourMillEastAddon.v0.json
Server.Items.FlourMillEastDeed.v0.json
Server.Items.FlourMillSouthAddon.v0.json
Server.Items.FlourMillSouthDeed.v0.json
Server.Items.FlourSifter.v0.json
Server.Items.FlowerGarland.v0.json
Server.Items.FlowersArtifact.v0.json
Server.Items.FluteOfRenewal.v0.json
Server.Items.FoldedSteelGlasses.v0.json
Server.Items.Food.v0.json
Server.Items.FootStool.v0.json
Server.Items.Forge.v0.json
Server.Items.ForgeComponent.v0.json
Server.Items.ForgedMetal.v0.json
Server.Items.Fork.v0.json
Server.Items.ForkLeft.v0.json
Server.Items.ForkRight.v0.json
Server.Items.FormalShirt.v0.json
Server.Items.FountainAddon.v0.json
Server.Items.FountainDeed.v0.json
Server.Items.FountainOfLife.v1.json
Server.Items.FountainOfLifeDeed.v0.json
Server.Items.FragmentOfAMap.v0.json
Server.Items.FragmentOfAMapDelivery.v0.json
Server.Items.FrenchBread.v0.json
Server.Items.FriedEggs.v0.json
Server.Items.FriendOfTheLibraryToken.v0.json
Server.Items.FriendsOfTheLibraryApplication.v0.json
Server.Items.Froe.v0.json
Server.Items.FropozJournal.v0.json
Server.Items.Frostbringer.v0.json
Server.Items.FrostwoodBoard.v0.json
Server.Items.FrostwoodLog.v0.json
Server.Items.FrozenLongbow.v0.json
Server.Items.FruitBasket.v0.json
Server.Items.FruitPie.v0.json
Server.Items.Fukiya.v0.json
Server.Items.FukiyaDarts.v0.json
Server.Items.FullApron.v0.json
Server.Items.FullBookcase.v0.json
Server.Items.FullMoonFish.v0.json
Server.Items.FullVialsWRack.v0.json
Server.Items.FurBoots.v0.json
Server.Items.FurCape.v0.json
Server.Items.FurnitureDyeTub.v1.json
Server.Items.FurSarong.v0.json
Server.Items.Futon.v0.json
Server.Items.GamanHorns.v0.json
Server.Items.GamblingStone.v0.json
Server.Items.GargishClothArmsType1.v0.json
Server.Items.GargishClothArmsType2.v0.json
Server.Items.GargishClothChestType1.v0.json
Server.Items.GargishClothChestType2.v0.json
Server.Items.GargishClothKiltType1.v0.json
Server.Items.GargishClothKiltType2.v0.json
Server.Items.GargishClothLegsType1.v0.json
Server.Items.GargishClothLegsType2.v0.json
Server.Items.GargishLeatherArmsType1.v0.json
Server.Items.GargishLeatherArmsType2.v0.json
Server.Items.GargishLeatherChestType1.v0.json
Server.Items.GargishLeatherChestType2.v0.json
Server.Items.GargishLeatherKiltType1.v0.json
Server.Items.GargishLeatherKiltType2.v0.json
Server.Items.GargishLeatherLegsType1.v0.json
Server.Items.GargishLeatherLegsType2.v0.json
Server.Items.GargishLeatherWingArmor.v0.json
Server.Items.GargishStoneArmsType1.v0.json
Server.Items.GargishStoneArmsType2.v0.json
Server.Items.GargishStoneChestType1.v0.json
Server.Items.GargishStoneChestType2.v0.json
Server.Items.GargishStoneKiltType1.v0.json
Server.Items.GargishStoneKiltType2.v0.json
Server.Items.GargishStoneLegsType1.v0.json
Server.Items.GargishStoneLegsType2.v0.json
Server.Items.GargishStuddedArmsType1.v0.json
Server.Items.GargishStuddedArmsType2.v0.json
Server.Items.GargishStuddedChestType1.v0.json
Server.Items.GargishStuddedChestType2.v0.json
Server.Items.GargishStuddedKiltType1.v0.json
Server.Items.GargishStuddedKiltType2.v0.json
Server.Items.GargishStuddedLegsType1.v0.json
Server.Items.GargishStuddedLegsType2.v0.json
Server.Items.GargishTalwar.v0.json
Server.Items.GargishWoodenShield.v0.json
Server.Items.GargoylesPickaxe.v0.json
Server.Items.Garlic.v0.json
Server.Items.GasTrap.v0.json
Server.Items.GateTravelScroll.v0.json
Server.Items.GauntletsOfNobility.v0.json
Server.Items.Gears.v0.json
Server.Items.GemmedCirclet.v0.json
Server.Items.GenericHouseDoor.v0.json
Server.Items.GervisSatchel.v0.json
Server.Items.GhostShipAnchor.v0.json
Server.Items.GiantReplicaAcorn.v0.json
Server.Items.GiantSpikeTrap.v0.json
Server.Items.GiantWeb1.v0.json
Server.Items.GiantWeb2.v0.json
Server.Items.GiantWeb3.v0.json
Server.Items.GiantWeb4.v0.json
Server.Items.GiantWeb5.v0.json
Server.Items.GiantWeb6.v0.json
Server.Items.GiftBox.v0.json
Server.Items.GiftBoxAngel.v0.json
Server.Items.GiftBoxCube.v0.json
Server.Items.GiftBoxCylinder.v0.json
Server.Items.GiftBoxNeon.v0.json
Server.Items.GiftBoxOctogon.v0.json
Server.Items.GiftBoxRectangle.v0.json
Server.Items.GiftForArielle.v0.json
Server.Items.GiftOfLifeScroll.v0.json
Server.Items.GiftOfRenewalScroll.v0.json
Server.Items.GildedDress.v0.json
Server.Items.GildedWoodenChest.v0.json
Server.Items.GingerBreadCookie.v0.json
Server.Items.GingerBreadHouseAddon.v0.json
Server.Items.GingerBreadHouseDeed.v0.json
Server.Items.Ginseng.v0.json
Server.Items.GlacialStaff.v0.json
Server.Items.GladiatorsCollar.v0.json
Server.Items.Glass.v0.json
Server.Items.GlassblowingBook.v0.json
Server.Items.GlassBottle.v0.json
Server.Items.GlassMug.v0.json
Server.Items.GlassStaff.v0.json
Server.Items.GlassSword.v0.json
Server.Items.Globe.v0.json
Server.Items.GlobOfMonstreousInterredGrizzle.v0.json
Server.Items.GlovesOfSafeguarding.v0.json
Server.Items.GlovesOfThePugilist.v0.json
Server.Items.GlovesOfTheSun.v0.json
Server.Items.GMRobe.v0.json
Server.Items.GnarledStaff.v0.json
Server.Items.Goblet.v0.json
Server.Items.Gold.v0.json
Server.Items.GoldBeadNecklace.v0.json
Server.Items.GoldBracelet.v0.json
Server.Items.GoldBricks.v0.json
Server.Items.GoldEarrings.v0.json
Server.Items.GoldenBroadtail.v0.json
Server.Items.GoldenDecorativeRugAddon.v0.json
Server.Items.GoldenDecorativeRugDeed.v0.json
Server.Items.GoldGranite.v0.json
Server.Items.GoldIngot.v0.json
Server.Items.GoldNecklace.v0.json
Server.Items.GoldOre.v0.json
Server.Items.GoldRing.v0.json
Server.Items.GoldWire.v0.json
Server.Items.GozaMatEastAddon.v0.json
Server.Items.GozaMatEastDeed.v0.json
Server.Items.GozaMatSouthAddon.v0.json
Server.Items.GozaMatSouthDeed.v0.json
Server.Items.GrammarOfOrcish.v0.json
Server.Items.Granite.v0.json
Server.Items.Grapes.v0.json
Server.Items.GraveDust.v0.json
Server.Items.GrayBrickFireplaceEastAddon.v0.json
Server.Items.GrayBrickFireplaceEastDeed.v0.json
Server.Items.GrayBrickFireplaceSouthAddon.v0.json
Server.Items.GrayBrickFireplaceSouthDeed.v0.json
Server.Items.GreaterAgilityPotion.v0.json
Server.Items.GreaterConflagrationPotion.v0.json
Server.Items.GreaterConfusionBlastPotion.v0.json
Server.Items.GreaterCurePotion.v0.json
Server.Items.GreaterExplosionPotion.v0.json
Server.Items.GreaterHealPotion.v0.json
Server.Items.GreaterHealScroll.v0.json
Server.Items.GreaterHealWand.v0.json
Server.Items.GreaterPoisonPotion.v0.json
Server.Items.GreaterStrengthPotion.v0.json
Server.Items.GreenBeaker.v0.json
Server.Items.GreenBottle.v0.json
Server.Items.GreenCurvedFlask.v0.json
Server.Items.GreenDriedFlowers.v0.json
Server.Items.GreenGourd.v0.json
Server.Items.GreenMarbleFloor.v0.json
Server.Items.GreenScales.v0.json
Server.Items.GreenStocking.v0.json
Server.Items.GreenTea.v0.json
Server.Items.GreenTeaBasket.v0.json
Server.Items.GreenThorns.v0.json
Server.Items.GreenThornsSHTeleporter.v0.json
Server.Items.GreyFlagstones.v0.json
Server.Items.GreyMarbleFloor.v0.json
Server.Items.GreySlateFloor.v0.json
Server.Items.GrimmochJournal1.v0.json
Server.Items.GrimmochJournal2.v0.json
Server.Items.GrimmochJournal3.v0.json
Server.Items.GrimmochJournal6.v0.json
Server.Items.GrimmochJournal7.v0.json
Server.Items.GrimmochJournal11.v0.json
Server.Items.GrimmochJournal14.v0.json
Server.Items.GrimmochJournal17.v0.json
Server.Items.GrimmochJournal23.v0.json
Server.Items.GrimWarning.v0.json
Server.Items.GrizzledBones.v0.json
Server.Items.GrizzledMareStatuette.v0.json
Server.Items.GrizzledSkullCollection.v0.json
Server.Items.GrobusFur.v0.json
Server.Items.GruesomeStandardArtifact.v0.json
Server.Items.GuantletsOfAnger.v0.json
Server.Items.GuardianAxe.v0.json
Server.Items.GuideToGuilds.v0.json
Server.Items.GuildDeed.v0.json
Server.Items.Guildstone.v4.json
Server.Items.GuildstoneDeed.v0.json
Server.Items.GuildTeleporter.v0.json
Server.Items.Guillotine.v0.json
Server.Items.GuillotineAddon.v0.json
Server.Items.GuillotineComponent.v0.json
Server.Items.GuillotineDeed.v0.json
Server.Items.GwennosHarp.v0.json
Server.Items.HagCauldron.v0.json
Server.Items.HagStew.v0.json
Server.Items.HailStormScroll.v0.json
Server.Items.HairDye.v0.json
Server.Items.HairRestylingDeed.v0.json
Server.Items.Hakama.v0.json
Server.Items.HakamaShita.v0.json
Server.Items.Halberd.v0.json
Server.Items.HalfApron.v0.json
Server.Items.HalfEmptyJar.v0.json
Server.Items.HalfEmptyJars.v0.json
Server.Items.HallowedSpellbook.v0.json
Server.Items.HalloweenGuillotine.v0.json
Server.Items.HalloweenPumpkin.v0.json
Server.Items.Ham.v0.json
Server.Items.Hammer.v0.json
Server.Items.HammerOfHephaestus.v0.json
Server.Items.HammerPick.v0.json
Server.Items.HangingAxesAddon.v0.json
Server.Items.HangingAxesDeed.v0.json
Server.Items.HangingLantern.v0.json
Server.Items.HangingSkeleton.v0.json
Server.Items.HangingSkeletonDeed.v0.json
Server.Items.HangingSwordsAddon.v0.json
Server.Items.HangingSwordsDeed.v0.json
Server.Items.HanzosBow.v0.json
Server.Items.HardenedWildStaff.v0.json
Server.Items.HargroveSatchel.v0.json
Server.Items.HarmScroll.v0.json
Server.Items.HarmWand.v0.json
Server.Items.Harp.v0.json
Server.Items.HarrowerGate.v0.json
Server.Items.HarvestWine.v0.json
Server.Items.Hatchet.v0.json
Server.Items.HatOfTheMagi.v0.json
Server.Items.HaunterMirrorAddon.v0.json
Server.Items.HaunterMirrorComponent.v0.json
Server.Items.HaunterMirrorDeed.v0.json
Server.Items.Head.v1.json
Server.Items.Head.v2.json
Server.Items.HealersTouch.v0.json
Server.Items.HealingStoneScroll.v0.json
Server.Items.HealPotion.v0.json
Server.Items.HealScroll.v0.json
Server.Items.HealWand.v0.json
Server.Items.HearthOfHomeFire.v0.json
Server.Items.HearthOfHomeFireDeed.v0.json
Server.Items.HeartOfTheLion.v0.json
Server.Items.Heartseeker.v0.json
Server.Items.HeartShapedBox.v0.json
Server.Items.HeartwoodBoard.v0.json
Server.Items.HeartwoodLog.v0.json
Server.Items.HeaterShield.v0.json
Server.Items.HeatingStand.v0.json
Server.Items.HeavyCrossbow.v0.json
Server.Items.HeavyOrnateAxe.v0.json
Server.Items.HeavyPlateJingasa.v0.json
Server.Items.Helmet.v0.json
Server.Items.HelmOfInsight.v0.json
Server.Items.HelmOfSwiftness.v0.json
Server.Items.HeritageToken.v0.json
Server.Items.HideChest.v0.json
Server.Items.HideFemaleChest.v0.json
Server.Items.HideGloves.v0.json
Server.Items.HideGorget.v0.json
Server.Items.HidePants.v0.json
Server.Items.HidePauldrons.v0.json
Server.Items.Hides.v0.json
Server.Items.Hinge.v0.json
Server.Items.HintItem.v1.json
Server.Items.Hold.v0.json
Server.Items.Holiday.AngelDecoration.v0.json
Server.Items.Holiday.BasePaintedMask.v0.json
Server.Items.Holiday.PaintedDaemonMask.v0.json
Server.Items.Holiday.PaintedEvilClownMask.v0.json
Server.Items.Holiday.PaintedEvilJesterMask.v0.json
Server.Items.Holiday.PaintedPlagueMask.v0.json
Server.Items.Holiday.PaintedPorcelainMask.v0.json
Server.Items.Holiday.RockingHorse.v0.json
Server.Items.HolidayBell.v0.json
Server.Items.HolidayPottedPlant.v0.json
Server.Items.HolidayTimepiece.v0.json
Server.Items.HolidayTree.Ornament.v0.json
Server.Items.HolidayTree.Ornament.v1.json
Server.Items.HolidayTree.TreeTrunk.v0.json
Server.Items.HolidayTree.TreeTrunk.v1.json
Server.Items.HolidayTree.v2.json
Server.Items.HolidayTreeDeed.v0.json
Server.Items.HollowPrism.v0.json
Server.Items.HolyKnightsBreastplate.v0.json
Server.Items.HolySword.v0.json
Server.Items.HoneydewMelon.v0.json
Server.Items.HonorableSwords.v0.json
Server.Items.HoodedShroudOfShadows.v0.json
Server.Items.HornedHides.v0.json
Server.Items.HornedLeather.v0.json
Server.Items.HornedTribalMask.v0.json
Server.Items.HornOfTheDreadhorn.v0.json
Server.Items.HorrificBeastScroll.v0.json
Server.Items.HorseShoes.v0.json
Server.Items.Hourglass.v0.json
Server.Items.HourglassAni.v0.json
Server.Items.HouseLadderAddon.v0.json
Server.Items.HouseLadderDeed.v0.json
Server.Items.HousePlacementTool.v0.json
Server.Items.HouseRaffleDeed.v0.json
Server.Items.HouseRaffleStone.v4.json fix: Fixes dirty-tracking gaps in generated content: setters, sub-object owners, BaseVendor (#2609) 2026-09-06 09:43:44 -07:00
Server.Items.HouseTeleporter.v2.json
Server.Items.HoveringWisp.v0.json
Server.Items.HuntersHeaddress.v0.json
Server.Items.HydraScale.v0.json
Server.Items.IcicleLargeEast.v0.json
Server.Items.IcicleLargeSouth.v0.json
Server.Items.IcicleMedEast.v0.json
Server.Items.IcicleMedSouth.v0.json
Server.Items.IcicleSmallEast.v0.json
Server.Items.IcicleSmallSouth.v0.json
Server.Items.IcyHeart.v0.json
Server.Items.IcyPatch.v0.json
Server.Items.IcyScimitar.v0.json
Server.Items.IcySpellblade.v0.json
Server.Items.IDWand.v0.json
Server.Items.ImmolatingWeaponScroll.v0.json
Server.Items.IncognitoScroll.v0.json
Server.Items.IndecipherableMap.v0.json
Server.Items.IngotStone.v0.json
Server.Items.InquisitorsResolution.v0.json
Server.Items.Inshave.v0.json
Server.Items.InteractionTeleporter.v0.json
Server.Items.InteriorDecorator.v0.json
Server.Items.InvisibilityPotion.v0.json
Server.Items.InvisibilityScroll.v0.json
Server.Items.IolosLute.v0.json
Server.Items.IronGate.v0.json
Server.Items.IronGateShort.v0.json
Server.Items.IronIngot.v0.json
Server.Items.IronMaidenAddon.v0.json
Server.Items.IronMaidenDeed.v0.json
Server.Items.IronOre.v0.json
Server.Items.IronWire.v0.json
Server.Items.IronwoodCrown.v0.json
Server.Items.IslandStatue.v0.json
Server.Items.JackalsCollar.v0.json
Server.Items.JackOLantern.v0.json
Server.Items.JacobsPickaxe.v0.json
Server.Items.JadeStatueMaker.v0.json
Server.Items.JarHoney.v0.json
Server.Items.Jars2.v0.json
Server.Items.Jars3.v0.json
Server.Items.Jars4.v0.json
Server.Items.JellyBeans.v0.json
Server.Items.Jellyfish.v0.json
Server.Items.JesterHat.v0.json
Server.Items.JesterHatofChuckles.v0.json
Server.Items.JesterSuit.v0.json
Server.Items.JeweledFiligree.v0.json
Server.Items.JinBaori.v0.json
Server.Items.JocklesQuicksword.v0.json
Server.Items.JointingPlane.v0.json
Server.Items.Jug.v0.json
Server.Items.JukaBow.v0.json
Server.Items.KaburJournal.v0.json
Server.Items.Kama.v0.json
Server.Items.Kamishimo.v0.json
Server.Items.Kasa.v0.json
Server.Items.KasaOfTheRajin.v0.json
Server.Items.Katana.v0.json
Server.Items.Keg.v0.json
Server.Items.Key.v0.json
Server.Items.KeyRing.v1.json
Server.Items.KeywordTeleporter.v0.json
Server.Items.KhaldunPitTeleporter.v0.json
Server.Items.KillerFrog.v0.json
Server.Items.Kilt.v0.json
Server.Items.Kindling.v0.json
Server.Items.KirinBrains.v0.json
Server.Items.Knife.v0.json
Server.Items.KnifeLeft.v0.json
Server.Items.KnifeRight.v0.json
Server.Items.KnightsWarCleaver.v0.json
Server.Items.Kryss.v0.json
Server.Items.LadyPortrait1.v0.json
Server.Items.LadyPortrait2.v0.json
Server.Items.Lajatang.v0.json
Server.Items.LambLeg.v0.json
Server.Items.LampPost1.v0.json
Server.Items.LampPost2.v0.json
Server.Items.LampPost3.v0.json
Server.Items.LampPostArtifact.v0.json
Server.Items.Lance.v0.json
Server.Items.Lantern.v0.json
Server.Items.LanternOfSouls.v0.json
Server.Items.LapHarp.v0.json
Server.Items.LardOfParoxysmus.v0.json
Server.Items.LargeBagBall.v0.json
Server.Items.LargeBattleAxe.v0.json
Server.Items.LargeBedEastAddon.v0.json
Server.Items.LargeBedEastDeed.v0.json
Server.Items.LargeBedSouthAddon.v0.json
Server.Items.LargeBedSouthDeed.v0.json
Server.Items.LargeCrate.v0.json
Server.Items.LargeEmptyFlask.v0.json
Server.Items.LargeEmptyPot.v0.json
Server.Items.LargeFishingNetAddon.v0.json
Server.Items.LargeFishingNetComponent.v0.json
Server.Items.LargeFishingNetDeed.v0.json
Server.Items.LargeFlask.v0.json
Server.Items.LargeForgeEast.InternalItem.v0.json
Server.Items.LargeForgeEast.InternalItem2.v0.json
Server.Items.LargeForgeEast.v0.json
Server.Items.LargeForgeEastAddon.v0.json
Server.Items.LargeForgeEastDeed.v0.json
Server.Items.LargeForgeSouthAddon.v0.json
Server.Items.LargeForgeSouthDeed.v0.json
Server.Items.LargeForgeWest.InternalItem.v0.json
Server.Items.LargeForgeWest.InternalItem2.v0.json
Server.Items.LargeForgeWest.v0.json
Server.Items.LargePainting.v0.json
Server.Items.LargeStoneTableEastAddon.v0.json
Server.Items.LargeStoneTableEastDeed.v0.json
Server.Items.LargeStoneTableSouthAddon.v0.json
Server.Items.LargeStoneTableSouthDeed.v0.json
Server.Items.LargeTable.v0.json
Server.Items.LargeVase.v0.json
Server.Items.LargeVioletFlask.v0.json
Server.Items.LargeYellowFlask.v0.json
Server.Items.LavaTile.v0.json
Server.Items.LeafArms.v0.json
Server.Items.Leafblade.v0.json
Server.Items.LeafbladeOfEase.v0.json
Server.Items.LeafChest.v0.json
Server.Items.LeafGloves.v1.json
Server.Items.LeafGorget.v0.json
Server.Items.LeafLegs.v0.json
Server.Items.LeafTonlet.v0.json
Server.Items.Leather.v0.json
Server.Items.LeatherArms.v0.json
Server.Items.LeatherBustierArms.v0.json
Server.Items.LeatherCap.v0.json
Server.Items.LeatherChest.v0.json
Server.Items.LeatherDo.v0.json
Server.Items.LeatherDyeTub.v1.json
Server.Items.LeatherGloves.v2.json
Server.Items.LeatherGlovesOfMining.v0.json
Server.Items.LeatherGorget.v0.json
Server.Items.LeatherHaidate.v0.json
Server.Items.LeatherHiroSode.v0.json
Server.Items.LeatherJingasa.v0.json
Server.Items.LeatherLegs.v0.json
Server.Items.LeatherMempo.v0.json
Server.Items.LeatherNinjaBelt.v0.json
Server.Items.LeatherNinjaHood.v0.json
Server.Items.LeatherNinjaJacket.v0.json
Server.Items.LeatherNinjaMitts.v0.json
Server.Items.LeatherNinjaPants.v0.json
Server.Items.LeatherShorts.v0.json
Server.Items.LeatherSkirt.v0.json
Server.Items.LeatherSuneate.v0.json
Server.Items.LeatherTunicArtifact.v0.json
Server.Items.LeftArm.v0.json
Server.Items.LeftLeg.v0.json
Server.Items.LegacyOfTheDreadLord.v0.json
Server.Items.LeggingsOfBane.v0.json
Server.Items.LeggingsOfEmbers.v0.json
Server.Items.LegsOfStability.v0.json
Server.Items.Lemon.v0.json
Server.Items.Lemons.v0.json
Server.Items.LesserCurePotion.v0.json
Server.Items.LesserExplosionPotion.v0.json
Server.Items.LesserHealPotion.v0.json
Server.Items.LesserPigmentsOfTokuno.v0.json
Server.Items.LesserPoisonPotion.v0.json
Server.Items.Lettuce.v0.json
Server.Items.LeurociansMempoOfFortune.v0.json
Server.Items.LibraryBookcase.v0.json
Server.Items.LichFormScroll.v0.json
Server.Items.LieutenantOfTheBritannianRoyalGuard.v0.json
Server.Items.LifeOfATravellingMinstrel.v0.json
Server.Items.LightFlowerTapestryEastAddon.v0.json
Server.Items.LightFlowerTapestryEastDeed.v0.json
Server.Items.LightFlowerTapestrySouthAddon.v0.json
Server.Items.LightFlowerTapestrySouthDeed.v0.json
Server.Items.LightningScroll.v0.json
Server.Items.LightningWand.v0.json
Server.Items.LightOfTheWinterSolstice.v0.json
Server.Items.LightOfWayGlasses.v0.json
Server.Items.LightPlateJingasa.v0.json
Server.Items.LightSource.v0.json
Server.Items.LightweightShortbow.v0.json
Server.Items.LightWoodDoor.v0.json
Server.Items.LightWoodGate.v0.json
Server.Items.LightYarn.v0.json
Server.Items.LightYarnUnraveled.v0.json
Server.Items.Lime.v0.json
Server.Items.Limes.v0.json
Server.Items.LocalizedAddonComponent.v0.json
Server.Items.LocalizedContainerComponent.v0.json
Server.Items.LocalizedSign.v0.json
Server.Items.LocalizedStatic.v0.json
Server.Items.LocalMap.v0.json
Server.Items.LockableContainer.v0.json
Server.Items.Lockpick.v0.json
Server.Items.Lockpicks.v0.json
Server.Items.Log.v2.json
Server.Items.Lollipops.v0.json
Server.Items.LongbowOfMight.v0.json
Server.Items.LongClawCrab.v0.json
Server.Items.LongFlask.v0.json
Server.Items.LongPants.v0.json
Server.Items.Longsword.v0.json
Server.Items.LoomEastAddon.v0.json
Server.Items.LoomEastDeed.v0.json
Server.Items.LoomSouthAddon.v0.json
Server.Items.LoomSouthDeed.v0.json
Server.Items.LordBlackthorneSuit.v0.json
Server.Items.LordBritishSuit.v0.json
Server.Items.LOSBlocker.v0.json
Server.Items.LowelSatchel.v0.json
Server.Items.LtBlueCurvedFlask.v0.json
Server.Items.Luckblade.v0.json
Server.Items.LuckyDagger.v0.json
Server.Items.LuckyNecklace.v0.json
Server.Items.LuminescentFungi.v0.json
Server.Items.LuminousRuneBlade.v0.json
Server.Items.LunaLance.v0.json
Server.Items.Lute.v0.json
Server.Items.LyricalGlasses.v0.json
Server.Items.LysanderNotebook1.v0.json
Server.Items.LysanderNotebook2.v0.json
Server.Items.LysanderNotebook3.v0.json
Server.Items.LysanderNotebook7.v0.json
Server.Items.LysanderNotebook8.v0.json
Server.Items.LysanderNotebook11.v0.json
Server.Items.Mace.v0.json
Server.Items.MaceShieldGlasses.v0.json
Server.Items.MacheteOfDefense.v0.json
Server.Items.MagekillerAssassinSpike.v0.json
Server.Items.MagekillerLeafblade.v0.json
Server.Items.MagesRuneBlade.v0.json
Server.Items.MagicalShortbow.v0.json
Server.Items.MagicArrowScroll.v0.json
Server.Items.MagicArrowWand.v0.json
Server.Items.MagicLockScroll.v0.json
Server.Items.MagicReflectScroll.v0.json
Server.Items.MagicTrapScroll.v0.json
Server.Items.MagicUnTrapScroll.v0.json
Server.Items.MagicWand.v0.json
Server.Items.MagicWizardsHat.v0.json
Server.Items.MajorTradeAssociation.v0.json
Server.Items.MakotoCourtesanFish.v0.json
Server.Items.MaleElvenRobe.v0.json
Server.Items.MaleKimono.v0.json
Server.Items.MalletAndChisel.v0.json
Server.Items.ManaDrainScroll.v0.json
Server.Items.ManaDrainWand.v0.json
Server.Items.ManaVampireScroll.v0.json
Server.Items.MandrakeRoot.v0.json
Server.Items.MangledHeadOfDreadhorn.v0.json
Server.Items.ManPortrait1.v0.json
Server.Items.ManPortrait2.v0.json
Server.Items.ManStatuetteEastArtifact.v0.json
Server.Items.ManStatuetteSouthArtifact.v0.json
Server.Items.MapItem.v1.json
Server.Items.MapleArmoire.v0.json
Server.Items.MapmakersPen.v0.json
Server.Items.MarbleFloor.v0.json
Server.Items.MarblePavers.v0.json
Server.Items.MarbleStatueMaker.v0.json
Server.Items.MaritimeGlasses.v0.json
Server.Items.MarkContainer.v0.json
Server.Items.MarkContainer.v1.json
Server.Items.MarkScroll.v0.json
Server.Items.MasonryBook.v0.json
Server.Items.MassCurseScroll.v0.json
Server.Items.MassDispelScroll.v0.json
Server.Items.MassSleepScroll.v0.json
Server.Items.Maul.v0.json
Server.Items.MeatPie.v0.json
Server.Items.MediumCrate.v0.json
Server.Items.MediumFlask.v0.json
Server.Items.MediumStoneTableEastAddon.v0.json
Server.Items.MediumStoneTableEastDeed.v0.json
Server.Items.MediumStoneTableSouthAddon.v0.json
Server.Items.MediumStoneTableSouthDeed.v0.json
Server.Items.MediumStretchedHideEastAddon.v0.json
Server.Items.MediumStretchedHideEastDeed.v0.json
Server.Items.MediumStretchedHideSouthAddon.v0.json
Server.Items.MediumStretchedHideSouthDeed.v0.json
Server.Items.MediumWoodDoor.v0.json
Server.Items.MelisandesCorrodedHatchet.v0.json
Server.Items.MelisandesFermentedWine.v0.json
Server.Items.MelisandesHairDye.v0.json
Server.Items.MeltedWax.v0.json
Server.Items.MessageInABottle.v0.json
Server.Items.MetalBox.v0.json
Server.Items.MetalChest.v0.json
Server.Items.MetalDoor.v0.json
Server.Items.MetalDoor2.v0.json
Server.Items.MetalGoldenChest.v0.json
Server.Items.MetalGoldenPuzzleChest.v0.json
Server.Items.MetalGoldenTreasureChest.v0.json
Server.Items.MetalHouseDoor.v0.json
Server.Items.MetalKiteShield.v0.json
Server.Items.MetallicClothDyetub.v0.json
Server.Items.MetallicLeatherDyeTub.v0.json
Server.Items.MetalPigmentsOfTokuno.v0.json
Server.Items.MetalShield.v0.json
Server.Items.MetalTreasureChest.v0.json
Server.Items.MeteorSwarmScroll.v0.json
Server.Items.MidnightBracers.v0.json
Server.Items.MilkChocolate.v0.json
Server.Items.MindBlastScroll.v0.json
Server.Items.MindRotScroll.v0.json
Server.Items.MiniatureMushroom.v0.json
Server.Items.MiniHouseAddon.v1.json
Server.Items.MiniHouseDeed.v1.json
Server.Items.MiningCart.v3.json
Server.Items.MiningCartDeed.v0.json
Server.Items.MinocBlueFish.v0.json
Server.Items.MinotaurArtifact.v0.json
Server.Items.MinotaurHedge.v0.json
Server.Items.MinotaurStatue.v0.json
Server.Items.MinotaurStatueDeed.v0.json
Server.Items.MirrorOfPurification.v0.json
Server.Items.MischiefMaker.v0.json
Server.Items.MisoSoup.v0.json
Server.Items.MistletoeAddon.v0.json
Server.Items.MistletoeDeed.v0.json
Server.Items.MonkRobe.v0.json
Server.Items.MonsterousInterredGrizzleMaggots.v0.json
Server.Items.MonsterStatuette.v0.json
Server.Items.Moongate.v0.json
Server.Items.Moonstone.v1.json
Server.Items.MoonstoneGate.v0.json
Server.Items.MorphItem.v0.json
Server.Items.MortarPestle.v0.json
Server.Items.MouldingPlane.v0.json
Server.Items.MountedDreadHorn.v0.json
Server.Items.MountedPixieBlueAddon.v0.json
Server.Items.MountedPixieBlueComponent.v0.json
Server.Items.MountedPixieBlueDeed.v0.json
Server.Items.MountedPixieGreenAddon.v0.json
Server.Items.MountedPixieGreenComponent.v0.json
Server.Items.MountedPixieGreenDeed.v0.json
Server.Items.MountedPixieLimeAddon.v0.json
Server.Items.MountedPixieLimeComponent.v0.json
Server.Items.MountedPixieLimeDeed.v0.json
Server.Items.MountedPixieOrangeAddon.v0.json
Server.Items.MountedPixieOrangeComponent.v0.json
Server.Items.MountedPixieOrangeDeed.v0.json
Server.Items.MountedPixieWhiteAddon.v0.json
Server.Items.MountedPixieWhiteComponent.v0.json
Server.Items.MountedPixieWhiteDeed.v0.json
Server.Items.MrPlainsCookies.v0.json
Server.Items.Muculent.v0.json
Server.Items.Muffins.v0.json
Server.Items.MuggSatchel.v0.json
Server.Items.MurkyMilk.v0.json
Server.Items.MushroomTrap.v0.json
Server.Items.MysticalShortbow.v0.json
Server.Items.MysticSpellbook.v0.json
Server.Items.MyStory.v0.json
Server.Items.Nails.v0.json
Server.Items.NameChangeDeed.v0.json
Server.Items.NatureFuryScroll.v0.json
Server.Items.Necklace.v0.json
Server.Items.NecromancerSpellbook.v0.json
Server.Items.NecromanticGlasses.v0.json
Server.Items.NetherBoltScroll.v0.json
Server.Items.NetherCycloneScroll.v0.json
Server.Items.NewAquariumBook.v0.json
Server.Items.NewPlayerTicket.v0.json
Server.Items.NibbetSatchel.v0.json
Server.Items.Nightshade.v0.json
Server.Items.NightSightPotion.v0.json
Server.Items.NightSightScroll.v0.json
Server.Items.NightsKiss.v0.json
Server.Items.Nightstand.v0.json
Server.Items.NinjaTabi.v0.json
Server.Items.NoDachi.v0.json
Server.Items.NorseHelm.v0.json
Server.Items.NotarizedApplication.v0.json
Server.Items.NougatSwirl.v0.json
Server.Items.NoxCrystal.v0.json
Server.Items.NoxRangersHeavyCrossbow.v0.json
Server.Items.NujelmHoneyFish.v0.json
Server.Items.Nunchaku.v0.json
Server.Items.OakBoard.v0.json
Server.Items.OakLog.v0.json
Server.Items.Obelisk.v0.json
Server.Items.Obi.v0.json
Server.Items.OblivionsNeedle.v0.json
Server.Items.OfficialSealingWax.v0.json
Server.Items.OilCloth.v0.json
Server.Items.OilFlask.v0.json
Server.Items.Onion.v0.json
Server.Items.OpenCoconut.v0.json
Server.Items.OrangePetals.v0.json
Server.Items.OrcChieftainHelm.v0.json
Server.Items.OrcHelm.v0.json
Server.Items.OrcishKinMask.v0.json
Server.Items.OrcishMachete.v0.json
Server.Items.OrcishVisage.v0.json
Server.Items.OrdersFromMinax.v0.json
Server.Items.OrderShield.v0.json
Server.Items.OrigamiButterfly.v0.json
Server.Items.OrigamiFish.v0.json
Server.Items.OrigamiFrog.v0.json
Server.Items.OrigamiPaper.v0.json
Server.Items.OrigamiShape.v0.json
Server.Items.OrigamiSongbird.v0.json
Server.Items.OrigamiSwan.v0.json
Server.Items.OrnamentOfTheMagician.v0.json
Server.Items.OrnateAxe.v0.json
Server.Items.OrnateCrownOfTheHarrower.v0.json
Server.Items.OrnateElvenChair.v0.json
Server.Items.OrnateElvenChestEastAddon.v0.json
Server.Items.OrnateElvenChestEastDeed.v0.json
Server.Items.OrnateElvenChestSouthAddon.v0.json
Server.Items.OrnateElvenChestSouthDeed.v0.json
Server.Items.OrnateElvenTableEastAddon.v0.json
Server.Items.OrnateElvenTableEastDeed.v0.json
Server.Items.OrnateElvenTableSouthAddon.v0.json
Server.Items.OrnateElvenTableSouthDeed.v0.json
Server.Items.OrnateWoodenChest.v0.json
Server.Items.OssianGrimoire.v0.json
Server.Items.OverseerSunderedBlade.v0.json
Server.Items.Pacify.v0.json
Server.Items.PadsOfTheCuSidhe.v0.json
Server.Items.PainSpikeScroll.v0.json
Server.Items.Painting1NorthArtifact.v0.json
Server.Items.Painting1WestArtifact.v0.json
Server.Items.Painting2NorthArtifact.v0.json
Server.Items.Painting2WestArtifact.v0.json
Server.Items.Painting3Artifact.v0.json
Server.Items.Painting4NorthArtifact.v0.json
Server.Items.Painting4WestArtifact.v0.json
Server.Items.Painting5NorthArtifact.v0.json
Server.Items.Painting5WestArtifact.v0.json
Server.Items.Painting6NorthArtifact.v0.json
Server.Items.Painting6WestArtifact.v0.json
Server.Items.PaintsAndBrush.v0.json
Server.Items.PaperLantern.v0.json
Server.Items.ParagonChest.v0.json
Server.Items.ParalyzeFieldScroll.v0.json
Server.Items.ParalyzeScroll.v0.json
Server.Items.ParasiticPlant.v0.json
Server.Items.ParasiticPotion.v0.json
Server.Items.ParoxysmusCorrodedStein.v0.json
Server.Items.ParoxysmusDinner.v0.json
Server.Items.ParrotPerchAddon.v0.json
Server.Items.ParrotPerchDeed.v0.json
Server.Items.Peach.v0.json
Server.Items.PeachCobbler.v0.json
Server.Items.PeachTreeAddon.v0.json
Server.Items.PeachTreeDeed.v0.json
Server.Items.PeachTrunkAddon.v0.json
Server.Items.PeachTrunkDeed.v0.json
Server.Items.Pear.v0.json
Server.Items.PeasantsBokuto.v0.json
Server.Items.PeculiarFish.v0.json
Server.Items.PenAndInk.v0.json
Server.Items.PendantOfTheMagi.v0.json
Server.Items.PentagramAddon.v0.json
Server.Items.PentagramDeed.v0.json
Server.Items.PeppercornFishsteak.v0.json
Server.Items.PerfectEmerald.v0.json
Server.Items.PewterBowlOfCarrots.v0.json
Server.Items.PewterBowlOfCorn.v0.json
Server.Items.PewterBowlOfLettuce.v0.json
Server.Items.PewterBowlOfPeas.v0.json
Server.Items.PewterBowlOfPotatos.v0.json
Server.Items.PewterMug.v0.json
Server.Items.PhantomStaff.v0.json
Server.Items.PhillipsWoodenSteed.v0.json
Server.Items.PhilosophersHat.v0.json
Server.Items.Pickaxe.v0.json
Server.Items.PickpocketDip.v0.json
Server.Items.PickpocketDipEastAddon.v0.json
Server.Items.PickpocketDipEastDeed.v0.json
Server.Items.PickpocketDipSouthAddon.v0.json
Server.Items.PickpocketDipSouthDeed.v0.json
Server.Items.PicnicBasket.v0.json
Server.Items.PieceBlackBishop.v0.json
Server.Items.PieceBlackChecker.v0.json
Server.Items.PieceBlackKing.v0.json
Server.Items.PieceBlackKnight.v0.json
Server.Items.PieceBlackPawn.v0.json
Server.Items.PieceBlackQueen.v0.json
Server.Items.PieceBlackRook.v0.json
Server.Items.PieceWhiteBishop.v0.json
Server.Items.PieceWhiteChecker.v0.json
Server.Items.PieceWhiteKing.v0.json
Server.Items.PieceWhiteKnight.v0.json
Server.Items.PieceWhitePawn.v0.json
Server.Items.PieceWhiteQueen.v0.json
Server.Items.PieceWhiteRook.v0.json
Server.Items.Pier.v0.json
Server.Items.PigIron.v0.json
Server.Items.PigmentsOfTokuno.v0.json
Server.Items.Pike.v0.json
Server.Items.PileOfGlacialSnow.v0.json
Server.Items.PilferedDancerFans.v0.json
Server.Items.PinkFancyRugAddon.v0.json
Server.Items.PinkFancyRugDeed.v0.json
Server.Items.Pitcher.v0.json
Server.Items.Pitchfork.v0.json
Server.Items.PixieLeg.v0.json
Server.Items.PixieSwatter.v0.json
Server.Items.PlagueBeastBackpack.v0.json
Server.Items.PlagueBeastBackupOrgan.v0.json
Server.Items.PlagueBeastBlood.v0.json
Server.Items.PlagueBeastComponent.v0.json
Server.Items.PlagueBeastGland.v0.json
Server.Items.PlagueBeastHeart.v0.json
Server.Items.PlagueBeastInnard.v0.json
Server.Items.PlagueBeastMaidenOrgan.v0.json
Server.Items.PlagueBeastMainOrgan.v0.json
Server.Items.PlagueBeastMutationCore.v0.json
Server.Items.PlagueBeastOrgan.v0.json
Server.Items.PlagueBeastRockOrgan.v0.json
Server.Items.PlagueBeastRubbleOrgan.v0.json
Server.Items.PlagueBeastVein.v0.json
Server.Items.PlainDress.v0.json
Server.Items.PlainLowTable.v0.json
Server.Items.PlainWoodenChest.v0.json
Server.Items.Plank.v1.json
Server.Items.Plate.v0.json
Server.Items.PlateArms.v0.json
Server.Items.PlateBattleKabuto.v0.json
Server.Items.PlateChest.v0.json
Server.Items.PlateDo.v0.json
Server.Items.PlateGloves.v0.json
Server.Items.PlateGorget.v0.json
Server.Items.PlateHaidate.v0.json
Server.Items.PlateHatsuburi.v0.json
Server.Items.PlateHelm.v0.json
Server.Items.PlateHiroSode.v0.json
Server.Items.PlateLegs.v0.json
Server.Items.PlateMempo.v0.json
Server.Items.PlateSuneate.v0.json
Server.Items.PlayerBBEast.v0.json
Server.Items.PlayerBBMessage.v0.json
Server.Items.PlayerBBSouth.v0.json
Server.Items.PlayingCards.v0.json
Server.Items.PlayingCards2.v0.json
Server.Items.PoisonedGlasses.v0.json
Server.Items.PoisonFieldScroll.v0.json
Server.Items.PoisonPotion.v0.json
Server.Items.PoisonScroll.v0.json
Server.Items.PoisonStrikeScroll.v0.json
Server.Items.PolarBearMask.v0.json
Server.Items.PolarBearRugEastAddon.v0.json
Server.Items.PolarBearRugEastDeed.v0.json
Server.Items.PolarBearRugSouthAddon.v0.json
Server.Items.PolarBearRugSouthDeed.v0.json
Server.Items.PolymorphScroll.v0.json
Server.Items.PortcullisEW.v0.json
Server.Items.PortcullisNS.v0.json
Server.Items.PortraitOfTheBride.v0.json
Server.Items.PotionKeg.v2.json
Server.Items.PottedCactus.v0.json
Server.Items.PottedCactus1.v0.json
Server.Items.PottedCactus2.v0.json
Server.Items.PottedCactus3.v0.json
Server.Items.PottedCactus4.v0.json
Server.Items.PottedCactus5.v0.json
Server.Items.PottedCactusDeed.v0.json
Server.Items.PottedPlant.v0.json
Server.Items.PottedPlant1.v0.json
Server.Items.PottedPlant2.v0.json
Server.Items.PottedPlantDeed.v0.json
Server.Items.PottedTree.v0.json
Server.Items.PottedTree1.v0.json
Server.Items.Pouch.v0.json
Server.Items.PowderOfTemperament.v0.json
Server.Items.PowderOfTranslocation.v0.json
Server.Items.PowerCrystal.v0.json
Server.Items.PowerGenerator.v0.json
Server.Items.PowerScroll.v0.json
Server.Items.PresetMap.v0.json
Server.Items.PrimitiveFetish.v0.json
Server.Items.PrismaticAmber.v0.json
Server.Items.PrismaticCrystal.v0.json
Server.Items.PristineDreadHorn.v0.json
Server.Items.PrizedFish.v0.json
Server.Items.ProjectedItem.v0.json
Server.Items.PromotionalToken.v0.json
Server.Items.ProspectorsTool.v0.json
Server.Items.ProtectionScroll.v0.json
Server.Items.ProtectorsEssence.v0.json
Server.Items.PublicMoongate.v0.json
Server.Items.Pumpkin.v0.json
Server.Items.PumpkinPie.v0.json
Server.Items.PumpkinPizza.v0.json
Server.Items.PumpkinScarecrow.v0.json
Server.Items.PurgeMagicScroll.v0.json
Server.Items.PurpleFrog.v0.json
Server.Items.Putrefication.v0.json
Server.Items.PuzzleChest.v1.json fix: Fixes dirty-tracking gaps in generated content: setters, sub-object owners, BaseVendor (#2609) 2026-09-06 09:43:44 -07:00
Server.Items.PuzzleChestSolution.v1.json
Server.Items.PuzzleChestSolutionAndTime.v0.json
Server.Items.PuzzleChestSolutionAndTime.v1.json feat: convert all delta-time serialization to anchored time (#2589) 2026-08-22 19:34:43 -07:00
Server.Items.PyramidAddon.v0.json
Server.Items.QuarterStaff.v0.json
Server.Items.Quell.v0.json
Server.Items.QuestOfVirtues.v0.json
Server.Items.Quiche.v0.json
Server.Items.QuiverOfBlight.v0.json
Server.Items.QuiverOfElements.v0.json
Server.Items.QuiverOfFire.v0.json
Server.Items.QuiverOfIce.v0.json
Server.Items.QuiverOfInfinity.v0.json
Server.Items.QuiverOfLightning.v0.json
Server.Items.QuiverOfRage.v0.json
Server.Items.RadiantScimitar.v0.json
Server.Items.RaedsGlory.v0.json
Server.Items.RaffleEntry.v0.json
Server.Items.RaisableItem.v0.json
Server.Items.RaiseSwitch.v0.json
Server.Items.RandomTalisman.v0.json
Server.Items.RangerArms.v0.json
Server.Items.RangerChest.v0.json
Server.Items.RangerGloves.v0.json
Server.Items.RangerGorget.v0.json
Server.Items.RangerLegs.v0.json
Server.Items.RangersShortbow.v0.json
Server.Items.RankingsOfTrades.v0.json
Server.Items.RaptorClaw.v0.json
Server.Items.RarewoodChest.v0.json
Server.Items.RattanDoor.v0.json
Server.Items.RavenHelm.v0.json
Server.Items.RawBird.v0.json
Server.Items.RawChickenLeg.v0.json
Server.Items.RawFishSteak.v0.json
Server.Items.RawLambLeg.v0.json
Server.Items.RawRibs.v0.json
Server.Items.ReactiveArmorScroll.v0.json
Server.Items.ReaperFormScroll.v0.json
Server.Items.RecallRune.v2.json
Server.Items.RecallScroll.v0.json
Server.Items.RecarosRiposte.v0.json
Server.Items.ReceiverCrystal.v0.json
Server.Items.RecipeScroll.v0.json
Server.Items.RedArmoire.v0.json
Server.Items.RedBeaker.v0.json
Server.Items.RedBook.v0.json
Server.Items.RedBottle.v0.json
Server.Items.RedCurvedFlask.v0.json
Server.Items.RedDartFish.v0.json
Server.Items.RedHangingLantern.v0.json
Server.Items.RedLeatherBook.v0.json
Server.Items.RedLeaves.v0.json
Server.Items.RedMisoSoup.v0.json
Server.Items.RedPlainRugAddon.v0.json
Server.Items.RedPlainRugDeed.v0.json
Server.Items.RedPoinsettia.v0.json
Server.Items.RedRibbedFlask.v0.json
Server.Items.RedScales.v0.json
Server.Items.RedSoulstone.v0.json
Server.Items.RedStocking.v0.json
Server.Items.RedVelvetGiftBox.v0.json
Server.Items.RefreshPotion.v0.json
Server.Items.RegardingLlamas.v0.json
Server.Items.ReginasLetter.v0.json
Server.Items.ReginasRing.v0.json
Server.Items.RegStone.v0.json
Server.Items.RejuvinationAddonComponent.v0.json
Server.Items.RejuvinationAnkhNorth.v0.json
Server.Items.RejuvinationAnkhWest.v0.json
Server.Items.RepairDeed.v1.json
Server.Items.RepeatingCrossbow.v0.json
Server.Items.ReptalonFormTalisman.v0.json
Server.Items.ResGate.v0.json
Server.Items.ResilientBracer.v0.json
Server.Items.ResolvesBridle.v0.json
Server.Items.ResurrectionScroll.v0.json
Server.Items.RevealScroll.v0.json
Server.Items.RewardBlackDyeTub.v1.json
Server.Items.RewardBrazier.v0.json
Server.Items.RewardBrazierDeed.v0.json
Server.Items.RewardCake.v0.json
Server.Items.RewardCloak.v0.json
Server.Items.RewardDress.v0.json
Server.Items.RewardPottedCactus.v0.json
Server.Items.RewardRobe.v0.json
Server.Items.RibCage.v0.json
Server.Items.Ribs.v0.json
Server.Items.RightArm.v0.json
Server.Items.RighteousAnger.v0.json
Server.Items.RightLeg.v0.json
Server.Items.RingmailArms.v0.json
Server.Items.RingmailChest.v0.json
Server.Items.RingmailGloves.v0.json
Server.Items.RingmailGlovesOfMining.v0.json
Server.Items.RingmailLegs.v0.json
Server.Items.RingOfTheElements.v0.json
Server.Items.RingOfTheSavant.v0.json
Server.Items.RingOfTheVile.v0.json
Server.Items.RisingColossusScroll.v0.json
Server.Items.RoastPig.v0.json
Server.Items.Robe.v2.json
Server.Items.RobeOfTheEclipse.v0.json
Server.Items.RobeOfTheEquinox.v0.json
Server.Items.RockArtifact.v0.json
Server.Items.RollingPin.v0.json
Server.Items.Rope.v0.json
Server.Items.RoseInAVase.v0.json
Server.Items.RoseOfTrinsic.v1.json
Server.Items.RoseOfTrinsicPetal.v0.json
Server.Items.RoundPaperLantern.v0.json
Server.Items.RoyalCirclet.v0.json
Server.Items.RoyalGuardSurvivalKnife.v0.json
Server.Items.Ruby.v0.json
Server.Items.RubyMace.v0.json
Server.Items.RuinedArmoire.v0.json
Server.Items.RuinedBookcase.v0.json
Server.Items.RuinedBooks.v0.json
Server.Items.RuinedChair.v0.json
Server.Items.RuinedClock.v0.json
Server.Items.RuinedDrawers.v0.json
Server.Items.RuinedFallenChairA.v0.json
Server.Items.RuinedFallenChairB.v0.json
Server.Items.RuinedPainting.v0.json
Server.Items.RuinedPaintingArtifact.v0.json
Server.Items.RuinedTapestry.v0.json
Server.Items.RuneBeetleCarapace.v0.json
Server.Items.RuneBlade.v0.json
Server.Items.RuneBladeOfKnowledge.v0.json
Server.Items.Runebook.v4.json
Server.Items.RunebookDyeTub.v1.json
Server.Items.RunebookEntry.v2.json
Server.Items.RuneCarvingKnife.v0.json
Server.Items.RunedPrism.v0.json
Server.Items.RunedSwitch.v0.json
Server.Items.Runesabre.v0.json
Server.Items.RunicDovetailSaw.v0.json
Server.Items.RunicFletcherTool.v0.json
Server.Items.RunicHammer.v0.json
Server.Items.RunicSewingKit.v0.json
Server.Items.SackFlour.v0.json
Server.Items.SackOfSugar.v0.json
Server.Items.SacrificialAltarAddon.v0.json
Server.Items.SacrificialAltarDeed.v0.json
Server.Items.SaddleArtifact.v0.json
Server.Items.SadrahSatchel.v0.json
Server.Items.Sai.v0.json
Server.Items.SakeArtifact.v0.json
Server.Items.SalivasFeather.v0.json
Server.Items.SalvageBag.v0.json
Server.Items.SamaritanRobe.v0.json
Server.Items.SamplesOfCorruptedWater.v0.json
Server.Items.SamuraiHelm.v0.json
Server.Items.SamuraiTabi.v0.json
Server.Items.Sand.v0.json
Server.Items.Sandals.v0.json
Server.Items.SandFlagstones.v0.json
Server.Items.SandMiningBook.v0.json
Server.Items.SandstoneFireplaceEastAddon.v0.json
Server.Items.SandstoneFireplaceEastDeed.v0.json
Server.Items.SandstoneFireplaceSouthAddon.v0.json
Server.Items.SandstoneFireplaceSouthDeed.v0.json
Server.Items.SandstoneFloorN.v0.json
Server.Items.SandstoneFloorW.v0.json
Server.Items.SandstoneFountainAddon.v0.json
Server.Items.SapOfSosaria.v0.json
Server.Items.Sapphire.v0.json
Server.Items.SapphireMace.v0.json
Server.Items.Sausage.v0.json
Server.Items.SausagePizza.v0.json
Server.Items.SavageMask.v0.json
Server.Items.Saw.v0.json
Server.Items.SawTrap.v0.json
Server.Items.Scales.v0.json
Server.Items.ScarecrowAddon.v0.json
Server.Items.ScarecrowComponent.v0.json
Server.Items.ScarecrowDeed.v0.json
Server.Items.Scepter.v0.json
Server.Items.Scimitar.v0.json
Server.Items.Scissors.v0.json
Server.Items.Scorp.v0.json
Server.Items.Scourge.v0.json
Server.Items.ScribeBag.v0.json
Server.Items.ScribesPen.v0.json
Server.Items.ScribeStone.v0.json
Server.Items.ScrollofAlacrity.v0.json
Server.Items.ScrollofTranscendence.v0.json
Server.Items.Sculpture1Artifact.v0.json
Server.Items.Sculpture2Artifact.v0.json
Server.Items.Scythe.v0.json
Server.Items.SeaChart.v0.json
Server.Items.SeaHorseFish.v0.json
Server.Items.SeahorseStatuette.v0.json
Server.Items.SealedNotesForJamal.v0.json
Server.Items.SealingWaxOrderAddressedToPetrus.v0.json
Server.Items.SecretDungeonDoor.v0.json
Server.Items.SecretLightWoodDoor.v0.json
Server.Items.SecretStoneDoor1.v0.json
Server.Items.SecretStoneDoor2.v0.json
Server.Items.SecretStoneDoor3.v0.json
Server.Items.SecretWoodenDoor.v0.json
Server.Items.SeerRobe.v0.json
Server.Items.SerpentFangSectBadge.v0.json
Server.Items.SerpentPillar.v0.json
Server.Items.SerpentPillarAddon.v0.json
Server.Items.SerpentsFang.v0.json
Server.Items.SerpentstoneStaff.v0.json
Server.Items.SerratedWarCleaver.v0.json
Server.Items.SeveredElfEars.v0.json
Server.Items.SeveredHumanEars.v0.json
Server.Items.SewingKit.v0.json
Server.Items.Sextant.v0.json
Server.Items.SextantParts.v0.json
Server.Items.ShadowDancerLeggings.v0.json
Server.Items.ShadowIronGranite.v0.json
Server.Items.ShadowIronIngot.v0.json
Server.Items.ShadowIronOre.v0.json
Server.Items.Shaft.v0.json
Server.Items.ShaminoCrossbow.v0.json
Server.Items.ShardThrasher.v0.json
Server.Items.SheafOfHay.v0.json
Server.Items.Shell.v0.json
Server.Items.ShepherdsCrook.v0.json
Server.Items.ShieldOfInvulnerability.v0.json
Server.Items.ShimmeringCrystals.v0.json
Server.Items.ShipModelOfTheHMSCape.v0.json
Server.Items.ShipwreckedItem.v0.json
Server.Items.Shirt.v0.json
Server.Items.Shoes.v0.json
Server.Items.ShojiLantern.v0.json
Server.Items.ShojiScreen.v0.json
Server.Items.ShortCabinet.v0.json
Server.Items.ShortMusicStand.v0.json
Server.Items.ShortPants.v0.json
Server.Items.ShortSpear.v0.json
Server.Items.Shovel.v0.json
Server.Items.Shrimp.v0.json
Server.Items.ShrineOfWisdomAddon.v0.json
Server.Items.ShrineOfWisdomComponent.v0.json
Server.Items.ShroudOfDeciet.v0.json
Server.Items.SHTeleComponent.v0.json
Server.Items.SHTeleporter.v0.json
Server.Items.Shuriken.v0.json
Server.Items.Sign.v0.json
Server.Items.SignedTuitionReimbursementForm.v0.json
Server.Items.SilvanisFeywoodBow.v0.json
Server.Items.SilverBeadNecklace.v0.json
Server.Items.SilverBracelet.v0.json
Server.Items.SilverEarrings.v0.json
Server.Items.SilverEtchedMace.v0.json
Server.Items.SilverNecklace.v0.json
Server.Items.SilverRing.v0.json
Server.Items.SilverSerpentBlade.v0.json
Server.Items.SilverWire.v0.json
Server.Items.SimpleElvenArmoire.v0.json
Server.Items.SingingAxe.v0.json
Server.Items.Skillet.v0.json
Server.Items.SkillTeleporter.v1.json
Server.Items.SkinnedDeerArtifact.v0.json
Server.Items.SkinnedGoatArtifact.v0.json
Server.Items.SkinningKnife.v0.json
Server.Items.Skirt.v0.json
Server.Items.SkullCandleArtifact.v0.json
Server.Items.SkullCap.v0.json
Server.Items.SkullPileAddon.v0.json
Server.Items.SkullPole.v0.json
Server.Items.SkullsOnPike.v0.json
Server.Items.SlabOfBacon.v0.json
Server.Items.SlayerLongbow.v0.json
Server.Items.SledgeHammer.v0.json
Server.Items.SleepScroll.v0.json
Server.Items.SmallBagBall.v0.json
Server.Items.SmallBedEastAddon.v0.json
Server.Items.SmallBedEastDeed.v0.json
Server.Items.SmallBedSouthAddon.v0.json
Server.Items.SmallBedSouthDeed.v0.json
Server.Items.SmallBlueBottle.v0.json
Server.Items.SmallBlueFlask.v0.json
Server.Items.SmallBrownBottle.v0.json
Server.Items.SmallCrate.v0.json
Server.Items.SmallEmptyFlask.v0.json
Server.Items.SmallEmptyPot.v0.json
Server.Items.SmallFishingNetAddon.v0.json
Server.Items.SmallFishingNetComponent.v0.json
Server.Items.SmallFishingNetDeed.v0.json
Server.Items.SmallFlask.v0.json
Server.Items.SmallForgeAddon.v0.json
Server.Items.SmallForgeDeed.v0.json
Server.Items.SmallGreenBottle.v0.json
Server.Items.SmallGreenBottle2.v0.json
Server.Items.SmallMouthSuckerFin.v0.json
Server.Items.SmallPlateJingasa.v0.json
Server.Items.SmallPumpkin.v0.json
Server.Items.SmallRedFlask.v0.json
Server.Items.SmallStretchedHideEastAddon.v0.json
Server.Items.SmallStretchedHideEastDeed.v0.json
Server.Items.SmallStretchedHideSouthAddon.v0.json
Server.Items.SmallStretchedHideSouthDeed.v0.json
Server.Items.SmallTowerSculpture.v0.json
Server.Items.SmallUrn.v0.json
Server.Items.SmallVioletBottle.v0.json
Server.Items.SmallWatermelon.v0.json
Server.Items.SmallYellowFlask.v0.json
Server.Items.SmithBag.v0.json
Server.Items.SmithHammer.v0.json
Server.Items.SmithStone.v0.json
Server.Items.SmokeBomb.v0.json
Server.Items.SmoothingPlane.v0.json
Server.Items.SnowGlobe.v0.json
Server.Items.SnowGlobeOne.v1.json
Server.Items.SnowGlobeThree.v1.json
Server.Items.SnowGlobeTwo.v1.json
Server.Items.Snowman.v0.json
Server.Items.SnowPile.v0.json
Server.Items.SnowPileDeco.v0.json
Server.Items.SnowStatueDeed.v0.json
Server.Items.SnowStatueGriffon.v0.json
Server.Items.SnowStatueMermaid.v0.json
Server.Items.SnowStatuePegasus.v0.json
Server.Items.SnowStatueSeahorse.v0.json
Server.Items.SnowyTree.v0.json
Server.Items.SolenAntHole.v1.json
Server.Items.SolenAntHoleComponent.v0.json
Server.Items.SongOfSamlethe.v0.json
Server.Items.SongWovenMantle.v0.json
Server.Items.SOS.v0.json
Server.Items.SoulGlaive.v0.json
Server.Items.SoulSeeker.v0.json
Server.Items.SoulStone.v4.json
Server.Items.SoulstoneFragment.v0.json
Server.Items.SoulstoneFragmentToken.v0.json
Server.Items.Spam.v0.json
Server.Items.Spear.v0.json
Server.Items.SpecialBeardDye.v0.json
Server.Items.SpecialDyeTub.v1.json
Server.Items.SpecialFishingNet.v0.json
Server.Items.SpecialHairDye.v0.json
Server.Items.SpecialScroll.v0.json
Server.Items.SpecialTreatForDrithen.v0.json
Server.Items.SpeckledCrab.v0.json
Server.Items.SpeckledPoisonSac.v0.json
Server.Items.SpellbladeOfDefense.v0.json
Server.Items.Spellbook.v6.json
Server.Items.SpellPlagueScroll.v0.json
Server.Items.SpellScroll.v0.json
Server.Items.SpellTriggerScroll.v0.json
Server.Items.SpellweavingBook.v0.json
Server.Items.SpellWovenBritches.v0.json
Server.Items.SpidersSilk.v0.json
Server.Items.SpikeTrap.v0.json
Server.Items.SpinedHides.v0.json
Server.Items.SpinedLeather.v0.json
Server.Items.SpinedScratcherFish.v0.json
Server.Items.SpinningHourglass.v0.json
Server.Items.SpinningWheelEastAddon.v0.json
Server.Items.SpinningWheelEastDeed.v0.json
Server.Items.SpinningWheelSouthAddon.v0.json
Server.Items.SpinningWheelSouthDeed.v0.json
Server.Items.SpiritBottle.v0.json
Server.Items.SpiritOfTheTotem.v0.json
Server.Items.SpiritualityHelm.v0.json
Server.Items.SplitCoconut.v0.json
Server.Items.SpoolOfThread.v0.json
Server.Items.Spoon.v0.json
Server.Items.SpoonLeft.v0.json
Server.Items.SpoonRight.v0.json
Server.Items.SpottedBuccaneer.v0.json
Server.Items.Springs.v0.json
Server.Items.Spyglass.v0.json
Server.Items.SquareGozaMatEastAddon.v0.json
Server.Items.SquareGozaMatEastDeed.v0.json
Server.Items.SquareGozaMatSouthAddon.v0.json
Server.Items.SquareGozaMatSouthDeed.v0.json
Server.Items.Squash.v0.json
Server.Items.SquirrelFormTalisman.v0.json
Server.Items.SquirrelStatueEastAddon.v0.json
Server.Items.SquirrelStatueEastDeed.v0.json
Server.Items.SquirrelStatueSouthAddon.v0.json
Server.Items.SquirrelStatueSouthDeed.v0.json
Server.Items.StaffOfPower.v0.json
Server.Items.StaffOfTheMagi.v0.json
Server.Items.StaffRobe.v0.json
Server.Items.StandardPlateKabuto.v0.json
Server.Items.StandingBrokenChairAddon.v0.json
Server.Items.StandingBrokenChairComponent.v0.json
Server.Items.StandingBrokenChairDeed.v0.json
Server.Items.StarRoomGate.v1.json
Server.Items.StarRoomGate.v2.json feat: convert all delta-time serialization to anchored time (#2589) 2026-08-22 19:34:43 -07:00
Server.Items.StarSapphire.v0.json
Server.Items.StatCapScroll.v0.json
Server.Items.Static.v0.json
Server.Items.StatueEast.v0.json
Server.Items.StatueEast2.v0.json
Server.Items.StatueNorth.v0.json
Server.Items.StatuePegasus.v0.json
Server.Items.StatuePegasus2.v0.json
Server.Items.StatueSouth.v0.json
Server.Items.StatueSouth2.v0.json
Server.Items.StatueSouthEast.v0.json
Server.Items.StatuetteDyeTub.v1.json
Server.Items.StatueWest.v0.json
Server.Items.StitchersMittens.v0.json
Server.Items.StoneAnkh.v0.json
Server.Items.StoneAnkhComponent.v0.json
Server.Items.StoneAnkhDeed.v0.json
Server.Items.StoneChair.v0.json
Server.Items.StoneFaceTrap.v0.json
Server.Items.StoneFaceTrapNoDamage.v0.json
Server.Items.StoneFireplaceEastAddon.v0.json
Server.Items.StoneFireplaceEastDeed.v0.json
Server.Items.StoneFireplaceSouthAddon.v0.json
Server.Items.StoneFireplaceSouthDeed.v0.json
Server.Items.StoneFormScroll.v0.json
Server.Items.StoneFountainAddon.v0.json
Server.Items.StoneMiningBook.v0.json
Server.Items.StoneOvenEastAddon.v0.json
Server.Items.StoneOvenEastDeed.v0.json
Server.Items.StoneOvenSouthAddon.v0.json
Server.Items.StoneOvenSouthDeed.v0.json
Server.Items.StonePaversDark.v0.json
Server.Items.StonePaversLight.v0.json
Server.Items.StonePaversMedium.v0.json
Server.Items.StoneSlithClaw.v0.json
Server.Items.StoneStatueAddon.v0.json
Server.Items.StoneStatueDeed.v0.json
Server.Items.Stool.v0.json
Server.Items.StormCaller.v0.json
Server.Items.Stormgrip.v0.json
Server.Items.StoutWhip.v0.json
Server.Items.StrangleScroll.v0.json
Server.Items.StrawHat.v0.json
Server.Items.StrengthPotion.v0.json
Server.Items.StrengthScroll.v0.json
Server.Items.StretchedHideArtifact.v0.json
Server.Items.StringOfPartsOfParoxysmusVictims.v0.json
Server.Items.StrippedFlakeFish.v0.json
Server.Items.StrippedSosarianSwill.v0.json
Server.Items.StrongBackpack.v0.json
Server.Items.StrongBox.v0.json
Server.Items.StrongBoxPuzzle.v0.json
Server.Items.StrongWoodDoor.v0.json
Server.Items.StuddedArms.v0.json
Server.Items.StuddedBustierArms.v0.json
Server.Items.StuddedChest.v0.json
Server.Items.StuddedDo.v0.json
Server.Items.StuddedGloves.v0.json
Server.Items.StuddedGlovesOfMining.v0.json
Server.Items.StuddedGorget.v0.json
Server.Items.StuddedHaidate.v0.json
Server.Items.StuddedHiroSode.v0.json
Server.Items.StuddedLeggingsArtifact.v0.json
Server.Items.StuddedLegs.v0.json
Server.Items.StuddedMempo.v0.json
Server.Items.StuddedSuneate.v0.json
Server.Items.StuddedTunicArtifact.v0.json
Server.Items.SturdyPickaxe.v0.json
Server.Items.SturdyShovel.v0.json
Server.Items.StValentinesBear.v0.json
Server.Items.StValentinesPanda.v0.json
Server.Items.StValentinesPolarBear.v0.json
Server.Items.Subdue.v0.json
Server.Items.SubtextSign.v0.json
Server.Items.SuitOfGoldArmorAddon.v0.json
Server.Items.SuitOfGoldArmorComponent.v0.json
Server.Items.SuitOfGoldArmorDeed.v0.json
Server.Items.SuitOfSilverArmorAddon.v0.json
Server.Items.SuitOfSilverArmorComponent.v0.json
Server.Items.SuitOfSilverArmorDeed.v0.json
Server.Items.SulfurousAsh.v0.json
Server.Items.SummonAirElementalScroll.v0.json
Server.Items.SummonCreatureScroll.v0.json
Server.Items.SummonDaemonScroll.v0.json
Server.Items.SummonEarthElementalScroll.v0.json
Server.Items.SummonFamiliarScroll.v0.json
Server.Items.SummonFeyScroll.v0.json
Server.Items.SummonFiendScroll.v0.json
Server.Items.SummonFireElementalScroll.v0.json
Server.Items.SummonWaterElementalScroll.v0.json
Server.Items.Surcoat.v0.json
Server.Items.SushiPlatter.v0.json
Server.Items.SushiRolls.v0.json
Server.Items.SwampTile.v0.json
Server.Items.SwarmOfFlies.v0.json
Server.Items.SweatOfParoxysmus.v0.json
Server.Items.SweetDough.v0.json
Server.Items.SwitchItem.v0.json
Server.Items.SwordDisplay1NorthArtifact.v0.json
Server.Items.SwordDisplay1WestArtifact.v0.json
Server.Items.SwordDisplay2NorthArtifact.v0.json
Server.Items.SwordDisplay2WestArtifact.v0.json
Server.Items.SwordDisplay3EastArtifact.v0.json
Server.Items.SwordDisplay3SouthArtifact.v0.json
Server.Items.SwordDisplay4NorthArtifact.v0.json
Server.Items.SwordDisplay4WestArtifact.v0.json
Server.Items.SwordDisplay5NorthArtifact.v0.json
Server.Items.SwordDisplay5WestArtifact.v0.json
Server.Items.SwordOfTheStampede.v0.json
Server.Items.SwordsOfProsperity.v0.json
Server.Items.TableWithBlueClothAddon.v0.json
Server.Items.TableWithBlueClothDeed.v0.json
Server.Items.TableWithOrangeClothAddon.v0.json
Server.Items.TableWithOrangeClothDeed.v0.json
Server.Items.TableWithPurpleClothAddon.v0.json
Server.Items.TableWithPurpleClothDeed.v0.json
Server.Items.TableWithRedClothAddon.v0.json
Server.Items.TableWithRedClothDeed.v0.json
Server.Items.Taffy.v0.json
Server.Items.TailorBag.v0.json
Server.Items.TailorStone.v0.json
Server.Items.Taint.v0.json
Server.Items.TaintedMushroom.v0.json
Server.Items.TaintedSeeds.v0.json
Server.Items.TaintedTreeSample.v0.json
Server.Items.TaintedWool.v0.json
Server.Items.TaleOfThreeTribes.v0.json
Server.Items.TalesOfVesperVol1.v0.json
Server.Items.TalismanAttribute.v1.json
Server.Items.TalkingToWisps.v0.json
Server.Items.TallCabinet.v0.json
Server.Items.TallElvenBedEastAddon.v0.json
Server.Items.TallElvenBedEastDeed.v0.json
Server.Items.TallElvenBedSouthAddon.v0.json
Server.Items.TallElvenBedSouthDeed.v0.json
Server.Items.TallMusicStand.v0.json
Server.Items.TallStrawHat.v0.json
Server.Items.TalonBite.v0.json
Server.Items.Tambourine.v0.json
Server.Items.TambourineTassel.v0.json
Server.Items.TamingDragons.v0.json
Server.Items.TanBook.v0.json
Server.Items.Tapestry1N.InternalItem.v0.json
Server.Items.Tapestry1N.v0.json
Server.Items.Tapestry2N.InternalItem.v0.json
Server.Items.Tapestry2N.v0.json
Server.Items.Tapestry2W.InternalItem.v0.json
Server.Items.Tapestry2W.v0.json
Server.Items.Tapestry3N.InternalItem.v0.json
Server.Items.Tapestry3N.v0.json
Server.Items.Tapestry3W.InternalItem.v0.json
Server.Items.Tapestry3W.v0.json
Server.Items.Tapestry4N.InternalItem.v0.json
Server.Items.Tapestry4N.v0.json
Server.Items.Tapestry4W.InternalItem.v0.json
Server.Items.Tapestry4W.v0.json
Server.Items.Tapestry5N.InternalItem.v0.json
Server.Items.Tapestry5N.v0.json
Server.Items.Tapestry5W.InternalItem.v0.json
Server.Items.Tapestry5W.v0.json
Server.Items.Tapestry6N.InternalItem.v0.json
Server.Items.Tapestry6N.v0.json
Server.Items.Tapestry6W.InternalItem.v0.json
Server.Items.Tapestry6W.v0.json
Server.Items.TapestryOfSosaria.v1.json
Server.Items.TarotCardsArtifact.v0.json
Server.Items.TatteredAncientMummyWrapping.v0.json
Server.Items.TattsukeHakama.v0.json
Server.Items.TavarasJournal1.v0.json
Server.Items.TavarasJournal2.v0.json
Server.Items.TavarasJournal3.v0.json
Server.Items.TavarasJournal6.v0.json
Server.Items.TavarasJournal7.v0.json
Server.Items.TavarasJournal8.v0.json
Server.Items.TavarasJournal9.v0.json
Server.Items.TavarasJournal11.v0.json
Server.Items.TavarasJournal14.v0.json
Server.Items.TavarasJournal16.v0.json
Server.Items.TavarasJournal16b.v0.json
Server.Items.TavarasJournal17.v0.json
Server.Items.TavarasJournal19.v0.json
Server.Items.TaxidermyKit.v0.json
Server.Items.TeapotNorthArtifact.v0.json
Server.Items.TeapotWestArtifact.v0.json
Server.Items.Tekagi.v0.json
Server.Items.TelekinesisScroll.v0.json
Server.Items.Teleporter.v5.json
Server.Items.TeleportScroll.v0.json
Server.Items.Telescope.v0.json
Server.Items.Tessen.v0.json
Server.Items.Tetsubo.v0.json
Server.Items.TheBeserkersMaul.v0.json
Server.Items.TheDestroyer.v0.json
Server.Items.TheDragonSlayer.v0.json
Server.Items.TheDragonsTail.v0.json
Server.Items.TheDryadBow.v0.json
Server.Items.TheFight.v0.json
Server.Items.TheHorselord.v0.json
Server.Items.TheMostKnowledgePerson.v0.json
Server.Items.TheNightReaper.v0.json
Server.Items.TheRobeOfBritanniaAri.v0.json
Server.Items.TheTaskmaster.v0.json
Server.Items.ThickGrayStoneWall.v0.json
Server.Items.ThighBoots.v2.json
Server.Items.ThinBrickWall.v0.json
Server.Items.ThinLongsword.v0.json
Server.Items.ThinStoneWall.v0.json
Server.Items.ThornedWildStaff.v0.json
Server.Items.ThorvaldsMedallion.v0.json
Server.Items.ThrashersTail.v0.json
Server.Items.Throne.v0.json
Server.Items.ThrowingDagger.v0.json
Server.Items.ThunderingAxe.v0.json
Server.Items.ThunderstormScroll.v0.json
Server.Items.TigerClawSectBadge.v0.json
Server.Items.TillerMan.v0.json
Server.Items.TimeoutGoal.v0.json
Server.Items.TimeoutTeleporter.v1.json
Server.Items.TinkersTools.v0.json
Server.Items.TinkerTools.v0.json
Server.Items.TinyRedBottle.v0.json
Server.Items.TinyYellowBottle.v0.json
Server.Items.TitansHammer.v0.json
Server.Items.ToggleItem.v0.json
Server.Items.TombstoneOfTheDamned.v0.json
Server.Items.TomeOfEnlightenment.v0.json
Server.Items.TomeOfLostKnowledge.v0.json
Server.Items.Tongs.v0.json
Server.Items.ToolKit.v0.json
Server.Items.Torch.v0.json
Server.Items.TormentedChains.v0.json
Server.Items.Torso.v0.json
Server.Items.TotalRefreshPotion.v0.json
Server.Items.TotemOfVoid.v0.json
Server.Items.Tourmaline.v0.json
Server.Items.TowerLanternArtifact.v0.json
Server.Items.ToyBoat.v0.json
Server.Items.TradeGlasses.v0.json
Server.Items.TrainingDummy.v0.json
Server.Items.TrainingDummyEastAddon.v0.json
Server.Items.TrainingDummyEastDeed.v0.json
Server.Items.TrainingDummySouthAddon.v0.json
Server.Items.TrainingDummySouthDeed.v0.json
Server.Items.TransientItem.v1.json
Server.Items.TransientItem.v2.json feat: convert all delta-time serialization to anchored time (#2589) 2026-08-22 19:34:43 -07:00
Server.Items.TranslatedGargoyleJournal.v0.json
Server.Items.TransparentHeart.v0.json
Server.Items.TrappableContainer.v3.json
Server.Items.TrashBarrel.v0.json
Server.Items.TrashChest.v0.json
Server.Items.TravestysCollectionOfShells.v0.json
Server.Items.TravestysFineTeakwoodTray.v0.json
Server.Items.TravestysSushiPreparations.v0.json
Server.Items.TreasureChestDirt.v0.json
Server.Items.TreasureChestLevel1.v0.json
Server.Items.TreasureChestLevel2.v0.json
Server.Items.TreasureChestLevel3.v0.json
Server.Items.TreasureChestLevel4.v0.json
Server.Items.TreasureMap.v0.json
Server.Items.TreasureMapChest.v2.json
Server.Items.TreasureMapChest.v3.json
Server.Items.TreasureMapChest.v4.json
Server.Items.TreasureTrinketGlasses.v0.json
Server.Items.TreatiseOnAlchemy.v0.json
Server.Items.TreeStump.v1.json
Server.Items.TreeStumpDeed.v0.json
Server.Items.TribalBerry.v0.json
Server.Items.TribalMask.v0.json
Server.Items.TribalPaint.v0.json
Server.Items.TribalSpear.v0.json
Server.Items.TricorneHat.v0.json
Server.Items.TripleFanNorthArtifact.v0.json
Server.Items.TripleFanWestArtifact.v0.json
Server.Items.Trophy.v2.json
Server.Items.TrophyAddon.v2.json
Server.Items.TrophyDeed.v2.json
Server.Items.TrueAssassinSpike.v0.json
Server.Items.TrueLeafblade.v0.json
Server.Items.TrueRadiantScimitar.v0.json
Server.Items.TrueSpellblade.v0.json
Server.Items.TrueWarCleaver.v0.json
Server.Items.TrulyRareFish.v0.json
Server.Items.Tub.v0.json
Server.Items.TuitionReimbursementForm.v0.json
Server.Items.Tunic.v0.json
Server.Items.TunicOfFire.v0.json
Server.Items.TunicOfGuarding.v0.json
Server.Items.Turnip.v0.json
Server.Items.Turquoise.v0.json
Server.Items.TwilightJacket.v0.json
Server.Items.TwilightLantern.v0.json
Server.Items.TwinklingScimitar.v0.json
Server.Items.TwoHandedAxe.v0.json
Server.Items.UnbakedApplePie.v0.json
Server.Items.UnbakedFruitPie.v0.json
Server.Items.UnbakedMeatPie.v0.json
Server.Items.UnbakedPeachCobbler.v0.json
Server.Items.UnbakedPumpkinPie.v0.json
Server.Items.UnbakedQuiche.v0.json
Server.Items.UncookedCheesePizza.v0.json
Server.Items.UncookedSausagePizza.v0.json
Server.Items.UncutCloth.v0.json
Server.Items.UnfinishedBarrel.v0.json
Server.Items.UnholyBone.v0.json
Server.Items.UnicornRibs.v0.json
Server.Items.UnlockScroll.v0.json
Server.Items.UnmadeBedAddon.v0.json
Server.Items.UnmadeBedDeed.v0.json
Server.Items.UnsettlingPortraitAddon.v0.json
Server.Items.UnsettlingPortraitComponent.v0.json
Server.Items.UnsettlingPortraitDeed.v0.json
Server.Items.Urn1Artifact.v0.json
Server.Items.Urn2Artifact.v0.json
Server.Items.VacationWafer.v0.json
Server.Items.ValentinesCard.v0.json
Server.Items.ValentinesCardEast.v0.json
Server.Items.ValentinesCardSouth.v0.json
Server.Items.ValkyriesGlaive.v0.json
Server.Items.ValorGauntlets.v0.json
Server.Items.ValoriteGranite.v0.json
Server.Items.ValoriteIngot.v0.json
Server.Items.ValoriteOre.v0.json
Server.Items.VampiricEmbraceScroll.v0.json
Server.Items.Vanilla.v0.json
Server.Items.VanityAddon.v0.json
Server.Items.VanityDeed.v0.json
Server.Items.Vase.v0.json
Server.Items.VendorRentalContract.v0.json
Server.Items.VengefulSpiritScroll.v0.json
Server.Items.VeriteGranite.v0.json
Server.Items.VeriteIngot.v0.json
Server.Items.VeriteOre.v0.json
Server.Items.VesperReefTiger.v0.json
Server.Items.VikingSword.v0.json
Server.Items.Vines.v0.json
Server.Items.VioletCourage.v0.json
Server.Items.VioletRibbedFlask.v0.json
Server.Items.VirtueBook.v0.json
Server.Items.VoiceOfTheFallenKing.v0.json
Server.Items.VultureHelm.v0.json
Server.Items.WaitTeleporter.v1.json
Server.Items.Wakizashi.v0.json
Server.Items.WalkersLeggings.v0.json
Server.Items.WallBanner.v0.json
Server.Items.WallBannerComponent.v0.json
Server.Items.WallBannerDeed.v0.json
Server.Items.WallBlood.v0.json
Server.Items.WallOfStoneScroll.v0.json
Server.Items.WallSconce.v0.json
Server.Items.WallTorch.v0.json
Server.Items.WallTorchAddon.v0.json
Server.Items.WallTorchComponent.v0.json
Server.Items.WallTorchDeed.v0.json
Server.Items.Waraji.v0.json
Server.Items.WarAxe.v0.json
Server.Items.WarCleaver.v0.json
Server.Items.WarFork.v0.json
Server.Items.WarHammer.v0.json
Server.Items.WarMace.v0.json
Server.Items.WarningItem.v1.json
Server.Items.WarriorStatueEastAddon.v0.json
Server.Items.WarriorStatueEastDeed.v0.json
Server.Items.WarriorStatueSouthAddon.v0.json
Server.Items.WarriorStatueSouthDeed.v0.json
Server.Items.Wasabi.v0.json
Server.Items.WasabiClumps.v0.json
Server.Items.WaterBarrel.v0.json
Server.Items.WaterloggedBoots.v0.json
Server.Items.Watermelon.v0.json
Server.Items.WaterTile.v0.json
Server.Items.WaterTroughEastAddon.v0.json
Server.Items.WaterTroughEastDeed.v0.json
Server.Items.WaterTroughSouthAddon.v0.json
Server.Items.WaterTroughSouthDeed.v0.json
Server.Items.WaterVatEast.v0.json
Server.Items.WaterVatSouth.v0.json
Server.Items.WayPoint.v0.json
Server.Items.WeakenScroll.v0.json
Server.Items.WeaknessWand.v0.json
Server.Items.WeaponEngravingTool.v0.json
Server.Items.Web.v0.json
Server.Items.WeddingRing.v0.json
Server.Items.WheatSheaf.v0.json
Server.Items.Whip.v0.json
Server.Items.WhiteChocolate.v0.json
Server.Items.WhiteClothDyeTub.v0.json
Server.Items.WhiteDriedFlowers.v0.json
Server.Items.WhiteHangingLantern.v0.json
Server.Items.WhiteLeatherDyeTub.v0.json
Server.Items.WhiteMisoSoup.v0.json
Server.Items.WhitePearl.v0.json
Server.Items.WhitePoinsettia.v0.json
Server.Items.WhiteScales.v0.json
Server.Items.WhiteSnowflake.v0.json
Server.Items.WhiteStoneWall.v0.json
Server.Items.WideBrimHat.v0.json
Server.Items.WildfireBow.v0.json
Server.Items.WildfireScroll.v0.json
Server.Items.WildGirlOfTheForest.v0.json
Server.Items.WildStaff.v0.json
Server.Items.WindChimes.v0.json
Server.Items.WindOfCorruption.v0.json
Server.Items.WindsEdge.v0.json
Server.Items.Windsong.v0.json
Server.Items.WindSpirit.v0.json
Server.Items.WingedHelm.v0.json
Server.Items.WinterGiftPackage2003.v0.json
Server.Items.WitherScroll.v0.json
Server.Items.WizardsGlasses.v0.json
Server.Items.WizardsHat.v0.json
Server.Items.WomanPortrait1.v0.json
Server.Items.WomanPortrait2.v0.json
Server.Items.WondrousFish.v0.json
Server.Items.WoodDebris.v0.json
Server.Items.WoodenBench.v0.json
Server.Items.WoodenBowl.v0.json
Server.Items.WoodenBowlOfCarrots.v0.json
Server.Items.WoodenBowlOfCorn.v0.json
Server.Items.WoodenBowlOfLettuce.v0.json
Server.Items.WoodenBowlOfPeas.v0.json
Server.Items.WoodenBowlOfStew.v0.json
Server.Items.WoodenBowlOfTomatoSoup.v0.json
Server.Items.WoodenBox.v0.json
Server.Items.WoodenChair.v0.json
Server.Items.WoodenChairCushion.v0.json
Server.Items.WoodenChest.v0.json
Server.Items.WoodenCoffinAddon.v0.json
Server.Items.WoodenCoffinComponent.v0.json
Server.Items.WoodenCoffinDeed.v0.json
Server.Items.WoodenFootLocker.v0.json
Server.Items.WoodenKiteShield.v0.json
Server.Items.WoodenShield.v0.json
Server.Items.WoodenThrone.v0.json
Server.Items.WoodenTreasureChest.v0.json
Server.Items.WoodlandArms.v0.json
Server.Items.WoodlandBelt.v0.json
Server.Items.WoodlandChest.v0.json
Server.Items.WoodlandGloves.v0.json
Server.Items.WoodlandGorget.v0.json
Server.Items.WoodlandLegs.v0.json
Server.Items.Wool.v0.json
Server.Items.WordOfDeathScroll.v0.json
Server.Items.WorldMap.v0.json
Server.Items.WoundingAssassinSpike.v0.json
Server.Items.WraithFormScroll.v0.json
Server.Items.WrappedCandy.v0.json
Server.Items.WrathOfTheDryad.v0.json
Server.Items.WreathAddon.v0.json
Server.Items.WreathDeed.v0.json
Server.Items.WristWatch.v0.json
Server.Items.WritingTable.v0.json
Server.Items.YellowBeaker.v0.json
Server.Items.YellowFinBluebelly.v0.json
Server.Items.YellowGourd.v0.json
Server.Items.YellowScales.v0.json
Server.Items.YewBoard.v0.json
Server.Items.YewLog.v0.json
Server.Items.YewWoodTable.v0.json
Server.Items.Yumi.v0.json
Server.Items.ZenRock1Artifact.v0.json
Server.Items.ZenRock2Artifact.v0.json
Server.Items.ZenRock3Artifact.v0.json
Server.Items.ZoogiFungus.v0.json
Server.Items.ZyronicClaw.v0.json
Server.Misc.ShardPoller.v1.json fix: Fixes dirty-tracking gaps in generated content: setters, sub-object owners, BaseVendor (#2609) 2026-09-06 09:43:44 -07:00
Server.Misc.ShardPollOption.v1.json
Server.Misc.WeatherMap.v0.json
Server.Mobiles.Abscess.v0.json
Server.Mobiles.AbysmalHorror.v0.json
Server.Mobiles.AcidElemental.v0.json
Server.Mobiles.Actor.v0.json
Server.Mobiles.AgapiteElemental.v0.json
Server.Mobiles.AirElemental.v0.json
Server.Mobiles.Alchemist.v0.json
Server.Mobiles.Alligator.v0.json
Server.Mobiles.AncientLich.v0.json
Server.Mobiles.AncientWyrm.v0.json
Server.Mobiles.AnimalTrainer.v0.json
Server.Mobiles.AnimatedWeapon.v0.json
Server.Mobiles.AntLion.v0.json
Server.Mobiles.ArcaneDaemon.v0.json
Server.Mobiles.ArcaneFey.v0.json
Server.Mobiles.ArcaneFiend.v0.json
Server.Mobiles.ArcherGuard.v0.json
Server.Mobiles.Architect.v0.json
Server.Mobiles.ArcticOgreLord.v0.json
Server.Mobiles.Armorer.v0.json
Server.Mobiles.Artist.v0.json
Server.Mobiles.BakeKitsune.v0.json
Server.Mobiles.Baker.v0.json
Server.Mobiles.Balron.v0.json
Server.Mobiles.Banker.v0.json
Server.Mobiles.Bard.v0.json
Server.Mobiles.BardGuildmaster.v0.json
Server.Mobiles.Barkeeper.v0.json
Server.Mobiles.BarkeeperRumor.v0.json
Server.Mobiles.Barracoon.v0.json
Server.Mobiles.BaseChampion.v0.json
Server.Mobiles.BaseCreature.v23.json refactor: Changes BaseCreature to the SerializationGenerator (delta save requirement) (#2611) 2026-09-06 14:11:51 -07:00
Server.Mobiles.BaseEnraged.v0.json
Server.Mobiles.BaseEscortable.v2.json
Server.Mobiles.BaseEscortable.v3.json
Server.Mobiles.BaseFamiliar.v0.json
Server.Mobiles.BaseGuard.v0.json
Server.Mobiles.BaseGuildmaster.v0.json
Server.Mobiles.BaseHealer.v2.json
Server.Mobiles.BaseHealer.v3.json
Server.Mobiles.BaseHire.v0.json
Server.Mobiles.BaseMount.v0.json
Server.Mobiles.BaseShieldGuard.v0.json
Server.Mobiles.BaseTalismanSummon.v0.json
Server.Mobiles.BaseVendor.v2.json fix: Fixes dirty-tracking gaps in generated content: setters, sub-object owners, BaseVendor (#2609) 2026-09-06 09:43:44 -07:00
Server.Mobiles.BaseWarHorse.v0.json
Server.Mobiles.Beekeeper.v0.json
Server.Mobiles.Beetle.v0.json
Server.Mobiles.Betrayer.v0.json
Server.Mobiles.Bird.v0.json
Server.Mobiles.BlackBear.v0.json
Server.Mobiles.Blacksmith.v0.json
Server.Mobiles.BlacksmithGuildmaster.v0.json
Server.Mobiles.BlackSolenInfiltratorQueen.v0.json
Server.Mobiles.BlackSolenInfiltratorWarrior.v0.json
Server.Mobiles.BlackSolenQueen.v0.json
Server.Mobiles.BlackSolenWarrior.v0.json
Server.Mobiles.BlackSolenWorker.v0.json
Server.Mobiles.BladeSpirits.v0.json
Server.Mobiles.BloodElemental.v0.json
Server.Mobiles.Boar.v0.json
Server.Mobiles.Bogle.v0.json
Server.Mobiles.Bogling.v0.json
Server.Mobiles.BogThing.v0.json
Server.Mobiles.BoneDemon.v0.json
Server.Mobiles.BoneKnight.v0.json
Server.Mobiles.BoneMagi.v0.json
Server.Mobiles.Bowyer.v0.json
Server.Mobiles.BrideGroom.v0.json
Server.Mobiles.Brigand.v0.json
Server.Mobiles.BronzeElemental.v0.json
Server.Mobiles.BrownBear.v0.json
Server.Mobiles.Bull.v0.json
Server.Mobiles.BullFrog.v0.json
Server.Mobiles.Butcher.v0.json
Server.Mobiles.CapturedHordeMinion.v0.json
Server.Mobiles.Carpenter.v0.json
Server.Mobiles.Cat.v0.json
Server.Mobiles.Centaur.v0.json
Server.Mobiles.Changeling.ClonedItem.v0.json
Server.Mobiles.Changeling.v0.json
Server.Mobiles.ChaosDaemon.v0.json
Server.Mobiles.ChaosDragoon.v0.json
Server.Mobiles.ChaosDragoonElite.v0.json
Server.Mobiles.ChaosGuard.v0.json
Server.Mobiles.CharacterStatue.v1.json
Server.Mobiles.CharacterStatueDeed.v1.json
Server.Mobiles.ChargerOfTheFallen.v0.json
Server.Mobiles.Chicken.v0.json
Server.Mobiles.Chiikkaha.v0.json
Server.Mobiles.Clone.v0.json
Server.Mobiles.Cobbler.v0.json
Server.Mobiles.Coil.v0.json
Server.Mobiles.CoMWarHorse.v0.json
Server.Mobiles.Cook.v0.json
Server.Mobiles.CopperElemental.v0.json
Server.Mobiles.CorporealBrume.v0.json
Server.Mobiles.Corpser.v0.json
Server.Mobiles.CorrosiveSlime.v0.json
Server.Mobiles.CorruptedSoul.v0.json
Server.Mobiles.Cougar.v0.json
Server.Mobiles.Cow.v0.json
Server.Mobiles.Crane.v0.json
Server.Mobiles.CrystalDaemon.v0.json
Server.Mobiles.CrystalElemental.v0.json
Server.Mobiles.CrystalLatticeSeeker.v0.json
Server.Mobiles.CrystalSeaSerpent.v0.json
Server.Mobiles.CrystalVortex.v0.json
Server.Mobiles.CrystalWisp.v0.json
Server.Mobiles.Cursed.v0.json
Server.Mobiles.CuSidhe.v0.json
Server.Mobiles.CustomHairstylist.v0.json
Server.Mobiles.Cyclops.v0.json
Server.Mobiles.Daemon.v0.json
Server.Mobiles.DarkGuardian.v0.json
Server.Mobiles.DarknightCreeper.v0.json
Server.Mobiles.DarkWisp.v0.json
Server.Mobiles.DarkWolfFamiliar.v0.json
Server.Mobiles.DeathAdder.v0.json
Server.Mobiles.DeathwatchBeetle.v0.json
Server.Mobiles.DeathwatchBeetleHatchling.v0.json
Server.Mobiles.DeepSeaSerpent.v0.json
Server.Mobiles.DemonKnight.v0.json
Server.Mobiles.DesertOstard.v0.json
Server.Mobiles.Devourer.v0.json
Server.Mobiles.DireWolf.v0.json
Server.Mobiles.Dog.v0.json
Server.Mobiles.Dolphin.v0.json
Server.Mobiles.Doppleganger.v0.json
Server.Mobiles.Dragon.v0.json
Server.Mobiles.Drake.v0.json
Server.Mobiles.DreadSpider.v0.json
Server.Mobiles.DullCopperElemental.v0.json
Server.Mobiles.Eagle.v0.json
Server.Mobiles.EarthElemental.v0.json
Server.Mobiles.Efreet.v0.json
Server.Mobiles.ElderGazer.v0.json
Server.Mobiles.ElfBrigand.v0.json
Server.Mobiles.EliteNinja.v0.json
Server.Mobiles.EnergyVortex.v0.json
Server.Mobiles.EnragedBlackBear.v0.json
Server.Mobiles.EnragedEagle.v0.json
Server.Mobiles.EnragedHart.v0.json
Server.Mobiles.EnragedHind.v0.json
Server.Mobiles.EnragedRabbit.v0.json
Server.Mobiles.EnslavedGargoyle.v0.json
Server.Mobiles.EnslavedSatyr.v0.json
Server.Mobiles.EscortableMage.v0.json
Server.Mobiles.EtherealBeetle.v0.json
Server.Mobiles.EtherealCuSidhe.v0.json
Server.Mobiles.EtherealHiryu.v0.json
Server.Mobiles.EtherealHorse.v0.json
Server.Mobiles.EtherealKirin.v0.json
Server.Mobiles.EtherealLlama.v0.json
Server.Mobiles.EtherealMount.v4.json
Server.Mobiles.EtherealOstard.v0.json
Server.Mobiles.EtherealReptalon.v0.json
Server.Mobiles.EtherealRidgeback.v0.json
Server.Mobiles.EtherealSwampDragon.v0.json
Server.Mobiles.EtherealUnicorn.v0.json
Server.Mobiles.EtherealWarrior.v0.json
Server.Mobiles.Ettin.v0.json
Server.Mobiles.EvilHealer.v0.json
Server.Mobiles.EvilMage.v0.json
Server.Mobiles.EvilMageLord.v0.json
Server.Mobiles.EvilWanderingHealer.v0.json
Server.Mobiles.Executioner.v0.json
Server.Mobiles.ExodusMinion.v0.json
Server.Mobiles.ExodusOverseer.v0.json
Server.Mobiles.FanDancer.v0.json
Server.Mobiles.Farmer.v0.json
Server.Mobiles.FeralTreefellow.v0.json
Server.Mobiles.Ferret.v0.json
Server.Mobiles.FetidEssence.v0.json
Server.Mobiles.FireBeetle.v0.json
Server.Mobiles.FireElemental.v0.json
Server.Mobiles.FireGargoyle.v0.json
Server.Mobiles.FireSteed.v0.json
Server.Mobiles.FisherGuildmaster.v0.json
Server.Mobiles.Fisherman.v0.json
Server.Mobiles.FleshGolem.v0.json
Server.Mobiles.FleshRenderer.v0.json
Server.Mobiles.ForestOstard.v0.json
Server.Mobiles.FortuneTeller.v0.json
Server.Mobiles.FrenziedOstard.v0.json
Server.Mobiles.FrostOoze.v0.json
Server.Mobiles.FrostSpider.v0.json
Server.Mobiles.FrostTroll.v0.json
Server.Mobiles.Furtrader.v0.json
Server.Mobiles.Gaman.v0.json
Server.Mobiles.Gargoyle.v0.json
Server.Mobiles.GargoyleDestroyer.v0.json
Server.Mobiles.GargoyleEnforcer.v0.json
Server.Mobiles.Gazer.v0.json
Server.Mobiles.GazerLarva.v0.json
Server.Mobiles.GenericBuyInfo.DisplayCache.v0.json
Server.Mobiles.Ghoul.v0.json
Server.Mobiles.GiantBlackWidow.v0.json
Server.Mobiles.GiantIceWorm.v0.json
Server.Mobiles.GiantRat.v0.json
Server.Mobiles.GiantSerpent.v0.json
Server.Mobiles.GiantSpider.v0.json
Server.Mobiles.GiantToad.v0.json
Server.Mobiles.Gibberling.v0.json
Server.Mobiles.Glassblower.v0.json
Server.Mobiles.Gnaw.v0.json
Server.Mobiles.Goat.v0.json
Server.Mobiles.GoldenElemental.v0.json
Server.Mobiles.Golem.v0.json
Server.Mobiles.GolemController.v0.json
Server.Mobiles.GolemCrafter.v0.json
Server.Mobiles.GoreFiend.v0.json
Server.Mobiles.Gorilla.v0.json
Server.Mobiles.GreaterDragon.v0.json
Server.Mobiles.GreaterMongbat.v0.json
Server.Mobiles.GreatHart.v0.json
Server.Mobiles.GreyWolf.v0.json
Server.Mobiles.GrimmochDrummel.v0.json
Server.Mobiles.GrizzledMare.v0.json
Server.Mobiles.GrizzlyBear.v0.json
Server.Mobiles.Grobu.v0.json
Server.Mobiles.Guardian.v0.json
Server.Mobiles.Guile.v0.json
Server.Mobiles.Gypsy.v0.json
Server.Mobiles.GypsyAnimalTrainer.v0.json
Server.Mobiles.GypsyBanker.v0.json
Server.Mobiles.GypsyMaiden.v0.json
Server.Mobiles.HairStylist.v0.json
Server.Mobiles.HarborMaster.v0.json
Server.Mobiles.Harpy.v0.json
Server.Mobiles.Harrower.v1.json
Server.Mobiles.HarrowerTentacles.v0.json
Server.Mobiles.HeadlessOne.v0.json
Server.Mobiles.Healer.v0.json
Server.Mobiles.HealerGuildmaster.v0.json
Server.Mobiles.HellCat.v0.json
Server.Mobiles.HellHound.v0.json
Server.Mobiles.HellSteed.v0.json
Server.Mobiles.Herbalist.v0.json
Server.Mobiles.Hind.v0.json
Server.Mobiles.HireBard.v0.json
Server.Mobiles.HireBardArcher.v0.json
Server.Mobiles.HireBeggar.v0.json
Server.Mobiles.HireFighter.v0.json
Server.Mobiles.HireMage.v0.json
Server.Mobiles.HirePaladin.v0.json
Server.Mobiles.HirePeasant.v0.json
Server.Mobiles.HireRanger.v0.json
Server.Mobiles.HireRangerArcher.v0.json
Server.Mobiles.HireSailor.v0.json
Server.Mobiles.HireThief.v0.json
Server.Mobiles.Hiryu.v0.json
Server.Mobiles.HolyFamiliar.v0.json
Server.Mobiles.HolyMage.v0.json
Server.Mobiles.HolySteed.v0.json
Server.Mobiles.HordeMinion.v0.json
Server.Mobiles.HordeMinionFamiliar.v0.json
Server.Mobiles.Horse.v0.json
Server.Mobiles.Hydra.v0.json
Server.Mobiles.IceElemental.v0.json
Server.Mobiles.IceFiend.v0.json
Server.Mobiles.IceSerpent.v0.json
Server.Mobiles.IceSnake.v0.json
Server.Mobiles.IharaSoko.v0.json
Server.Mobiles.Ilhenir.v0.json
Server.Mobiles.Imp.v0.json
Server.Mobiles.Impaler.v0.json
Server.Mobiles.InnKeeper.v0.json
Server.Mobiles.InsaneDryad.v0.json
Server.Mobiles.InterredGrizzle.v0.json
Server.Mobiles.Irk.v0.json
Server.Mobiles.IronWorker.v0.json
Server.Mobiles.JackRabbit.v0.json
Server.Mobiles.Jeweler.v0.json
Server.Mobiles.Juggernaut.v0.json
Server.Mobiles.JukaLord.v0.json
Server.Mobiles.JukaMage.v0.json
Server.Mobiles.JukaWarrior.v0.json
Server.Mobiles.Jwilson.v0.json
Server.Mobiles.Kappa.v0.json
Server.Mobiles.KazeKemono.v0.json
Server.Mobiles.KeeperOfChivalry.v0.json
Server.Mobiles.KhaldunRevenant.v0.json
Server.Mobiles.KhaldunSummoner.v0.json
Server.Mobiles.KhaldunZealot.v0.json
Server.Mobiles.Kirin.v0.json
Server.Mobiles.Kraken.v0.json
Server.Mobiles.LadyJennifyr.v0.json
Server.Mobiles.LadyLissith.v0.json
Server.Mobiles.LadyMarai.v0.json
Server.Mobiles.LadyOfTheSnow.v0.json
Server.Mobiles.LadySabrix.v0.json
Server.Mobiles.LavaLizard.v0.json
Server.Mobiles.LavaSerpent.v0.json
Server.Mobiles.LavaSnake.v0.json
Server.Mobiles.LeatherWorker.v0.json
Server.Mobiles.LesserHiryu.v0.json
Server.Mobiles.Leviathan.v0.json
Server.Mobiles.Lich.v0.json
Server.Mobiles.LichLord.v0.json
Server.Mobiles.Lizardman.v0.json
Server.Mobiles.Llama.v0.json
Server.Mobiles.LordOaks.v0.json
Server.Mobiles.Lurg.v0.json
Server.Mobiles.LysanderGathenwale.v0.json
Server.Mobiles.Mage.v0.json
Server.Mobiles.MageGuildmaster.v0.json
Server.Mobiles.Malefic.v0.json
Server.Mobiles.MantraEffervescence.v0.json
Server.Mobiles.Mapmaker.v0.json
Server.Mobiles.MasterJonath.v0.json
Server.Mobiles.MasterMikael.v0.json
Server.Mobiles.MasterTheophilus.v0.json
Server.Mobiles.MeerCaptain.v0.json
Server.Mobiles.MeerEternal.v0.json
Server.Mobiles.MeerMage.v0.json
Server.Mobiles.MeerWarrior.v0.json
Server.Mobiles.Mephitis.v0.json
Server.Mobiles.Meraktus.v0.json
Server.Mobiles.Meraktus.v1.json
Server.Mobiles.Merchant.v0.json
Server.Mobiles.MerchantGuildmaster.v0.json
Server.Mobiles.Messenger.v0.json
Server.Mobiles.Miasma.v0.json
Server.Mobiles.Miller.v0.json
Server.Mobiles.MinaxWarHorse.v0.json
Server.Mobiles.Miner.v0.json
Server.Mobiles.MinerGuildmaster.v0.json
Server.Mobiles.Minotaur.v0.json
Server.Mobiles.MinotaurCaptain.v0.json
Server.Mobiles.MinotaurScout.v0.json
Server.Mobiles.Minter.v0.json
Server.Mobiles.MLDryad.v0.json
Server.Mobiles.Moloch.v0.json
Server.Mobiles.Mongbat.v0.json
Server.Mobiles.Monk.v0.json
Server.Mobiles.MorgBergen.v0.json
Server.Mobiles.MougGuur.v0.json
Server.Mobiles.MoundOfMaggots.v0.json
Server.Mobiles.MountainGoat.v0.json
Server.Mobiles.MountItem.v0.json
Server.Mobiles.Mummy.v0.json
Server.Mobiles.NatureFury.v0.json
Server.Mobiles.Neira.v1.json
Server.Mobiles.Neira.VirtualMountItem.v0.json
Server.Mobiles.Nightmare.v0.json
Server.Mobiles.Ninja.v0.json
Server.Mobiles.Noble.v0.json
Server.Mobiles.Ogre.v0.json
Server.Mobiles.OgreLord.v0.json
Server.Mobiles.Oni.v0.json
Server.Mobiles.OphidianArchmage.v0.json
Server.Mobiles.OphidianKnight.v0.json
Server.Mobiles.OphidianMage.v0.json
Server.Mobiles.OphidianMatriarch.v0.json
Server.Mobiles.OphidianWarrior.v0.json
Server.Mobiles.Orc.v0.json
Server.Mobiles.OrcBomber.v0.json
Server.Mobiles.OrcBrute.v0.json
Server.Mobiles.OrcCaptain.v0.json
Server.Mobiles.OrcishLord.v0.json
Server.Mobiles.OrcishMage.v0.json
Server.Mobiles.OrderGuard.v0.json
Server.Mobiles.PackHorse.v0.json
Server.Mobiles.PackLlama.v0.json
Server.Mobiles.Panther.v0.json
Server.Mobiles.Parrot.v0.json
Server.Mobiles.PatchworkSkeleton.v0.json
Server.Mobiles.Peasant.v0.json
Server.Mobiles.PestilentBandage.v0.json
Server.Mobiles.Phoenix.v0.json
Server.Mobiles.Pig.v0.json
Server.Mobiles.Pixie.v0.json
Server.Mobiles.PlagueBeast.v0.json
Server.Mobiles.PlagueBeastLord.v0.json
Server.Mobiles.PlagueSpawn.v0.json
Server.Mobiles.PlayerBarkeeper.v2.json
Server.Mobiles.PlayerVendor.v3.json fix: Fixes dirty-tracking gaps in generated content: setters, sub-object owners, BaseVendor (#2609) 2026-09-06 09:43:44 -07:00
Server.Mobiles.PlayerVendor.v4.json fix: Fixes dirty-tracking gaps in generated content: setters, sub-object owners, BaseVendor (#2609) 2026-09-06 09:43:44 -07:00
Server.Mobiles.PlayerVendorPlaceholder.v0.json
Server.Mobiles.PoisonElemental.v0.json
Server.Mobiles.PolarBear.v0.json
Server.Mobiles.PredatorHellCat.v0.json
Server.Mobiles.PricedHealer.v0.json
Server.Mobiles.PricedHealer.v1.json
Server.Mobiles.Protector.v0.json
Server.Mobiles.Provisioner.v0.json
Server.Mobiles.PumpkinHead.v0.json
Server.Mobiles.Putrefier.v0.json
Server.Mobiles.Pyre.v0.json
Server.Mobiles.Quagmire.v0.json
Server.Mobiles.Rabbit.v0.json
Server.Mobiles.RagingGrizzlyBear.v0.json
Server.Mobiles.RaiJu.v0.json
Server.Mobiles.Rancher.v0.json
Server.Mobiles.Ranger.v0.json
Server.Mobiles.RangerGuildmaster.v0.json
Server.Mobiles.Raptor.v0.json
Server.Mobiles.Rat.v0.json
Server.Mobiles.Ratman.v0.json
Server.Mobiles.RatmanArcher.v0.json
Server.Mobiles.RatmanMage.v0.json
Server.Mobiles.Ravager.v0.json
Server.Mobiles.RealEstateBroker.v0.json
Server.Mobiles.Reaper.v0.json
Server.Mobiles.RedDeath.v0.json
Server.Mobiles.RedSolenInfiltratorQueen.v0.json
Server.Mobiles.RedSolenInfiltratorWarrior.v0.json
Server.Mobiles.RedSolenQueen.v0.json
Server.Mobiles.RedSolenWarrior.v0.json
Server.Mobiles.RedSolenWorker.v0.json
Server.Mobiles.Rend.v0.json
Server.Mobiles.RentedVendor.v0.json
Server.Mobiles.RentedVendor.v1.json feat: convert all delta-time serialization to anchored time (#2589) 2026-08-22 19:34:43 -07:00
Server.Mobiles.Reptalon.v0.json
Server.Mobiles.RestlessSoul.v0.json
Server.Mobiles.Revenant.v0.json
Server.Mobiles.RevenantLion.v0.json
Server.Mobiles.RidableLlama.v0.json
Server.Mobiles.RideablePolarBear.v0.json
Server.Mobiles.Ridgeback.v0.json
Server.Mobiles.Rikktor.v0.json
Server.Mobiles.Ronin.v0.json
Server.Mobiles.RottingCorpse.v0.json
Server.Mobiles.RuneBeetle.v0.json
Server.Mobiles.Saliva.v0.json
Server.Mobiles.Samurai.v0.json
Server.Mobiles.SandVortex.v0.json
Server.Mobiles.Satyr.v0.json
Server.Mobiles.Savage.v0.json
Server.Mobiles.SavageRider.v0.json
Server.Mobiles.SavageRidgeback.v0.json
Server.Mobiles.SavageShaman.v0.json
Server.Mobiles.ScaledSwampDragon.v0.json
Server.Mobiles.Scorpion.v0.json
Server.Mobiles.Scribe.v0.json
Server.Mobiles.Sculptor.v0.json
Server.Mobiles.SeaHorse.v0.json
Server.Mobiles.SeaSerpent.v0.json
Server.Mobiles.SeekerOfAdventure.v0.json
Server.Mobiles.Semidar.v0.json
Server.Mobiles.Serado.v0.json
Server.Mobiles.SerpentineDragon.v0.json
Server.Mobiles.ServantOfSemidar.v0.json
Server.Mobiles.SewerRat.v0.json
Server.Mobiles.Shade.v0.json
Server.Mobiles.ShadowFiend.v0.json
Server.Mobiles.ShadowIronElemental.v0.json
Server.Mobiles.ShadowKnight.v0.json
Server.Mobiles.ShadowWisp.v0.json
Server.Mobiles.ShadowWispFamiliar.v0.json
Server.Mobiles.ShadowWyrm.v0.json
Server.Mobiles.Sheep.v0.json
Server.Mobiles.Sheep.v1.json feat: convert all delta-time serialization to anchored time (#2589) 2026-08-22 19:34:43 -07:00
Server.Mobiles.Shipwright.v0.json
Server.Mobiles.Silk.v0.json
Server.Mobiles.Silvani.v0.json
Server.Mobiles.SilverSerpent.v0.json
Server.Mobiles.SilverSteed.v0.json
Server.Mobiles.SirPatrick.v0.json
Server.Mobiles.SkeletalDragon.v0.json
Server.Mobiles.SkeletalKnight.v0.json
Server.Mobiles.SkeletalMage.v0.json
Server.Mobiles.SkeletalMount.v0.json
Server.Mobiles.Skeleton.v0.json
Server.Mobiles.SkitteringHopper.v0.json
Server.Mobiles.Slime.v0.json
Server.Mobiles.Slith.v0.json
Server.Mobiles.SLWarHorse.v0.json
Server.Mobiles.Snake.v0.json
Server.Mobiles.SnowElemental.v0.json
Server.Mobiles.SnowLeopard.v0.json
Server.Mobiles.SpawnedOrcishLord.v0.json
Server.Mobiles.SpectralArmour.v0.json
Server.Mobiles.Spectre.v0.json
Server.Mobiles.Spellbinder.v0.json
Server.Mobiles.Spite.v0.json
Server.Mobiles.Squirrel.v0.json
Server.Mobiles.StainedOoze.v0.json
Server.Mobiles.StoneCrafter.v0.json
Server.Mobiles.StoneGargoyle.v0.json
Server.Mobiles.StoneHarpy.v0.json
Server.Mobiles.StoneSlith.v0.json
Server.Mobiles.StrongMongbat.v0.json
Server.Mobiles.Succubus.v0.json
Server.Mobiles.SummonedAirElemental.v0.json
Server.Mobiles.SummonedAntLion.v0.json
Server.Mobiles.SummonedArcticOgreLord.v0.json
Server.Mobiles.SummonedBakeKitsune.v0.json
Server.Mobiles.SummonedBogling.v0.json
Server.Mobiles.SummonedBullFrog.v0.json
Server.Mobiles.SummonedChicken.v0.json
Server.Mobiles.SummonedCow.v0.json
Server.Mobiles.SummonedDaemon.v0.json
Server.Mobiles.SummonedDoppleganger.v0.json
Server.Mobiles.SummonedEarthElemental.v0.json
Server.Mobiles.SummonedFireElemental.v0.json
Server.Mobiles.SummonedFrostSpider.v0.json
Server.Mobiles.SummonedGreatHart.v0.json
Server.Mobiles.SummonedLavaSerpent.v0.json
Server.Mobiles.SummonedOrcBrute.v0.json
Server.Mobiles.SummonedPanther.v0.json
Server.Mobiles.SummonedSheep.v0.json
Server.Mobiles.SummonedSkeletalKnight.v0.json
Server.Mobiles.SummonedVorpalBunny.v0.json
Server.Mobiles.SummonedWailingBanshee.v0.json
Server.Mobiles.SummonedWaterElemental.v0.json
Server.Mobiles.SwampDragon.v2.json
Server.Mobiles.SwampTentacle.v0.json
Server.Mobiles.Swoop.v0.json
Server.Mobiles.Szavetra.v0.json
Server.Mobiles.Tailor.v0.json
Server.Mobiles.TailorGuildmaster.v0.json
Server.Mobiles.Tangle.v0.json
Server.Mobiles.Tanner.v0.json
Server.Mobiles.TavaraSewel.v0.json
Server.Mobiles.TavernKeeper.v0.json
Server.Mobiles.TBWarHorse.v0.json
Server.Mobiles.TerathanAvenger.v0.json
Server.Mobiles.TerathanDrone.v0.json
Server.Mobiles.TerathanMatriarch.v0.json
Server.Mobiles.TerathanWarrior.v0.json
Server.Mobiles.Thief.v0.json
Server.Mobiles.ThiefGuildmaster.v0.json
Server.Mobiles.Thrasher.v0.json
Server.Mobiles.TimberWolf.v0.json
Server.Mobiles.Tinker.v0.json
Server.Mobiles.TinkerGuildmaster.v0.json
Server.Mobiles.Titan.v0.json
Server.Mobiles.TormentedMinotaur.v0.json
Server.Mobiles.TownCrier.v0.json
Server.Mobiles.Townfolk.Prisoner.v0.json
Server.Mobiles.ToxicSlith.v0.json
Server.Mobiles.TransferItem.v0.json
Server.Mobiles.Treefellow.v0.json
Server.Mobiles.Troglodyte.v0.json
Server.Mobiles.Troll.v0.json
Server.Mobiles.TropicalBird.v0.json
Server.Mobiles.TsukiWolf.v0.json
Server.Mobiles.Twaulo.v0.json
Server.Mobiles.UnfrozenMummy.v0.json
Server.Mobiles.UnholyFamiliar.v0.json
Server.Mobiles.UnholySteed.v0.json
Server.Mobiles.Unicorn.v0.json
Server.Mobiles.Vagabond.v0.json
Server.Mobiles.ValoriteElemental.v0.json
Server.Mobiles.VampireBat.v0.json
Server.Mobiles.VampireBatFamiliar.v0.json
Server.Mobiles.VarietyDealer.v0.json
Server.Mobiles.VendorBackpack.v0.json
Server.Mobiles.VendorItem.v0.json
Server.Mobiles.VeriteElemental.v0.json
Server.Mobiles.Veterinarian.v0.json
Server.Mobiles.VirtualMountItem.v0.json
Server.Mobiles.Virulent.v0.json
Server.Mobiles.VorpalBunny.BunnyHole.v0.json
Server.Mobiles.VorpalBunny.v0.json
Server.Mobiles.WailingBanshee.v0.json
Server.Mobiles.Waiter.v0.json
Server.Mobiles.Walrus.v0.json
Server.Mobiles.WandererOfTheVoid.v0.json
Server.Mobiles.WanderingHealer.v0.json
Server.Mobiles.WarriorGuard.v0.json
Server.Mobiles.WarriorGuildmaster.v0.json
Server.Mobiles.WaterElemental.v0.json
Server.Mobiles.WaterElemental.v1.json
Server.Mobiles.Weaponsmith.v0.json
Server.Mobiles.Weaver.v0.json
Server.Mobiles.WhippingVine.v0.json
Server.Mobiles.WhiteWolf.v0.json
Server.Mobiles.WhiteWyrm.v0.json
Server.Mobiles.Wisp.v0.json
Server.Mobiles.Wraith.v0.json
Server.Mobiles.Wyvern.v0.json
Server.Mobiles.Yamandon.v0.json
Server.Mobiles.YomotsuElder.v0.json
Server.Mobiles.YomotsuPriest.v0.json
Server.Mobiles.YomotsuWarrior.v0.json
Server.Mobiles.Zombie.v0.json
Server.Multis.BankerCamp.v0.json
Server.Multis.BaseBoat.v4.json
Server.Multis.BaseBoat.v5.json feat: convert all delta-time serialization to anchored time (#2589) 2026-08-22 19:34:43 -07:00
Server.Multis.BaseBoatDeed.v0.json
Server.Multis.BaseCamp.v1.json
Server.Multis.BaseCamp.v2.json feat: convert all delta-time serialization to anchored time (#2589) 2026-08-22 19:34:43 -07:00
Server.Multis.BaseContestHouse.v1.json
Server.Multis.BaseDockedBoat.v0.json
Server.Multis.BaseHouse.TransferItem.v0.json
Server.Multis.BrigandCamp.v0.json
Server.Multis.Camelot.v0.json
Server.Multis.CasaMoga.v0.json
Server.Multis.Castle.v0.json
Server.Multis.CastleOfOceania.v0.json
Server.Multis.DarkthornKeep.v0.json
Server.Multis.Deeds.BrickHouseDeed.v0.json
Server.Multis.Deeds.CastleDeed.v0.json
Server.Multis.Deeds.FieldStoneHouseDeed.v0.json
Server.Multis.Deeds.HouseDeed.v0.json
Server.Multis.Deeds.KeepDeed.v0.json
Server.Multis.Deeds.LargeMarbleDeed.v0.json
Server.Multis.Deeds.LargePatioDeed.v0.json
Server.Multis.Deeds.LogCabinDeed.v0.json
Server.Multis.Deeds.MarbleWorkshopDeed.v0.json
Server.Multis.Deeds.SandstonePatioDeed.v0.json
Server.Multis.Deeds.SmallBrickHouseDeed.v0.json
Server.Multis.Deeds.SmallTowerDeed.v0.json
Server.Multis.Deeds.StonePlasterHouseDeed.v0.json
Server.Multis.Deeds.StoneWorkshopDeed.v0.json
Server.Multis.Deeds.ThatchedRoofCottageDeed.v0.json
Server.Multis.Deeds.TowerDeed.v0.json
Server.Multis.Deeds.TwoStoryStonePlasterHouseDeed.v0.json
Server.Multis.Deeds.TwoStoryWoodPlasterHouseDeed.v0.json
Server.Multis.Deeds.VillaDeed.v0.json
Server.Multis.Deeds.WoodHouseDeed.v0.json
Server.Multis.Deeds.WoodPlasterHouseDeed.v0.json
Server.Multis.ElsaCastle.v0.json
Server.Multis.FeudalCastle.v0.json
Server.Multis.GothicRoseCastle.v0.json
Server.Multis.GrimswindSisters.v0.json
Server.Multis.GuildHouse.v0.json
Server.Multis.HealerCamp.v0.json
Server.Multis.HouseSign.v0.json
Server.Multis.Keep.v0.json
Server.Multis.LacrimaeInCaelo.v0.json
Server.Multis.LargeBoat.v0.json
Server.Multis.LargeBoatDeed.v0.json
Server.Multis.LargeDockedBoat.v0.json
Server.Multis.LargeDockedDragonBoat.v0.json
Server.Multis.LargeDragonBoat.v0.json
Server.Multis.LargeDragonBoatDeed.v0.json
Server.Multis.LargeMarbleHouse.v0.json
Server.Multis.LargePatioHouse.v0.json
Server.Multis.LizardmenCamp.v0.json
Server.Multis.LockableBarrel.v0.json
Server.Multis.LogCabin.v0.json
Server.Multis.MageCamp.v0.json
Server.Multis.MediumBoat.v0.json
Server.Multis.MediumBoatDeed.v0.json
Server.Multis.MediumDockedBoat.v0.json
Server.Multis.MediumDockedDragonBoat.v0.json
Server.Multis.MediumDragonBoat.v0.json
Server.Multis.MediumDragonBoatDeed.v0.json
Server.Multis.MovingCrate.v0.json
Server.Multis.OkinawaSweetDreamCastle.v0.json
Server.Multis.OrcCamp.v0.json
Server.Multis.PackingBox.v0.json
Server.Multis.PreviewHouse.v0.json
Server.Multis.RatCamp.v0.json
Server.Multis.RobinsNest.v0.json
Server.Multis.RobinsRoost.v0.json
Server.Multis.SandalwoodKeep.v0.json
Server.Multis.SandStonePatio.v0.json
Server.Multis.SmallBoat.v0.json
Server.Multis.SmallBoatDeed.v0.json
Server.Multis.SmallDockedBoat.v0.json
Server.Multis.SmallDockedDragonBoat.v0.json
Server.Multis.SmallDragonBoat.v0.json
Server.Multis.SmallDragonBoatDeed.v0.json
Server.Multis.SmallOldHouse.v0.json
Server.Multis.SmallShop.v0.json
Server.Multis.SmallTower.v0.json
Server.Multis.Spires.v0.json
Server.Multis.TheSandstoneCastle.v0.json
Server.Multis.Tower.v0.json
Server.Multis.TraditionalKeep.v0.json
Server.Multis.TrinsicKeep.v0.json
Server.Multis.TwoStoryHouse.v0.json
Server.Multis.TwoStoryVilla.v0.json
Server.Multis.VillaCrowley.v0.json
Server.PowerFactionItem.v0.json
Server.Spells.Fifth.PoisonField.v0.json
Server.Spells.Fifth.PoisonField.v1.json feat: convert all delta-time serialization to anchored time (#2589) 2026-08-22 19:34:43 -07:00
Server.Spells.Fourth.FireFieldItem.v0.json
Server.Spells.Fourth.FireFieldItem.v1.json feat: convert all delta-time serialization to anchored time (#2589) 2026-08-22 19:34:43 -07:00
Server.Spells.Seventh.EnergyField.v1.json
Server.Spells.Seventh.EnergyField.v2.json feat: convert all delta-time serialization to anchored time (#2589) 2026-08-22 19:34:43 -07:00
Server.Spells.Seventh.GateTravelMoongate.v0.json
Server.Spells.Seventh.GateTravelSpell.InternalItem.v0.json
Server.Spells.Sixth.ParalyzeField.v0.json
Server.Spells.Sixth.ParalyzeField.v1.json feat: convert all delta-time serialization to anchored time (#2589) 2026-08-22 19:34:43 -07:00
Server.Spells.Third.WallOfStone.v0.json
Server.Spells.Third.WallOfStone.v1.json feat: convert all delta-time serialization to anchored time (#2589) 2026-08-22 19:34:43 -07:00
Server.StormsEye.v0.json
Server.Systems.JailSystem.JailRecord.v0.json
Server.UrnOfAscension.v0.json