1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-16 01:19:18 +00:00

feat: Add SV8s (#675)

This commit is contained in:
2025-02-28 08:44:50 +01:00
committed by GitHub
parent e4099defdb
commit e8e9c23e14
245 changed files with 11903 additions and 0 deletions

61
data-asia/SV/SV8s/019.ts Normal file
View File

@ -0,0 +1,61 @@
import { Card } from "../../../interfaces"
import Set from "../SV8s"
const card: Card = {
set: Set,
name: {
id: "Ho-Oh",
th: "โฮโอ"
},
illustrator: "kodama",
category: "Pokemon",
hp: 130,
types: ["Fire"],
description: {
id: "Pokémon yang terdapat pada mitos dengan kisah tubuhnya bersinar tujuh warna dan pelangi muncul setelah ia terbang.",
th: "โปเกมอนที่ถูกเล่าขานในเทพนิยายว่าร่างกายเปล่งประกาย 7 สี และจะมีสายรุ้งปรากฏหลังจากที่มันโบยบินผ่านไป"
},
stage: "Basic",
attacks: [{
name: {
id: "Mengepak",
th: "ตีปีก"
},
damage: 50,
cost: ["Fire", "Colorless"]
}, {
name: {
id: "Shine Blaze",
th: "ไชน์เบลซ"
},
effect: {
id: "Jika ada Pokémon Terastal di Cadangan sendiri, kerusakan yang diberikan bertambah sejumlah 100.",
th: "ถ้าบนเบนช์ฝ่ายเรามีโปเกมอน [เทรัสตัล] อยู่ การโจมตีนี้จะเพิ่มแดเมจอีก 100"
},
damage: "100+",
cost: ["Fire", "Fire", "Colorless"]
}],
weaknesses: [{
type: "Lightning",
value: "×2"
}],
resistances: [{
type: "Fighting",
value: "-30"
}],
retreat: 2,
regulationMark: "H"
}
export default card