Trounce Domain Genshin Impact คือ — คู่มือ Weekly Boss ฉบับสมบูรณ์ | SiamCafe Blog

Trounce Domain Genshin Impact คือ — คู่มือ Weekly Boss ฉบับสมบูรณ์ | SiamCafe Blog
Trounce Domain Genshin Impact คือ — คู่มือ Weekly Boss ฉบับสมบูรณ์ | SiamCafe Blog

Trounce Domain Weekly Boss

Trounce Domain Genshin Impact Weekly Boss Talent Material Dream Solvent Billet Resin Stormterror Andrius Tartaglia Azhdaha La Signora Raiden

BossRegionElementDifficultyTalent Material
Stormterror DvalinMondstadtAnemoง่ายPlume / Sigh / Claw
AndriusMondstadtCryo/AnemoปานกลางTail / Ring / Locket
Tartaglia (Childe)LiyueHydroปานกลางTusk / Shard / Shadow
AzhdahaLiyueGeo + RotatingยากมากMolten / Hellfire / Bloodjade
La SignoraInazumaCryo/PyroยากMolten / Hellfire / Ashen
Raiden ShogunInazumaElectroยากMudra / Tears / Meaning
ScaramoucheSumeruAnemoปานกลางPuppet / Mirror / Daka

Boss Guide & Team

# === Trounce Domain Boss Guide ===

from dataclasses import dataclass

@dataclass
class BossGuide:
 boss: str
 region: str
 element: str
 mechanic: str
 recommended_team: str
 avoid: str
 tip: str

guides = [
 BossGuide("Stormterror Dvalin",
 "Mondstadt",
 "Anemo",
 "บินรอบ Platform ยิง Weak Point ที่คือ",
 "ตัวไหนัก็ได้ Ranged DPS ดีกว่า (Ganyu Yoimiya)",
 "ไม่มี Element ที่ต้องเลี่ยง",
 "กด Plunge Attack ตอน Dvalin ล้ม DPS สูงสุด"),
 BossGuide("Andrius Wolf",
 "Mondstadt",
 "Cryo + Anemo",
 "Phase 1 Cryo/Anemo Phase 2 Cryo/Anemo Only",
 "Pyro DPS (Hu Tao Diluc Yoimiya) + Healer",
 "Cryo Anemo ไม่ได้ Phase 2 Physical ไม่ได้",
 "Dodge ตอน Wolf Dash ไปด้านข้าง"),
 BossGuide("Tartaglia Childe",
 "Liyue",
 "Hydro",
 "3 Phase Ranged → Melee → Electro-Hydro",
 "Freeze Team (Ayaka Ganyu) หรือ National Team",
 "ไม่มี Element ที่ต้องเลี่ยง",
 "Phase 3 Whale Attack Dodge ไปด้านข้าง"),
 BossGuide("Azhdaha",
 "Liyue",
 "Geo + 2 Rotating Elements",
 "Phase 1 Geo Phase 2-3 เพิ่ม Element สุ่มทุกสัปดาห์",
 "Zhongli Shield จำเป็น + Counter Element DPS",
 "Element ตาม Phase ดูก่อนเข้า",
 "ยืนใต้ท้อง Azhdaha ลดการโดน Hit"),
 BossGuide("La Signora",
 "Inazuma",
 "Cryo → Pyro",
 "Phase 1 Cryo Shield ใช้ Pyro ทำลาย Phase 2 Pyro Shield ใช้ Hydro/Cryo",
 "Pyro + Hydro DPS (Hu Tao + Xingqiu) หรือ Melt Team",
 "ไม่มี Element เดียวที่ทำได้ทั้ง 2 Phase",
 "เก็บ Moth ร้อน/เย็น ป้องกัน Extreme Temperature"),
 BossGuide("Raiden Shogun",
 "Inazuma",
 "Electro",
 "ต้อง Resolve Electro Shield ใช้ Elemental Skill/Burst",
 "Multi-element Team ใช้ Burst บ่อย (National Variant)",
 "Physical DPS ไม่ดี ต้องใช้ Elemental",
 "Burst i-frame หลบ One-shot Attack"),
]

print("=== Boss Guides ===")
for g in guides:
 print(f"\n [{g.boss}] ({g.region}) Element: {g.element}")
 print(f" Mechanic: {g.mechanic}")
 print(f" Team: {g.recommended_team}")
 print(f" Avoid: {g.avoid}")
 print(f" Tip: {g.tip}")

Talent Material Planning

# === Talent Material Planner ===

@dataclass
class TalentMaterial:
 character: str
 boss: str
 material: str
 talent_priority: str
 dream_solvent: bool

