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

49
data-asia/SV/SV4a/303.ts Normal file
View File

@ -0,0 +1,49 @@
import { Card } from "../../../interfaces"
import Set from "../SV4a"
const card: Card = {
set: Set,
name: {
ja: "モトトカゲ",
'zh-tw': "摩托蜥",
id: "Cyclizar"
},
illustrator: "Souichirou Gunjima",
category: "Pokemon",
dexId: [967],
hp: 120,
types: ["Dragon"],
description: {
ja: "大昔から 人を 背中に 乗せていたらしい。 1万年前の 壁画に 様子が 描かれている。",
'zh-tw': "似乎自古就會讓人類坐在背上。1萬年前的 壁畫上描繪著該模樣。",
id: "Kabarnya, sudah sejak dahulu kala manusia menunggangi punggung Cyclizar. Situasi tersebut terlukiskan dalam sebuah mural dari 10 ribu tahun lalu."
},
stage: "Basic",
attacks: [{
cost: ["Grass", "Darkness", "Colorless"],
name: {
ja: "こうそくドライブ",
'zh-tw': "高速猛衝",
id: "Berkendara Berkecepatan Tinggi"
},
damage: 100,
effect: {
ja: "コインを1回投げオモテなら、次の相手の番、このポケモンはワザのダメージや効果を受けない。",
'zh-tw': "擲1次硬幣若為正面則在下個對手的回合這隻寶可夢不會受到招式的傷害與效果的影響。",
id: "Lempar koin 1 kali. Jika hasilnya sisi depan, pada giliran lawan berikutnya, Pokémon ini tidak menerima kerusakan dan efek akibat serangan."
}
}],
retreat: 1,
regulationMark: "G"
}
export default card