1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-15 17:09:19 +00:00

feat: Add SV9s (#746)

This commit is contained in:
2025-05-24 20:57:29 +02:00
committed by GitHub
parent db5863caee
commit 651313ce70
186 changed files with 9356 additions and 0 deletions

66
data-asia/SV/SV9s/102.ts Normal file
View File

@ -0,0 +1,66 @@
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