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

68
data-asia/SV/SV1V/015.ts Normal file
View File

@ -0,0 +1,68 @@
import { Card } from "../../../interfaces"
import Set from "../SV1V"
const card: Card = {
set: Set,
name: {
ja: "ガーディ",
'zh-tw': "卡蒂狗",
th: "การ์ดี",
id: "Growlithe"
},
illustrator: "Tika Matsuno",
rarity: "Common",
category: "Pokemon",
dexId: [58],
hp: 90,
types: ["Fire"],
description: {
ja: "人懐こく 誠実な 性格。 敵には ほえて かみつき 追い払おうとする。",
'zh-tw': "性格誠實,容易和人親近。遇到敵人時牠會吼叫追咬, 試著把敵人趕走。",
th: "เป็นมิตรและซื่อสัตย์ จะพยายามไล่ศัตรูออกไปด้วยการเห่าและไล่กัดอีกฝ่าย",
id: "Growlithe jinak dan berkepribadian jujur. Pokémon ini mengusir lawan dengan menggonggong dan menggigit mereka."
},
stage: "Basic",
attacks: [{
cost: ["Colorless"],
name: {
ja: "もえあがる",
'zh-tw': "燃起",
th: "ลุกโชน",
id: "Membara"
},
effect: {
ja: "自分の山札から「基本エネルギー」を2枚まで選び、このポケモンにつける。そして山札を切る。",
'zh-tw': "從自己的牌庫選擇最多2張「基本【火】能量」卡附於這隻寶可夢身上。並且重洗牌庫。",
th: "เลือกการ์ด [พลังงานพื้นฐาน[ไฟ]]ได้สูงสุด 2 ใบจากสำรับการ์ดฝ่ายเรา ติดที่โปเกมอนนี้ แล้วสับสำรับการ์ด",
id: "Pilih paling banyak 2 lembar Energi Dasar {Api} dari Deck sendiri, lalu kenakan pada Pokémon ini. Kemudian, kocok Deck."
}
}, {
cost: ["Fire", "Fire", "Fire"],
name: {
ja: "ほのおのツメ",
'zh-tw': "火之爪",
th: "กรงเล็บไฟ",
id: "Cakar Api"
},
damage: 70
}],
weaknesses: [{
type: "Water",
value: "×2"
}],
retreat: 3,
regulationMark: "G"
}
export default card