materials = [
 TalentMaterial("Hu Tao",
 "Tartaglia (Childe)",
 "Shard of a Foul Legacy",
 "Normal Attack > Skill > Burst",
 True),
 TalentMaterial("Raiden Shogun",
 "La Signora",
 "Molten Moment",
 "Burst > Skill > Normal Attack",
 True),
 TalentMaterial("Nahida",
 "Scaramouche",
 "Puppet Strings",
 "Skill > Burst > Normal Attack",
 True),
 TalentMaterial("Ayaka",
 "Stormterror Dvalin",
 "Bloodjade Branch",
 "Burst > Normal Attack > Skill",
 True),
 TalentMaterial("Zhongli",
 "Azhdaha",
 "Gilded Scale (Bloodjade Branch)",
 "Skill > Burst > Normal Attack",
 True),
 TalentMaterial("Furina",
 "Apep",
 "Worldspan Fern",
 "Skill > Burst > Normal Attack",
 True),
]

# Talent Level Cost
# Level 7: 1 Boss Material + 4 Talent Book + 120,000 Mora
# Level 8: 1 Boss Material + 6 Talent Book + 260,000 Mora
# Level 9: 2 Boss Material + 12 Talent Book + 450,000 Mora
# Level 10: 2 Boss Material + 16 Talent Book + 700,000 Mora + Crown
# Total: 6 Boss Material per Talent (Level 7-10)

print("=== Talent Material Plan ===")
for m in materials:
 print(f" [{m.character}] Boss: {m.boss}")
 print(f" Material: {m.material}")
 print(f" Priority: {m.talent_priority}")
 print(f" Dream Solvent: {'ใช้ได้' if m.dream_solvent else 'ไม่ได้'}")

Resin Optimization

# === Resin Optimization ===

@dataclass
class ResinPlan:
 activity: str
 resin_cost: str
 reward: str
 priority: str

plans = [
 ResinPlan("Weekly Boss (3 ครั้งแรก)",
 "30 Resin x 3 = 90 Resin",
 "Talent Material + Dream Solvent + Billet + Artifacts",
 "สูงมาก (ทำทุกสัปดาห์)"),
 ResinPlan("Weekly Boss (ครั้งที่ 4+)",
 "60 Resin",
 "เท่ากับ 3 ครั้งแรก แต่ Resin แพงกว่า",
 "ต่ำ (ทำถ้าต้องการ Material เฉพาะ)"),
 ResinPlan("Artifact Domain",
 "20 Resin",
 "Artifacts 5 ดาว",
 "สูง (หลังทำ Weekly Boss แล้ว)"),
 ResinPlan("Talent Book Domain",
 "20 Resin",
 "Talent Books (Level 1-6)",
 "สูง (ตามวันที่ต้องการ)"),
 ResinPlan("Weapon Material Domain",
 "20 Resin",
 "Weapon Ascension Material",
 "ปานกลาง"),
 ResinPlan("World Boss",
 "40 Resin",
 "Character Ascension Material",
 "สูง (ตอนต้องการ Ascend)"),
]

print("=== Resin Plan (Weekly) ===")
total_resin = 180 * 7 # 1260 Resin/week
print(f"Total Resin/Week: {total_resin}")
for p in plans:
 print(f" [{p.activity}] Cost: {p.resin_cost}")
 print(f" Reward: {p.reward}")
 print(f" Priority: {p.priority}")

เคล็ดลับ

  • 3 ครั้ง: ทำ Weekly Boss 3 ครั้งแรก 30 Resin คุ้มมาก
  • Zhongli: พา Zhongli ไป Azhdaha ช่วยได้มาก
  • Dream Solvent: เก็บไว้แปลง Material ที่ต้องการ
  • Food: ใช้ Food Buff ATK DEF ก่อนเข้า Boss
  • Co-op: สู้ Co-op ได้ถ้ายากเกินไป

Trounce Domain คืออะไร

Weekly Boss Domain สัปดาห์ละครั้ง 30 Resin 3 ครั้งแรก Talent Material Dream Solvent Billet Artifacts Reset วันจันทร์ Level I-IV

Boss มีอะไรบ้าง

Dvalin Andrius Tartaglia Azhdaha La Signora Raiden Scaramouche Apep Mondstadt Liyue Inazuma Sumeru Talent Material แต่ละตัว

ทีมแนะนำอะไร

Dvalin ตัวไหนัก็ได้ Andrius Pyro Tartaglia Freeze Azhdaha Zhongli Shield La Signora Pyro+Hydro Raiden Multi-element Co-op Food Buff

Talent Material ใช้อย่างไร

Level 7-10 ต้อง Weekly Boss Material 6 ชิ้นต่อ Talent Dream Solvent แปลงได้ Priority DPS Burst Skill Normal Crown Level 10

สรุป

Trounce Domain Genshin Impact Weekly Boss Talent Material Dream Solvent 30 Resin Dvalin Andrius Tartaglia Azhdaha La Signora Raiden Team