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

59 lines
1.2 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 "../SV6"
const card: Card = {
set: Set,
name: {
ja: "エイパム",
'zh-tw': "長尾怪手",
th: "เอย์แพม"
},
category: "Pokemon",
rarity: "Common",
illustrator: "Mugi Hamada",
dexId: [190],
hp: 60,
types: ["Colorless"],
description: {
ja: "手よりも 自由自在に 動く 尻尾を 巧みに 操りながら 高い 木の上で 暮らしている。",
'zh-tw': "會巧妙地操縱比雙手 還靈活的尾巴, 生活在高高的樹上。",
th: "อาศัยอยู่บนต้นไม้สูง ใช้หางที่ขยับได้ดั่งใจได้อย่างช่ำชองยิ่งกว่ามือของมัน"
},
stage: "Basic",
attacks: [{
cost: ["Colorless"],
name: {
ja: "ぶらさがる",
'zh-tw': "垂吊",
th: "ห้อยโตงเตง"
},
damage: 10
}, {
cost: ["Colorless", "Colorless"],
name: {
ja: "やんちゃげり",
'zh-tw': "調皮踢",
th: "เตะแกล้ง"
},
damage: 20
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 1,
regulationMark: "H"
}
export default card