docs: archive character art briefs
@ -0,0 +1,403 @@
|
|||||||
|
<!doctype html>
|
||||||
|
<html lang="zh-CN">
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
|
<title>第6阵营:命莲英格兰立绘需求</title>
|
||||||
|
<style>
|
||||||
|
:root {
|
||||||
|
--bg: #f4f1ea;
|
||||||
|
--paper: #fffaf0;
|
||||||
|
--ink: #1f2528;
|
||||||
|
--muted: #667078;
|
||||||
|
--line: #c9c0b1;
|
||||||
|
--navy: #1d3654;
|
||||||
|
--gold: #ad8737;
|
||||||
|
--iron: #606568;
|
||||||
|
--red: #8b2e2e;
|
||||||
|
}
|
||||||
|
* { box-sizing: border-box; }
|
||||||
|
body {
|
||||||
|
margin: 0;
|
||||||
|
background: var(--bg);
|
||||||
|
color: var(--ink);
|
||||||
|
font-family: "Microsoft YaHei", "Noto Sans SC", Arial, sans-serif;
|
||||||
|
line-height: 1.45;
|
||||||
|
}
|
||||||
|
main {
|
||||||
|
max-width: 1280px;
|
||||||
|
margin: 0 auto;
|
||||||
|
padding: 28px;
|
||||||
|
}
|
||||||
|
header.top {
|
||||||
|
border-bottom: 2px solid var(--ink);
|
||||||
|
padding-bottom: 16px;
|
||||||
|
margin-bottom: 22px;
|
||||||
|
}
|
||||||
|
h1, h2, h3, h4, p { margin: 0; }
|
||||||
|
h1 { font-size: 30px; letter-spacing: 0; }
|
||||||
|
h2 {
|
||||||
|
margin: 24px 0 10px;
|
||||||
|
padding-left: 10px;
|
||||||
|
border-left: 5px solid var(--gold);
|
||||||
|
font-size: 18px;
|
||||||
|
}
|
||||||
|
h3 { font-size: 20px; color: var(--navy); }
|
||||||
|
h4 { margin-bottom: 5px; font-size: 14px; color: var(--red); }
|
||||||
|
a { color: var(--navy); text-decoration: underline; }
|
||||||
|
.sub { margin-top: 8px; color: var(--muted); font-size: 14px; }
|
||||||
|
.chips {
|
||||||
|
display: flex;
|
||||||
|
flex-wrap: wrap;
|
||||||
|
gap: 8px;
|
||||||
|
margin-top: 12px;
|
||||||
|
}
|
||||||
|
.chip {
|
||||||
|
border: 1px solid var(--line);
|
||||||
|
background: var(--paper);
|
||||||
|
padding: 5px 9px;
|
||||||
|
font-size: 13px;
|
||||||
|
}
|
||||||
|
table {
|
||||||
|
width: 100%;
|
||||||
|
border-collapse: collapse;
|
||||||
|
background: var(--paper);
|
||||||
|
border: 1px solid var(--line);
|
||||||
|
}
|
||||||
|
th, td {
|
||||||
|
border: 1px solid var(--line);
|
||||||
|
padding: 8px 9px;
|
||||||
|
text-align: left;
|
||||||
|
vertical-align: top;
|
||||||
|
font-size: 14px;
|
||||||
|
}
|
||||||
|
th {
|
||||||
|
background: var(--navy);
|
||||||
|
color: white;
|
||||||
|
font-weight: 600;
|
||||||
|
}
|
||||||
|
.steps, .design-grid {
|
||||||
|
display: grid;
|
||||||
|
grid-template-columns: repeat(4, minmax(0, 1fr));
|
||||||
|
gap: 10px;
|
||||||
|
}
|
||||||
|
.step, .cell, .note {
|
||||||
|
background: var(--paper);
|
||||||
|
border: 1px solid var(--line);
|
||||||
|
border-radius: 6px;
|
||||||
|
padding: 10px;
|
||||||
|
font-size: 14px;
|
||||||
|
}
|
||||||
|
.char {
|
||||||
|
margin-top: 18px;
|
||||||
|
padding: 14px;
|
||||||
|
background: rgba(255, 250, 240, .72);
|
||||||
|
border: 1px solid var(--line);
|
||||||
|
border-radius: 8px;
|
||||||
|
}
|
||||||
|
.char-head {
|
||||||
|
display: flex;
|
||||||
|
justify-content: space-between;
|
||||||
|
gap: 12px;
|
||||||
|
align-items: baseline;
|
||||||
|
margin-bottom: 10px;
|
||||||
|
}
|
||||||
|
.role {
|
||||||
|
color: var(--gold);
|
||||||
|
font-weight: 600;
|
||||||
|
font-size: 14px;
|
||||||
|
}
|
||||||
|
.refs {
|
||||||
|
display: grid;
|
||||||
|
grid-template-columns: repeat(4, minmax(0, 1fr));
|
||||||
|
gap: 10px;
|
||||||
|
margin-top: 12px;
|
||||||
|
}
|
||||||
|
figure {
|
||||||
|
margin: 0;
|
||||||
|
background: var(--paper);
|
||||||
|
border: 1px solid var(--line);
|
||||||
|
border-radius: 6px;
|
||||||
|
overflow: hidden;
|
||||||
|
}
|
||||||
|
figure img {
|
||||||
|
display: block;
|
||||||
|
width: 100%;
|
||||||
|
height: 210px;
|
||||||
|
object-fit: contain;
|
||||||
|
background: #e8e2d6;
|
||||||
|
}
|
||||||
|
figcaption {
|
||||||
|
padding: 8px;
|
||||||
|
font-size: 12px;
|
||||||
|
color: var(--ink);
|
||||||
|
}
|
||||||
|
figcaption b { color: var(--navy); }
|
||||||
|
.warn { color: var(--red); font-weight: 600; }
|
||||||
|
.palette {
|
||||||
|
display: flex;
|
||||||
|
gap: 6px;
|
||||||
|
align-items: center;
|
||||||
|
flex-wrap: wrap;
|
||||||
|
}
|
||||||
|
.sw {
|
||||||
|
width: 18px;
|
||||||
|
height: 18px;
|
||||||
|
border: 1px solid rgba(0,0,0,.25);
|
||||||
|
display: inline-block;
|
||||||
|
}
|
||||||
|
@media (max-width: 980px) {
|
||||||
|
.steps, .design-grid, .refs { grid-template-columns: repeat(2, minmax(0, 1fr)); }
|
||||||
|
}
|
||||||
|
@media (max-width: 640px) {
|
||||||
|
main { padding: 16px; }
|
||||||
|
h1 { font-size: 24px; }
|
||||||
|
.steps, .design-grid, .refs { grid-template-columns: 1fr; }
|
||||||
|
.char-head { display: block; }
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<main>
|
||||||
|
<header class="top">
|
||||||
|
<h1>第6阵营:命莲英格兰</h1>
|
||||||
|
<p class="sub">维多利亚王权 + 海军军服 + 航海测绘 + 蒸汽工业 + 哥特复兴纹饰</p>
|
||||||
|
<div class="chips">
|
||||||
|
<span class="chip">先定基础元素</span>
|
||||||
|
<span class="chip">再定色彩剪影</span>
|
||||||
|
<span class="chip">再定动作表情</span>
|
||||||
|
<span class="chip">最后加文明纹饰</span>
|
||||||
|
<span class="chip">参考图在 refs/</span>
|
||||||
|
</div>
|
||||||
|
</header>
|
||||||
|
|
||||||
|
<section>
|
||||||
|
<h2>设计流程</h2>
|
||||||
|
<div class="steps">
|
||||||
|
<div class="step"><h4>1 基础元素</h4><p>东方识别点 + 历史原型服装。</p></div>
|
||||||
|
<div class="step"><h4>2 色彩剪影</h4><p>海军蓝、雾灰、白、金、铁。</p></div>
|
||||||
|
<div class="step"><h4>3 动作表情</h4><p>一眼读出位阶和性格。</p></div>
|
||||||
|
<div class="step"><h4>4 文明纹饰</h4><p>勋章、绶带、罗盘、铆钉、哥特拱。</p></div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<section>
|
||||||
|
<h2>角色映射</h2>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr><th>位阶</th><th>角色</th><th>历史锚点</th><th>核心读法</th></tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr><td>王</td><td>圣白莲</td><td>维多利亚女王</td><td>慈悲女王</td></tr>
|
||||||
|
<tr><td>后</td><td>寅丸星</td><td>威灵顿公爵</td><td>圣塔元帅</td></tr>
|
||||||
|
<tr><td>相</td><td>娜兹琳</td><td>罗伯特·皮尔</td><td>秩序宰相</td></tr>
|
||||||
|
<tr><td>马</td><td>村纱水蜜</td><td>霍雷肖·纳尔逊</td><td>幽灵旗舰</td></tr>
|
||||||
|
<tr><td>车</td><td>云居一轮</td><td>布鲁内尔</td><td>蒸汽巨构</td></tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<section>
|
||||||
|
<h2>证据规则</h2>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr><th>等级</th><th>可用来源</th><th>用法</th></tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr><td>A</td><td>博物馆 / 王室 / 海军 / 美术馆馆藏页</td><td>服装、道具、纹饰证据</td></tr>
|
||||||
|
<tr><td>B</td><td>官方东方立绘转引页</td><td>角色识别点,不复制画风</td></tr>
|
||||||
|
<tr><td>C</td><td>Commons 展示图 + 原机构信用</td><td>看图用,证据仍看原机构</td></tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<section>
|
||||||
|
<h2>全局纹饰</h2>
|
||||||
|
<div class="refs">
|
||||||
|
<figure>
|
||||||
|
<img src="refs/vam_standing_collar_bodice_1890.jpg" alt="V&A standing collar bodice">
|
||||||
|
<figcaption><b>证据</b> V&A O1298512, c.1890。<br><b>用</b> 立领、收腰。<br><b>禁</b> 整裙照搬。<br><a href="https://collections.vam.ac.uk/item/O1298512">source</a></figcaption>
|
||||||
|
</figure>
|
||||||
|
<figure>
|
||||||
|
<img src="refs/vam_leg_mutton_sleeves_1895.jpg" alt="V&A leg of mutton sleeves">
|
||||||
|
<figcaption><b>证据</b> V&A O117725, 1895。<br><b>用</b> 肩袖体量。<br><b>禁</b> 过度膨胀。<br><a href="https://collections.vam.ac.uk/item/O117725">source</a></figcaption>
|
||||||
|
</figure>
|
||||||
|
<figure>
|
||||||
|
<img src="refs/met_palace_paneling.jpg" alt="Met Palace of Westminster paneling">
|
||||||
|
<figcaption><b>证据</b> The Met 2015.674。<br><b>用</b> 哥特竖线、拱形。<br><b>禁</b> 宗教化。<br><a href="https://www.metmuseum.org/art/collection/search/698523">source</a></figcaption>
|
||||||
|
</figure>
|
||||||
|
<figure>
|
||||||
|
<img src="refs/met_gothic_bread_plate.jpg" alt="Met Gothic Revival bread plate">
|
||||||
|
<figcaption><b>证据</b> The Met 1994.371, ca.1850。<br><b>用</b> 圆章、金蓝边。<br><b>禁</b> 英国国旗直贴。<br><a href="https://www.metmuseum.org/art/collection/search/208192">source</a></figcaption>
|
||||||
|
</figure>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<section>
|
||||||
|
<h2>角色需求</h2>
|
||||||
|
|
||||||
|
<article class="char">
|
||||||
|
<div class="char-head">
|
||||||
|
<h3>圣白莲</h3>
|
||||||
|
<p class="role">王 / 维多利亚女王</p>
|
||||||
|
</div>
|
||||||
|
<div class="design-grid">
|
||||||
|
<div class="cell"><h4>1 基础元素</h4><p>白发、经卷、僧侣感、小冠冕、礼服披纱。</p></div>
|
||||||
|
<div class="cell"><h4>2 色彩剪影</h4><p class="palette"><span class="sw" style="background:#f6f0df"></span><span class="sw" style="background:#10131a"></span><span class="sw" style="background:#b08a3a"></span><span class="sw" style="background:#5b4b87"></span>白 / 黑 / 金 / 紫。钟形裙。</p></div>
|
||||||
|
<div class="cell"><h4>3 动作表情</h4><p>垂眼微笑。一手经卷或权杖,一手护胸。</p></div>
|
||||||
|
<div class="cell"><h4>4 文明纹饰</h4><p>王冠、绶带、蕾丝、哥特拱。<span class="warn">避殖民符号。</span></p></div>
|
||||||
|
</div>
|
||||||
|
<div class="refs">
|
||||||
|
<figure>
|
||||||
|
<img src="refs/project_britian_byakuren.png" alt="TH1 British Byakuren">
|
||||||
|
<figcaption><b>证据</b> TH1 现有英格兰白莲。<br><b>用</b> 当前方向、冠、披纱。<br><b>禁</b> 新案推翻。</figcaption>
|
||||||
|
</figure>
|
||||||
|
<figure>
|
||||||
|
<img src="refs/touhou_byakuren_official.webp" alt="Touhou Byakuren official art">
|
||||||
|
<figcaption><b>证据</b> 东方官方立绘转引。<br><b>用</b> 发色、经卷、脸型。<br><b>禁</b> 复制画风。<br><a href="https://touhou.fandom.com/wiki/Byakuren_Hijiri">source</a></figcaption>
|
||||||
|
</figure>
|
||||||
|
<figure>
|
||||||
|
<img src="refs/qv_hayter.jpg" alt="Queen Victoria Hayter coronation portrait">
|
||||||
|
<figcaption><b>证据</b> Royal Collection RCIN 401213。<br><b>用</b> 冠冕、权杖、红金层级。<br><b>禁</b> 全套照搬。<br><a href="https://www.rct.uk/collection/401213/queen-victoria-1819-1901">source</a></figcaption>
|
||||||
|
</figure>
|
||||||
|
<figure>
|
||||||
|
<img src="refs/qv_winterhalter.jpg" alt="Queen Victoria Winterhalter portrait">
|
||||||
|
<figcaption><b>证据</b> Royal Collection RCIN 405131。<br><b>用</b> 披纱、白裙、坐姿威严。<br><b>禁</b> 纯婚纱化。<br><a href="https://www.rct.uk/collection/405131/queen-victoria-1819-1901">source</a></figcaption>
|
||||||
|
</figure>
|
||||||
|
</div>
|
||||||
|
</article>
|
||||||
|
|
||||||
|
<article class="char">
|
||||||
|
<div class="char-head">
|
||||||
|
<h3>寅丸星</h3>
|
||||||
|
<p class="role">后 / 威灵顿公爵</p>
|
||||||
|
</div>
|
||||||
|
<div class="design-grid">
|
||||||
|
<div class="cell"><h4>1 基础元素</h4><p>虎耳、虎纹、宝塔、长枪、元帅军服。</p></div>
|
||||||
|
<div class="cell"><h4>2 色彩剪影</h4><p class="palette"><span class="sw" style="background:#d8a33c"></span><span class="sw" style="background:#f4f0df"></span><span class="sw" style="background:#151923"></span><span class="sw" style="background:#243f68"></span>金 / 白 / 黑 / 靛。肩章宽。</p></div>
|
||||||
|
<div class="cell"><h4>3 动作表情</h4><p>正视。长枪立地,宝塔在胸前。</p></div>
|
||||||
|
<div class="cell"><h4>4 文明纹饰</h4><p>勋章、绶带、金扣。虎纹只做边饰。</p></div>
|
||||||
|
</div>
|
||||||
|
<div class="refs">
|
||||||
|
<figure>
|
||||||
|
<img src="refs/touhou_shou_official.webp" alt="Touhou Shou official art">
|
||||||
|
<figcaption><b>证据</b> 东方官方立绘转引。<br><b>用</b> 虎耳、宝塔、枪。<br><b>禁</b> 去掉虎识别。<br><a href="https://touhou.fandom.com/wiki/Shou_Toramaru">source</a></figcaption>
|
||||||
|
</figure>
|
||||||
|
<figure>
|
||||||
|
<img src="refs/wellington_lawrence.jpg" alt="Wellington Lawrence portrait">
|
||||||
|
<figcaption><b>证据</b> Royal Collection RCIN 405147。<br><b>用</b> 军服、披风、立姿。<br><b>禁</b> 男性体型复制。<br><a href="https://www.rct.uk/collection/405147/arthur-wellesley-1st-duke-of-wellington-1769-1852">source</a></figcaption>
|
||||||
|
</figure>
|
||||||
|
<figure>
|
||||||
|
<img src="refs/wellington_goya.jpg" alt="Wellington Goya portrait">
|
||||||
|
<figcaption><b>证据</b> National Gallery NG6322。<br><b>用</b> 勋章密度、深色披风。<br><b>禁</b> 阴郁脸。<br><a href="https://www.nationalgallery.org.uk/paintings/francisco-de-goya-the-duke-of-wellington">source</a></figcaption>
|
||||||
|
</figure>
|
||||||
|
<figure>
|
||||||
|
<img src="refs/wellington_fieldmarshal.jpg" alt="Wellington field marshal portrait">
|
||||||
|
<figcaption><b>证据</b> Google Arts / National Army Museum 转引。<br><b>用</b> 高领、金扣、胸章。<br><b>禁</b> 现代军装化。<br><a href="https://commons.wikimedia.org/wiki/File:Field_Marshal_Arthur_Wellesley,_KG_GCB_-_Google_Art_Project.jpg">source</a></figcaption>
|
||||||
|
</figure>
|
||||||
|
</div>
|
||||||
|
</article>
|
||||||
|
|
||||||
|
<article class="char">
|
||||||
|
<div class="char-head">
|
||||||
|
<h3>娜兹琳</h3>
|
||||||
|
<p class="role">相 / 罗伯特·皮尔</p>
|
||||||
|
</div>
|
||||||
|
<div class="design-grid">
|
||||||
|
<div class="cell"><h4>1 基础元素</h4><p>鼠耳、尾巴、探宝杖、账册、怀表、警务徽章。</p></div>
|
||||||
|
<div class="cell"><h4>2 色彩剪影</h4><p class="palette"><span class="sw" style="background:#8b8f92"></span><span class="sw" style="background:#1f3140"></span><span class="sw" style="background:#a46b3c"></span><span class="sw" style="background:#f2ead6"></span>灰 / 深蓝 / 铜 / 白。维多利亚短外套。</p></div>
|
||||||
|
<div class="cell"><h4>3 动作表情</h4><p>半眯眼。探宝杖压在账册上,另一手拿怀表或折叠警务备忘。</p></div>
|
||||||
|
<div class="cell"><h4>4 文明纹饰</h4><p>警务编号感、账册格线、黄铜扣、哥特书房纹样。</p></div>
|
||||||
|
</div>
|
||||||
|
<div class="refs">
|
||||||
|
<figure>
|
||||||
|
<img src="refs/touhou_nazrin_official.webp" alt="Touhou Nazrin official art">
|
||||||
|
<figcaption><b>证据</b> 东方官方立绘转引。<br><b>用</b> 鼠耳、尾巴、探宝杖。<br><b>禁</b> 内政官替换本体。<br><a href="https://touhou.fandom.com/wiki/Nazrin">source</a></figcaption>
|
||||||
|
</figure>
|
||||||
|
<figure>
|
||||||
|
<img src="refs/peel_linnell.jpg" alt="Robert Peel portrait">
|
||||||
|
<figcaption><b>证据</b> John Linnell 皮尔肖像,National Portrait Gallery 信用。<br><b>用</b> 黑色礼服、白领、端正首相气质。<br><b>禁</b> 照搬男性体型和严肃老相。<br><a href="https://commons.wikimedia.org/wiki/File:Sir_Robert_Peel,_2nd_Bt_by_John_Linnell.jpg">source</a></figcaption>
|
||||||
|
</figure>
|
||||||
|
<figure>
|
||||||
|
<img src="refs/met_gothic_bread_plate.jpg" alt="Gothic Revival metalwork">
|
||||||
|
<figcaption><b>证据</b> The Met 1994.371,哥特复兴器物。<br><b>用</b> 金蓝圆章、编号牌、徽章边框。<br><b>禁</b> 直接当宗教徽记。<br><a href="https://www.metmuseum.org/art/collection/search/208192">source</a></figcaption>
|
||||||
|
</figure>
|
||||||
|
<figure>
|
||||||
|
<img src="refs/met_gothic_library.jpg" alt="Met Gothic Library">
|
||||||
|
<figcaption><b>证据</b> The Met Inst.1977.7.1, 1859。<br><b>用</b> 木、铜、账册书房参谋感。<br><b>禁</b> 堆成室内背景。<br><a href="https://www.metmuseum.org/art/collection/search/4136">source</a></figcaption>
|
||||||
|
</figure>
|
||||||
|
</div>
|
||||||
|
</article>
|
||||||
|
|
||||||
|
<article class="char">
|
||||||
|
<div class="char-head">
|
||||||
|
<h3>村纱水蜜</h3>
|
||||||
|
<p class="role">马 / 霍雷肖·纳尔逊</p>
|
||||||
|
</div>
|
||||||
|
<div class="design-grid">
|
||||||
|
<div class="cell"><h4>1 基础元素</h4><p>水手帽、蓝白服、船锚、幽灵感、海军军服。</p></div>
|
||||||
|
<div class="cell"><h4>2 色彩剪影</h4><p class="palette"><span class="sw" style="background:#18304d"></span><span class="sw" style="background:#f7f4e8"></span><span class="sw" style="background:#b89145"></span><span class="sw" style="background:#4ba8a0"></span>海军蓝 / 白 / 金 / 青。斜披风。</p></div>
|
||||||
|
<div class="cell"><h4>3 动作表情</h4><p>爽朗偏悲壮。锚斜扛,披风像船帆。</p></div>
|
||||||
|
<div class="cell"><h4>4 文明纹饰</h4><p>军扣、肩章、舰旗线、雾青幽光。</p></div>
|
||||||
|
</div>
|
||||||
|
<div class="refs">
|
||||||
|
<figure>
|
||||||
|
<img src="refs/touhou_murasa_official.webp" alt="Touhou Murasa official art">
|
||||||
|
<figcaption><b>证据</b> 东方官方立绘转引。<br><b>用</b> 水手帽、船锚、蓝白。<br><b>禁</b> 海盗化。<br><a href="https://touhou.fandom.com/wiki/Minamitsu_Murasa">source</a></figcaption>
|
||||||
|
</figure>
|
||||||
|
<figure>
|
||||||
|
<img src="refs/nelson_portrait.jpg" alt="Nelson portrait">
|
||||||
|
<figcaption><b>证据</b> RMG BHC2889, Lemuel Francis Abbott。<br><b>用</b> 海军胸章、肩章、帽形。<br><b>禁</b> 严肃老成脸。<br><a href="https://www.rmg.co.uk/collections/objects/rmgc-object-14362">source</a></figcaption>
|
||||||
|
</figure>
|
||||||
|
<figure>
|
||||||
|
<img src="refs/nelson_coat_front.jpg" alt="Nelson coat front">
|
||||||
|
<figcaption><b>证据</b> RMG UNI0024, Trafalgar coat。<br><b>用</b> 金扣排布、短外套。<br><b>禁</b> 战损血腥。<br><a href="https://www.rmg.co.uk/collections/objects/rmgc-object-606100">source</a></figcaption>
|
||||||
|
</figure>
|
||||||
|
<figure>
|
||||||
|
<img src="refs/nelson_full_length.jpg" alt="Nelson naval uniform full-length portrait">
|
||||||
|
<figcaption><b>证据</b> 纳尔逊海军制服全身肖像转引。<br><b>用</b> 立姿、长靴、深色军服比例。<br><b>禁</b> 严肃老成脸。<br><a href="https://commons.wikimedia.org/wiki/File:Rear-Admiral_Sir_Horatio_Nelson,_1st_Viscount_Nelson.jpg">source</a></figcaption>
|
||||||
|
</figure>
|
||||||
|
</div>
|
||||||
|
</article>
|
||||||
|
|
||||||
|
<article class="char">
|
||||||
|
<div class="char-head">
|
||||||
|
<h3>云居一轮</h3>
|
||||||
|
<p class="role">车 / 布鲁内尔</p>
|
||||||
|
</div>
|
||||||
|
<div class="design-grid">
|
||||||
|
<div class="cell"><h4>1 基础元素</h4><p>头巾、拳法、云山、工程护臂、巨构感。</p></div>
|
||||||
|
<div class="cell"><h4>2 色彩剪影</h4><p class="palette"><span class="sw" style="background:#606568"></span><span class="sw" style="background:#f1ead8"></span><span class="sw" style="background:#7a5136"></span><span class="sw" style="background:#9a2f2f"></span>铁灰 / 白 / 褐 / 红。上重下稳。</p></div>
|
||||||
|
<div class="cell"><h4>3 动作表情</h4><p>可靠微笑。拳在前,云山作背后巨拳。</p></div>
|
||||||
|
<div class="cell"><h4>4 文明纹饰</h4><p>铁链、铆钉、桥拱、工程皮带。</p></div>
|
||||||
|
</div>
|
||||||
|
<div class="refs">
|
||||||
|
<figure>
|
||||||
|
<img src="refs/touhou_ichirin_official.webp" alt="Touhou Ichirin official art">
|
||||||
|
<figcaption><b>证据</b> 东方官方立绘转引。<br><b>用</b> 头巾、僧兵、拳姿。<br><b>禁</b> 工程服吞掉角色。<br><a href="https://touhou.fandom.com/wiki/Ichirin_Kumoi">source</a></figcaption>
|
||||||
|
</figure>
|
||||||
|
<figure>
|
||||||
|
<img src="refs/touhou_unzan_official.webp" alt="Touhou Unzan official art">
|
||||||
|
<figcaption><b>证据</b> 东方官方立绘转引。<br><b>用</b> 云山轮廓、巨拳。<br><b>禁</b> 机械替换云山。<br><a href="https://touhou.fandom.com/wiki/Unzan">source</a></figcaption>
|
||||||
|
</figure>
|
||||||
|
<figure>
|
||||||
|
<img src="refs/brunel_chains.jpg" alt="Brunel with Great Eastern chains">
|
||||||
|
<figcaption><b>证据</b> The Met 2005.100.11, Robert Howlett。<br><b>用</b> 工程姿态、铁链尺度。<br><b>禁</b> 雪茄、男性复制。<br><a href="https://www.metmuseum.org/art/collection/search/283083">source</a></figcaption>
|
||||||
|
</figure>
|
||||||
|
<figure>
|
||||||
|
<img src="refs/met_palace_paneling.jpg" alt="Gothic structural paneling">
|
||||||
|
<figcaption><b>证据</b> The Met 2015.674。<br><b>用</b> 桥拱线、铁构重复。<br><b>禁</b> 教堂化。<br><a href="https://www.metmuseum.org/art/collection/search/698523">source</a></figcaption>
|
||||||
|
</figure>
|
||||||
|
</div>
|
||||||
|
</article>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<section>
|
||||||
|
<h2>交付要求</h2>
|
||||||
|
<div class="note">
|
||||||
|
全身立绘。头像裁切可读。PSD 分层。道具独立层。参考图只取结构,不照搬构图。禁用殖民、种族、宗教冒犯符号。
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
</main>
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
|
After Width: | Height: | Size: 123 KiB |
|
After Width: | Height: | Size: 255 KiB |
|
After Width: | Height: | Size: 223 KiB |
|
After Width: | Height: | Size: 204 KiB |
|
After Width: | Height: | Size: 573 KiB |
|
After Width: | Height: | Size: 2.8 MiB |
|
After Width: | Height: | Size: 2.0 MiB |
|
After Width: | Height: | Size: 3.1 MiB |
|
After Width: | Height: | Size: 147 KiB |
|
After Width: | Height: | Size: 58 KiB |
|
After Width: | Height: | Size: 251 KiB |
|
After Width: | Height: | Size: 286 KiB |
|
After Width: | Height: | Size: 2.6 MiB |
|
After Width: | Height: | Size: 441 KiB |
|
After Width: | Height: | Size: 252 KiB |
|
After Width: | Height: | Size: 405 KiB |
|
After Width: | Height: | Size: 120 KiB |
|
After Width: | Height: | Size: 73 KiB |
|
After Width: | Height: | Size: 19 KiB |
|
After Width: | Height: | Size: 97 KiB |
|
After Width: | Height: | Size: 35 KiB |
|
After Width: | Height: | Size: 121 KiB |
|
After Width: | Height: | Size: 81 KiB |
|
After Width: | Height: | Size: 85 KiB |
|
After Width: | Height: | Size: 124 KiB |
|
After Width: | Height: | Size: 154 KiB |
|
After Width: | Height: | Size: 222 KiB |
|
After Width: | Height: | Size: 283 KiB |
96
Design/final/narrative/character-art-briefs/index.html
Normal file
@ -0,0 +1,96 @@
|
|||||||
|
<!doctype html>
|
||||||
|
<html lang="zh-CN">
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
|
<title>TH1 角色立绘设计需求索引</title>
|
||||||
|
<style>
|
||||||
|
:root {
|
||||||
|
--bg: #f4f1ea;
|
||||||
|
--paper: #fffaf0;
|
||||||
|
--ink: #1f2528;
|
||||||
|
--muted: #667078;
|
||||||
|
--line: #c9c0b1;
|
||||||
|
--navy: #1d3654;
|
||||||
|
--gold: #ad8737;
|
||||||
|
}
|
||||||
|
* { box-sizing: border-box; }
|
||||||
|
body {
|
||||||
|
margin: 0;
|
||||||
|
background: var(--bg);
|
||||||
|
color: var(--ink);
|
||||||
|
font-family: "Microsoft YaHei", "Noto Sans SC", Arial, sans-serif;
|
||||||
|
line-height: 1.5;
|
||||||
|
}
|
||||||
|
main {
|
||||||
|
max-width: 980px;
|
||||||
|
margin: 0 auto;
|
||||||
|
padding: 28px;
|
||||||
|
}
|
||||||
|
h1, h2, p { margin: 0; }
|
||||||
|
header {
|
||||||
|
border-bottom: 2px solid var(--ink);
|
||||||
|
padding-bottom: 16px;
|
||||||
|
margin-bottom: 22px;
|
||||||
|
}
|
||||||
|
h1 { font-size: 30px; }
|
||||||
|
.sub { margin-top: 8px; color: var(--muted); font-size: 14px; }
|
||||||
|
.grid {
|
||||||
|
display: grid;
|
||||||
|
grid-template-columns: repeat(2, minmax(0, 1fr));
|
||||||
|
gap: 12px;
|
||||||
|
}
|
||||||
|
article {
|
||||||
|
background: var(--paper);
|
||||||
|
border: 1px solid var(--line);
|
||||||
|
border-radius: 8px;
|
||||||
|
padding: 14px;
|
||||||
|
}
|
||||||
|
h2 {
|
||||||
|
font-size: 18px;
|
||||||
|
color: var(--navy);
|
||||||
|
margin-bottom: 8px;
|
||||||
|
}
|
||||||
|
a {
|
||||||
|
color: var(--navy);
|
||||||
|
font-weight: 600;
|
||||||
|
}
|
||||||
|
.tag {
|
||||||
|
display: inline-block;
|
||||||
|
margin-top: 10px;
|
||||||
|
border: 1px solid var(--line);
|
||||||
|
color: var(--gold);
|
||||||
|
padding: 3px 7px;
|
||||||
|
font-size: 12px;
|
||||||
|
}
|
||||||
|
@media (max-width: 720px) {
|
||||||
|
main { padding: 16px; }
|
||||||
|
.grid { grid-template-columns: 1fr; }
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<main>
|
||||||
|
<header>
|
||||||
|
<h1>TH1 角色立绘设计需求索引</h1>
|
||||||
|
<p class="sub">集中归档阵营五职阶角色立绘 brief、legacy HTML 和参考图,避免散落在外部 OneDrive 目录。</p>
|
||||||
|
</header>
|
||||||
|
|
||||||
|
<section class="grid">
|
||||||
|
<article>
|
||||||
|
<h2>命莲帝国 / 英格兰</h2>
|
||||||
|
<p>旧版 legacy HTML 归档,包含本地 refs 参考图。</p>
|
||||||
|
<p><a href="byakuren-myouren/index.html">打开命莲英格兰设计需求</a></p>
|
||||||
|
<span class="tag">legacy imported</span>
|
||||||
|
</article>
|
||||||
|
|
||||||
|
<article>
|
||||||
|
<h2>丰聪耳帝国 / 萨珊波斯</h2>
|
||||||
|
<p>新版五职阶立绘需求:神子、屠自古、青娥、布都、芳香。</p>
|
||||||
|
<p><a href="sasanian-toyosatomimi.html">打开萨珊波斯丰聪耳设计需求</a></p>
|
||||||
|
<span class="tag">current draft</span>
|
||||||
|
</article>
|
||||||
|
</section>
|
||||||
|
</main>
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||