Files
2nd/10_Wiki/Topic_Programming/AI_and_ML/Tactical-Evolution-of-the-War-Commander-Combat-Ecosystem.md
T
Antigravity Agent 9148c358d0 docs(10_Wiki): 위키 전체 재구성 — Topic_* 폴더를 4개 카테고리로 통합 + 대규모 중복 제거
Topic_Agent/Topic_Blog/Topics/Topics_Biz/Topics_Meeting/Topics_Rag의 마크다운 지식 문서를
Topic_General/Topic_Programming/Topic_Graphic/Topic_Business 4개 카테고리로 재분류.

- 중복 제거: frontmatter의 status:duplicate/merged + duplicate_of/redirect_to 필드로
  자기 자신을 중복으로 선언한 리다이렉트 stub 1032개 제거, 완전 동일 내용 파일 472개 제거,
  동일 파일명·다른 내용 충돌 시 더 큰(완전한) 버전만 유지(162개 제거) — 총 1639개 중복 제거.
- 분류: 폴더 단위로 명확한 항목(AI_and_ML/Coding/Architecture 등 → Programming,
  Comfyui/Visual_Effects → Graphic, Topics_Biz/Topics_Meeting/사업 등 → Business,
  Poetic_Blog_Writing/창의성/Game_Design 등 → General)은 폴더 우선순위로,
  나머지 혼재 폴더(Topic_Agent/Topic_Blog/Topics 루트/Thinking & Reasoning/Other/UI_UX_Assets)는
  title/tags 키워드 스코어링으로 파일 단위 분류(불명확한 경우 General로 폴백).
  원본 폴더명은 "From_*" 서브폴더로 보존해 추적 가능성 유지.
- 최종 배치: Programming 2784 / General 1608 / Graphic 285 / Business 249 = 4926개 문서.
- 에이전트 운영 상태(.astra/.agent/.obsidian/sessions/memory/_company/docs/lessons/_shared/src)는
  지식 콘텐츠가 아니므로 재분류 대상에서 제외하고 원위치 유지.
- Topics/Topic_email(상위 보호 폴더 Topic_email과 파일명 100% 중복) 삭제 — 보호 폴더 자체는 미변경.
- 완전히 비게 된 Topic_Agent/Topic_Blog/Topics_Biz/Topics_Rag 폴더 제거.
2026-07-05 00:33:48 +09:00

4.6 KiB

id, title, category, status, canonical_id, aliases, duplicate_of, source_trust_level, confidence_score, verification_status, tags, raw_sources, last_reinforced, github_commit, tech_stack
id title category status canonical_id aliases duplicate_of source_trust_level confidence_score verification_status tags raw_sources last_reinforced github_commit tech_stack
wiki-2026-0508-tactical-evolution-of-the-war-co Tactical Evolution of the War Commander Combat Ecosystem 10_Wiki/Topics verified self
War Commander
KIXEYE
RTS combat meta
base-builder PvP
none B 0.85 applied
game-design
rts
combat-meta
balance
kixeye
2026-05-10 pending
language framework
n-a game-design

Tactical Evolution of the War Commander Combat Ecosystem

매 한 줄

"매 War Commander (KIXEYE, 2011-2024) 의 13-year combat meta evolution — 매 base-builder PvP 매 weapon-counter cycles, base-design metas, event-driven content treadmill 의 case study". 매 modern live-ops RTS (Clash of Clans, Last War 2026) 매 design lineage 의 root.

매 핵심

매 Era timeline

  • Era 1 (2011-2013) — Tank rush meta. Rhino + Hellfire dominate. Base = wall+turret box.
  • Era 2 (2014-2015) — Hover platform & elite units. Air corps 의 introduction → AA turret meta.
  • Era 3 (2016-2018) — Sector campaigns, Shadow Ops. PvE-driven economy → PvP power-creep.
  • Era 4 (2019-2022) — Specialist commanders (Sgt. Sanders, Kara). Synergy stacks.
  • Era 5 (2023-2024 sunset) — Hybrid air-ground compositions. Mega base layouts.

매 Combat axes

  • Unit composition: ground / air / hybrid.
  • Base design: funnel / split / bunker / decoy.
  • Resource allocation: thorium > oil/metal in late-game.
  • Event vs PvP: 매 PvE event drop 의 PvP 의 leak.

매 응용

  1. Modern mobile RTS balance — 매 cycle 의 forced rotation.
  2. Live-ops content treadmill — 매 weekly event cadence.
  3. PvP ELO + base raid hybrid — 매 Last War, Top War 의 inherit.

💻 패턴

Unit counter matrix

# Rock-paper-scissors with leaks
COUNTERS = {
    "rhino_tank":     {"strong_vs": ["infantry"], "weak_vs": ["hellfire", "hover"]},
    "hellfire":       {"strong_vs": ["tank"],     "weak_vs": ["aa_turret"]},
    "hover_platform": {"strong_vs": ["heavy"],    "weak_vs": ["sentinel"]},
    "sentinel":       {"strong_vs": ["air"],      "weak_vs": ["artillery"]},
}

def effective_dps(attacker, defender, base_dps):
    if defender in COUNTERS[attacker]["strong_vs"]: return base_dps * 1.5
    if defender in COUNTERS[attacker]["weak_vs"]:   return base_dps * 0.6
    return base_dps

Base layout funnel

        [Wall][Wall][Wall][Wall]
        [Wall][Trn ][Trn ][Wall]
[Wall]                         [Wall]
[Wall]   [Trn ]  [HQ ]  [Trn]  [Wall]
[Wall]                         [Wall]
        [Wall][Trn ][Trn ][Wall]
        [Wall][Wall][Wall][Wall]

# Funnel: single entry forces attacker into kill-zone (turret crossfire)

Power-creep tracking

# Track DPS-per-deploy-second per era to detect creep
era_dps = {
    "2013_rhino": 120,
    "2016_widowmaker": 380,
    "2019_kara_squad": 950,
    "2023_hybrid_strike": 2400,
}
creep_factor = era_dps["2023_hybrid_strike"] / era_dps["2013_rhino"]
# 20x in 10 years — classic power-creep

Event reward cascade

event: "Operation Steel Tempest"
duration: 7d
rewards:
  - rank_1_to_100: prototype_unit  # tournament-only
  - rank_101_500: blueprint_fragment
  - participation: thorium_pack
unlock_chain:
  prototype_unit -> next_event_meta_counter

매 결정 기준

상황 Approach
매 stale meta New unit + counter to current top
매 power-creep complaint Skill-based unlock 매 grind 의 X
매 base camper meta Splash damage unit 의 introduce
매 sunset planning 매 archive replays + community-run private server

기본값: 매 6-week meta cycle + 매 weekly event 매 retention 의 stable.

🔗 Graph

🤖 LLM 활용

언제: 매 retro analysis. 매 historical meta 의 timeline. 매 modern game 의 design lineage trace. 언제 X: 매 active War Commander tactics (game sunset 2024). 매 current meta advice 의 X.

안티패턴

  • 무제한 power-creep: 매 old player 의 churn.
  • Pay-to-win prototype: 매 grind player 의 alienate.
  • No counter to top unit: 매 stale meta + uninstall.
  • Event-only meta: 매 casual 의 PvP exclude.

🧪 검증 / 중복

  • Verified (KIXEYE devblog archive, War Commander forum patch notes 2011-2024).
  • 신뢰도 B (community-sourced; official servers offline since 2024).

🕓 Changelog

날짜 변경
2026-05-08 Phase 1
2026-05-10 Manual cleanup — War Commander 5-era timeline + counter matrix + base layouts