zunda shiwake
  • JavaScript 90.1%
  • CSS 8.5%
  • HTML 1.4%
Find a file
2026-06-07 22:04:17 +09:00
.vscode fiirst 2026-06-07 15:05:24 +09:00
assets/images tweaks 2026-06-07 18:06:35 +09:00
src cards and lot of 2026-06-07 22:04:17 +09:00
index.html cards and lot of 2026-06-07 22:04:17 +09:00
README.md cards and lot of 2026-06-07 22:04:17 +09:00
styles.css cards and lot of 2026-06-07 22:04:17 +09:00

Chick Sorter v16.1 Card Target Overlay Fix

This build refines the v15 card and tax system.

v16.1 changes

  • Fixed equipment improvement target-picking overlay by importing the target bounds helper into the renderer.
  • Non-candidate equipment now receives a full dark overlay, and valid upgrade candidates are explicitly white-highlighted.
  • Added a fallback message when a target picker has no valid target, so the game no longer appears frozen.

v16 changes

  • Extra Cards is now immediate.
    • Selecting it consumes the current card pick, then grants 2 more card selections in the same draft.
    • It no longer increases future draft size.
  • Equipment improvement cards now target machines on the map.
    • Valid targets are highlighted in white.
    • Non-target areas are darkened.
    • Click a highlighted machine to apply the upgrade.
    • Esc cancels target selection and returns to the card draft.
  • ZUNDA TAX and Fairies tribute no longer contaminate the next days profit display.
    • They are still paid when Next Day is pressed.
    • They still affect cash and total outflow.
    • They are not counted inside the new days Turn Profit.
  • ZUNDA TAX exemption / Legal Work behavior was rechecked and kept explicit.
    • Base exemption: ¥500.
    • Legal Work: exemption +¥250 and 95% cap point +¥250.
    • Tax rate: 5% from the first yen above the exemption.
    • +5% per ¥500 taxable band.
    • Maximum rate: 95%.
  • EGG FARM price remains ¥250.

Active ZUNDA TAX formula

taxable = max(0, cash - exemption)
rate = min(95%, ceil(taxable / 500) × 5%)
ZUNDA TAX = ceil(taxable × rate)

With no Legal Work, exemption = ¥500, so ¥501 starts at 5% and ¥10,000 reaches 95%.