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

feat: Add support for Asians Pokémon Cards (#481)

This commit is contained in:
2024-06-07 12:53:08 +02:00
committed by GitHub
parent a35fadd50c
commit a26ef0e5eb
8069 changed files with 379200 additions and 423 deletions

63
data-asia/SV/SV1V/017.ts Normal file
View File

@ -0,0 +1,63 @@
import { Card } from "../../../interfaces"
import Set from "../SV1V"
const card: Card = {
set: Set,
name: {
ja: "デルビル",
'zh-tw': "戴魯比",
th: "เดลวิล",
id: "Houndour"
},
illustrator: "nagimiso",
rarity: "Common",
category: "Pokemon",
dexId: [228],
hp: 70,
types: ["Fire"],
description: {
ja: "仲間に 連絡するときと 獲物を 追いつめるときでは 鳴き声の 種類が 違うのだ。",
'zh-tw': "聯絡夥伴和追趕獵物的時候,會分別發出 不同種類的叫聲。",
th: "ชนิดของเสียงร้องที่ใช้ตอนสื่อสารกับฝูงกับตอนไล่ต้อนเหยื่อจะแตกต่างกัน",
id: "Jenis raungan Houndour ketika berkomunikasi dengan sesamanya atau ketika memburu mangsanya berbeda-beda."
},
stage: "Basic",
attacks: [{
cost: ["Colorless"],
name: {
ja: "かみつく",
'zh-tw': "咬住",
th: "กัดติด",
id: "Menggigit"
},
damage: 10
}, {
cost: ["Fire", "Colorless"],
name: {
ja: "ほのお",
'zh-tw': "火焰",
th: "ไฟ",
id: "Api"
},
damage: 30
}],
weaknesses: [{
type: "Water",
value: "×2"
}],
retreat: 1,
regulationMark: "G"
}
export default card