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

62 lines
1.5 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 "../SV2P"
const card: Card = {
set: Set,
name: {
ja: "コヨザルex",
'zh-tw': "棄世猴ex",
th: "โคโนะโยซารุex",
id: "Annihilape ex"
},
illustrator: "PLANETA Hiiragi",
rarity: "Double rare",
category: "Pokemon",
hp: 320,
types: ["Fighting"],
stage: "Stage2",
suffix: "EX",
attacks: [{
cost: ["Fighting"],
name: {
ja: "アンガーグラッジ",
'zh-tw': "憤懣恨怨",
th: "พิโรธโกรธแค้น",
id: "Anger Grudge"
},
damage: "20×",
effect: {
ja: "このポケモンにダメカンを12個までのせ、のせた数×20ダメージ。",
'zh-tw': "在這隻寶可夢身上放置最多12個傷害指示物造成放置的數量×20點傷害。",
th: "วางตัวนับแดเมจได้สูงสุด 12 ตัวบนโปเกมอนนี้ แดเมจจะเท่ากับจำนวนที่วาง x20",
id: "Letakkan paling banyak 12 Token Kerusakan pada Pokémon ini, serangan ini memberikan kerusakan sejumlah 20 untuk tiap Token Kerusakan yang diletakkan."
}
}, {
cost: ["Fighting", "Colorless"],
name: {
ja: "ちきゅうなげ",
'zh-tw': "地球上投",
th: "ขว้างใส่โลก",
id: "Bantingan Keras"
},
damage: 150
}],
weaknesses: [{
type: "Psychic",
value: "×2"
}],
retreat: 2,
regulationMark: "G"
}
export default card