1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-27 18:39:54 +00:00

66 lines
2.0 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { Card } from "../../../interfaces"
import Set from "../SV9s"
const card: Card = {
set: Set,
name: {
th: "อาร์เมอร์การ์ <ของฮ็อป>",
id: "Corviknight <Hop>"
},
illustrator: "GIDORA",
category: "Pokemon",
hp: 170,
types: ["Metal"],
description: {
th: "ปีกส่วนหนึ่งกลายเป็นเหล็กกล้า แม้ปีกจะหนักแต่ก็บินไปมาบนฟ้ากว้าง ได้สบาย ๆ",
id: "Sebagian bulu Corviknight berubah menjadi baja. Pokémon ini terbang mengelilingi langit luas dengan lihai tanpa mempermasalahkan sayapnya yang berat."
},
stage: "Stage2",
attacks: [{
name: {
th: "แทงทะลุ",
id: "Menusuk Tembus"
},
effect: {
th: "โปเกมอนบนเบนช์ฝ่ายตรงข้าม 1 ตัว ก็จะได้รับแดเมจ 50 ด้วย {โปเกมอน บนเบนช์จะไม่นำจุดอ่อนและความต้านทานมาคิด}",
id: "Serangan ini juga memberikan kerusakan sejumlah 50 kepada 1 Pokémon Cadangan lawan. [Kelemahan dan Resistansi Pokémon Cadangan tidak mempengaruhi jumlah kerusakan.]"
},
damage: 50,
cost: ["Colorless"]
}, {
name: {
th: "ปีกเหล็ก",
id: "Sayap Baja"
},
effect: {
th: "เทิร์นถัดไปของฝ่ายตรงข้าม แดเมจของท่าต่อสู้ที่โปเกมอนนี้จะได้รับจะถูก [-60]",
id: "Pada giliran lawan berikutnya, kerusakan akibat serangan yang diterima Pokémon ini berkurang sejumlah 60."
},
damage: 150,
cost: ["Metal", "Metal", "Colorless"]
}],
weaknesses: [{
type: "Lightning",
value: "×2"
}],
resistances: [{
type: "Fighting",
value: "-30"
}],
retreat: 2,
regulationMark: "I"
}
export default card