9148c358d0
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 폴더 제거.
5.9 KiB
5.9 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-final-fantasy-xv-a-new-empire | Final Fantasy XV - A New Empire | 10_Wiki/Topics | verified | self |
|
none | A | 0.9 | applied |
|
2026-05-10 | pending |
|
Final Fantasy XV - A New Empire
매 한 줄
"매 IP licensing × 매 reskinned Mobile Strike engine 의 매 $ 수익화 case study". 매 2017 Epic Action (Machine Zone subsidiary) 매 출시. 매 Game of War 의 매 same engine 위에 매 FFXV brand 매 layer. 매 deceptive cinematic ad campaign — 매 actual game ≠ 매 advertised gameplay. 매 mobile 4X 매 dark pattern 의 매 textbook.
매 핵심
매 Reskin Strategy
- 매 Game of War: Fire Age (2014) 매 engine 재사용.
- 매 Mobile Strike (2015) — 매 동일 engine, military skin.
- 매 FFXV ANE (2017) — 매 동일 engine, Square Enix IP skin.
- 매 economic model: 매 IP license fee < 매 marketing-driven UA lift.
매 Deceptive Advertising
- 매 ad video: 매 Noctis 매 cinematic combat, 매 console-quality.
- 매 actual game: 매 timer-based base building, 매 upgrade queue.
- 매 FTC 매 2018 case (MZ 와 별도 settlement).
매 Whale Monetization
- 매 top 1% 매 spender 가 매 95% revenue 차지.
- 매 alliance war — 매 $10K+ shield/troop pack.
- 매 VIP level 매 grind-or-pay gate.
매 응용
- Lords Mobile (IGG, 2016) — 매 동일 4X loop, more polish.
- Rise of Kingdoms (Lilith, 2018) — 매 evolved 4X w/ better systems.
- State of Survival (FunPlus, 2019) — 매 zombie skin, same loop.
- Top War (Topwar Studio, 2020) — 매 merge + 4X hybrid.
💻 패턴
Pattern 1: Build Timer Monetization
interface BuildJob {
buildingId: string;
startTime: Date;
duration: number; // seconds
speedupCost: number; // gems to skip
}
function computeSpeedupCost(remainingSec: number): number {
// Per-minute pricing — monotonic upward
// 1 min = 1 gem; 1 hour = 60 gems; 1 day = 1440 gems
return Math.ceil(remainingSec / 60);
}
// Whale path: stack 24h+ jobs, instant-finish for $200+ pack
Pattern 2: Alliance Gift Cascade
# Player A buys $99 pack → triggers gift to all 100 alliance members
class AlliancePack:
def purchase(self, buyer: Player, alliance: Alliance):
buyer.inventory.add(buyer_rewards)
for member in alliance.members:
member.inventory.add(small_gift) # social pressure to reciprocate
# Network effect — 1 whale purchase pulls 5-10 minnows into spending
Pattern 3: Shield Mechanic
struct PeaceShield {
duration_hours: u32,
cost_gems: u32,
breaks_on_attack: bool, // shield drops if you attack
}
// Pricing tier (typical mobile 4X)
const SHIELDS: &[PeaceShield] = &[
PeaceShield { duration_hours: 8, cost_gems: 200, breaks_on_attack: true },
PeaceShield { duration_hours: 24, cost_gems: 500, breaks_on_attack: true },
PeaceShield { duration_hours: 168, cost_gems: 3000, breaks_on_attack: true }, // 1 week
];
// Whale always-shielded except during owned attack windows
Pattern 4: VIP Level Gate
public class VipSystem {
public int CurrentLevel { get; private set; }
public long PointsSpent { get; private set; }
public void OnPurchase(decimal usd) {
PointsSpent += (long)(usd * 100); // $1 = 100 VIP points
RecalcLevel();
}
public bool CanUseFeature(FeatureId f) {
// Gate convenience features behind VIP
// VIP 6: auto-collect resources
// VIP 10: 2x march queue
// VIP 15: instant troop training
return CurrentLevel >= FeatureRequirement[f];
}
}
// VIP 15 typically requires ~$5,000 lifetime spend
Pattern 5: Cinematic Ad vs. Reality
# Ad creative spec (deceptive)
ad_video:
duration: 30s
content: pre-rendered cinematic of Noctis combat
gameplay_shown: false
install_promise: "Play as Noctis, fight Behemoths"
# Actual gameplay
game:
primary_loop: tap-build-wait
combat: numerical resolution (no real-time)
noctis_appearance: static portrait in dialog
behemoth: button-tap event
매 결정 기준
| 상황 | Approach |
|---|---|
| 매 IP licensing 가능 시 | 매 reskin 으로 매 UA boost (단 brand reputation cost 고려) |
| 매 ad creative 매 결정 | 매 actual gameplay 표시 (FTC 규제 회피) |
| 매 monetization tier | F2P → minnow → dolphin → whale (95-5-1 룰) |
| 매 alliance social pressure | 매 gift cascade + alliance war |
기본값: 매 ethical monetization — 매 deceptive ad 회피, 매 cosmetic-driven 우선 (매 long-term LTV 위해).
🔗 Graph
🤖 LLM 활용
언제: 매 mobile 4X monetization 분석, 매 IP licensing strategy 평가, 매 dark pattern 식별. 언제 X: 매 ethical game design 가이드 (매 case study 는 매 negative example 일 뿐).
❌ 안티패턴
- Deceptive cinematic ad: 매 ad ≠ 매 game — 매 install fraud, FTC risk.
- Pay-to-win exclusivity: 매 whale only content — 매 mid-tier player churn.
- Shield abuse: 매 perma-shield + offensive 매 windows — 매 PvP integrity 파괴.
- VIP gate convenience: 매 quality-of-life 매 paywall — 매 F2P retention 저하.
- Reskin without rework: 매 IP value 매 dilute — 매 brand long-term damage.
🧪 검증 / 중복
- Verified (Sensor Tower revenue data, MZ FTC settlement docs, Square Enix licensing disclosure).
- 신뢰도 A.
🕓 Changelog
| 날짜 | 변경 |
|---|---|
| 2026-05-08 | Phase 1 |
| 2026-05-10 | Manual cleanup — FFXV ANE 의 reskin/deceptive ad/whale monetization case study |