"매 새 content는 매 old content보다 강해야 매 sells". Power creep은 매 live-service game에서 매 신규 unit/card/weapon이 매 기존보다 점진적으로 강해지는 매 balance drift 현상. 매 monetization pressure와 매 player engagement 사이 매 tension에서 발생.
매 핵심
매 발생 mechanism
매 economic incentive: 매 신규 hero pull 유도 위해 매 stronger stats 부여.
매 numeric inflation: 매 HP/DMG 절댓값이 매 patch마다 매 5–15% 상승.
매 ability complexity: 매 신규 unit이 매 더 많은 keyword (cleave + lifesteal + immunity).
매 retroactive obsolescence: 매 old roster가 매 PvE/PvP에서 매 unviable.
매 증상 vs 매 healthy iteration
Creep: 매 new > old (strict dominance) → roster 축소.
Sidegrade: 매 new ≠ old (matchup-dependent) → roster 확장.
매 Rotation: 매 old를 매 explicitly retire (Hearthstone Standard).
매 응용
Hearthstone Standard rotation (yearly Set retire).
Genshin Impact 5-star sidegrade (element-niche).
League of Legends VGU + item rework.
💻 패턴
Numeric drift detection
# Patch-over-patch stat inflation trackerimportpandasaspddefdetect_creep(units_df:pd.DataFrame,baseline_patch:str)->pd.DataFrame:base=units_df[units_df.patch==baseline_patch].set_index("name")latest=units_df.groupby("name").last()delta=(latest[["hp","dmg"]]-base[["hp","dmg"]])/base[["hp","dmg"]]returndelta[(delta.hp>0.1)|(delta.dmg>0.1)].sort_values("dmg",ascending=False)
Sidegrade design constraint
# Enforce no strict dominance in unit pooldefis_sidegrade(new_unit,pool):foroldinpool:dominated=all(getattr(new_unit,s)>=getattr(old,s)forsin["hp","dmg","speed"])strictly=any(getattr(new_unit,s)>getattr(old,s)forsin["hp","dmg","speed"])ifdominatedandstrictly:returnFalsereturnTrue
Rotation calendar
# rotation.yaml — Standard formatsets:- name:Corerotates:never- name:Eternal_2024rotates:2026-Q3- name:Voyage_2025rotates:2027-Q3
Catch-up mechanic
# Older units gain free re-tuning each major patchdefcatchup_buff(unit,age_patches):ifage_patches>=4andunit.pickrate<0.02:unit.dmg=round(unit.dmg*1.08)
ELO-weighted balance
# Buff units underperforming at high ELO onlydefneeds_buff(stats):returnstats.high_elo_winrate<0.47andstats.low_elo_winrate>0.50
매 결정 기준
상황
Approach
Live PvP game
Sidegrade + rotation
Gacha PvE
Controlled creep + catch-up banners
Collectible TCG
Annual Standard rotation
Single-player RPG
Creep OK (no competitive frame)
기본값: Sidegrade design + 매 rotation/catch-up safety net.