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

65
data-asia/SV/SV3a/052.ts Normal file
View File

@ -0,0 +1,65 @@
import { Card } from "../../../interfaces"
import Set from "../SV3a"
const card: Card = {
set: Set,
name: {
ja: "モトトカゲ",
'zh-tw': "摩托蜥",
th: "โมโตโทคาเงะ"
},
illustrator: "kawayoo",
rarity: "Uncommon",
category: "Pokemon",
dexId: [967],
hp: 120,
types: ["Colorless"],
description: {
ja: "大昔から 人を 背中に 乗せていたらしい。 1万年前の 壁画に 様子が 描かれている。",
'zh-tw': "似乎自古就會讓人類坐在背上。1萬年前的 壁畫上描繪著該模樣。",
th: "ดูเหมือนว่าจะให้ผู้คนขี่บนหลังมาตั้งแต่สมัยโบราณ มีการวาดภาพของมันบนจิตรกรรมฝาผนังเมื่อ 10000 ปีที่แล้ว"
},
stage: "Basic",
attacks: [{
cost: ["Colorless"],
name: {
ja: "ぶつかる",
'zh-tw': "衝撞",
th: "กระแทก"
},
damage: 30
}, {
cost: ["Colorless", "Colorless", "Colorless"],
name: {
ja: "バディドライブ",
'zh-tw': "拍檔猛衝",
th: "บัดดี้ไดรฟ์"
},
damage: "70+",
effect: {
ja: "この番、手札からサポートを出して使っていたなら、70ダメージ追加。",
'zh-tw': "在這個回合若從手牌使出了支援者卡則增加70點傷害。",
th: "เทิร์นนี้ ถ้านำการ์ดซัพพอร์ตจากบนมือออกมาใช้แล้ว การโจมตีนี้จะเพิ่มแดเมจอีก 70"
}
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 1,
regulationMark: "G"
}
export default card