1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 03:12:10 +00:00

65 lines
1.8 KiB
TypeScript
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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