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

63 lines
1.7 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 "../SV4a"
const card: Card = {
set: Set,
name: {
ja: "リザードンex",
'zh-tw': "噴火龍ex",
id: "Charizard ex"
},
illustrator: "AKIRA EGAWA",
category: "Pokemon",
hp: 330,
types: ["Darkness"],
stage: "Stage2",
suffix: "EX",
abilities: [{
type: "Ability",
name: {
ja: "れんごくしはい",
'zh-tw': "煉獄支配",
id: "Dominasi Api Jahanam"
},
effect: {
ja: "自分の番に、このカードを手札から出して進化させたとき、1回使える。自分の山札から「基本エネルギー」を3枚まで選び、自分のポケモンに好きなようにつける。そして山札を切る。",
'zh-tw': "在自己的回合從手牌使出這張卡並完成進化時可使用1次。從自己的牌庫選擇最多3張「基本【火】能量」卡以任意方式附於自己的寶可夢身上。並且重洗牌庫。",
id: "Dapat digunakan 1 kali pada giliran sendiri saat memasukkan kartu ini dari Kartu Pegangan untuk melakukan evolusi. Pilih paling banyak 3 lembar Energi Dasar {Api} dari Deck sendiri, lalu kenakan sesukanya pada Pokémon sendiri. Kemudian, kocok Deck."
}
}],
attacks: [{
cost: ["Fire", "Fire"],
name: {
ja: "バーニングダーク",
'zh-tw': "燃燒黑暗",
id: "Burning Dark"
},
damage: "180+",
effect: {
ja: "相手がすでにとったサイドの枚数×30ダメージ追加。",
'zh-tw': "增加對手已經獲得的獎賞卡的張數×30點傷害。",
id: "Kerusakan yang diberikan bertambah sejumlah 30 untuk tiap lembar Kartu Point yang telah diambil lawan."
}
}],
weaknesses: [{
type: "Grass",
value: "×2"
}],
retreat: 2,
regulationMark: "G"
}
export default card