1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 19:32:11 +00:00

48 lines
1.1 KiB
TypeScript
Raw 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 "../S5a"
const card: Card = {
set: Set,
name: {
'zh-tw': "變澀蜥",
th: "จิเมเลียน"
},
illustrator: "Mitsuhiro Arita",
category: "Pokemon",
hp: 90,
types: ["Water"],
description: {
'zh-tw': "頭腦聰明但是很怕麻煩。為了不讓敵人接近自己的地盤,在各個地方都設下了陷阱。",
th: "ฉลาดแต่ขี้เกียจ จะวางกับดักไว้ตรงโน้นตรงนี้เพื่อไม่ให้ศัตรูเข้าใกล้อาณาเขตของตน"
},
stage: "Stage1",
attacks: [{
name: {
'zh-tw': "彈跳",
th: "เด้งกลับ"
},
effect: {
'zh-tw': "將這隻寶可夢與備戰寶可夢互換。",
th: "สลับโปเกมอนนี้กับโปเกมอนบนเบนช์"
},
damage: 40,
cost: ["Colorless", "Colorless"]
}],
weaknesses: [{
type: "Lightning",
value: "×2"
}],
retreat: 1,
regulationMark: "E"
}
export default card