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

57 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 "../SV4M"
const card: Card = {
set: Set,
name: {
ja: "エイパム",
th: "เอย์แพม"
},
illustrator: "Yuka Morii",
category: "Pokemon",
dexId: [190],
hp: 60,
types: ["Colorless"],
description: {
ja: "木の 上から 獲物が いないか 探す。 好物の アマカジを 見ると 興奮して 飛びかかるぞ。",
th: "จะคอยมองหาเหยื่อจากบนต้นไม้ พอเจออมาคาจิที่เป็นของโปรด จะตื่นเต้นจนกระโดดเข้าใส่"
},
stage: "Basic",
attacks: [{
cost: ["Colorless"],
name: {
ja: "くすねる",
th: "ฉกฉวย"
},
effect: {
ja: "自分の山札を1枚引く。",
th: "จั่วการ์ด 1 ใบจากสำรับการ์ดฝ่ายเรา"
}
}, {
cost: ["Colorless", "Colorless"],
name: {
ja: "ひらてうち",
th: "ฝ่ามือตบ"
},
damage: 20
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 1,
regulationMark: "G"
}
export default card