One Piece Card Game Tier List

Compare One Piece Card Game sets through a ratio-based market ranking built from card value versus sealed box cost.

This tier list ranks One Piece Card Game sets with a simple and explicit rule: the final tier is based on the ratio between the average value of the cards in the set and the current box cost of the related sealed product. It is designed as a fast market signal for collectors and speculators who want to compare sets on a consistent data model.

Loading...

How the tier list is calculated

The production script computes several market metrics, but the actual tier assignment uses only one final rule: test_ratio = EV / box_cost. EV is the average price of the cards found in the set, while box cost is taken from the related sealed product when available.

  1. Cards included in the calculation:
    For each set, the script loads documents from Cards where setId matches the set, type is Cards, and, in production mode, the item is both visible and verified.
  2. Price selection logic:
    The script reads prices from Cards.marketData and uses the first valid positive value found in this order: price, priceTrend, price7d, price30d, price90d, price1d, priceSecondary, pricePrimary.
  3. Box cost logic:
    Box cost is resolved through sealedId by looking up the related sealed product in Cards. If no valid market price is found, the script falls back to $200.00.
  4. Core metrics produced:
    The script stores and prints several metrics for analysis: EV, median, stdev, pct_gt10, sum_gt10, top 3 cards over $10, and ICV. These are useful for reading set quality, but they do not decide the final tier.

Tier assignment rule

Tiertest_ratio = EV / box_costMeaning
S>= 0.30Highest EV relative to box cost
A+>= 0.20Strong EV relative to box cost
A>= 0.12Good EV relative to box cost
B>= 0.06Moderate EV relative to box cost
C< 0.06Weak EV relative to box cost

Example: If a set has an average card value of $48.00 and a box cost of $160.00, the test ratio is 0.30, so the set lands in Tier S.

In short, this page should be read as a ratio-based market ranking, not as a full collectible quality score. ICV, price concentration, and the number of cards above $10 are still useful supporting signals, but the tier itself is driven only by EV versus box cost.