From af382c541ebdb9bce91c4f0cdb1666c96e0c1f9d Mon Sep 17 00:00:00 2001 From: hided62 Date: Sat, 25 Jul 2026 06:38:47 +0000 Subject: [PATCH] test: expose legacy item catalog for comparison --- hwe/compare/item_catalog.php | 40 ++++++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 hwe/compare/item_catalog.php diff --git a/hwe/compare/item_catalog.php b/hwe/compare/item_catalog.php new file mode 100644 index 00000000..b34ce292 --- /dev/null +++ b/hwe/compare/item_catalog.php @@ -0,0 +1,40 @@ + $item->getRawName(), + 'name' => $item->getName(), + 'info' => $item->getInfo(), + 'cost' => $item->getCost(), + 'buyable' => $item->isBuyable(), + 'consumable' => $item->isConsumable(), + 'reqSecu' => $item->getReqSecu(), + ]; +} + +echo Json::encode($result);