1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-14 00:29:19 +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

66
data-asia/SV/SV2a/192.ts Normal file
View File

@ -0,0 +1,66 @@
import { Card } from "../../../interfaces"
import Set from "../SV2a"
const card: Card = {
set: Set,
name: {
ja: "ガルーラex",
'zh-tw': "袋獸ex",
th: "การูราex",
id: "Kangaskhan ex"
},
illustrator: "N-DESIGN Inc.",
category: "Pokemon",
hp: 230,
types: ["Colorless"],
stage: "Basic",
suffix: "EX",
attacks: [{
cost: ["Colorless"],
name: {
ja: "トリプルドロー",
'zh-tw': "三重抽出",
th: "ทริปเปิ้ลดรอว์",
id: "Triple Draw"
},
effect: {
ja: "自分の山札を3枚引く。",
'zh-tw': "從自己的牌庫抽出3張卡。",
th: "จั่วการ์ด 3 ใบจากสำรับการ์ดฝ่ายเรา",
id: "Ambil 3 kartu dari atas Deck sendiri."
}
}, {
cost: ["Colorless", "Colorless", "Colorless"],
name: {
ja: "マシンガンパンチ",
'zh-tw': "機關槍拳",
th: "แมชชีนกันพันช์",
id: "Machinegun Punch"
},
damage: "100×",
effect: {
ja: "コインを4回投げ、オモテの数×100ダメージ。",
'zh-tw': "擲4次硬幣造成正面出現的次數×100點傷害。",
th: "ทอยเหรียญ 4 ครั้ง แดเมจจะเท่ากับจำนวนครั้งที่ออกหัว x100",
id: "Lempar koin 4 kali. Serangan ini memberikan kerusakan sejumlah 100 untuk tiap lemparan dengan hasil sisi depan."
}
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 2,
regulationMark: "G"
}
export default card