1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-07-03 00:49:19 +00:00
Files
cards-database/data-asia/SV/SVJL/002.ts
2025-05-04 02:01:58 +02:00

54 lines
789 B
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 "../SVJL"
const card: Card = {
set: Set,
name: {
ja: "リザード"
},
illustrator: "GIDORA",
category: "Pokemon",
dexId: [5],
hp: 100,
types: ["Fire"],
description: {
ja: "戦いで 気持ちが たかぶると 灼熱の 炎を 吹きながら あたりを 燃やしてまわる。"
},
stage: "Stage1",
attacks: [{
cost: ["Fire"],
name: {
ja: "かえん"
},
damage: 20
}, {
cost: ["Fire", "Fire", "Fire"],
name: {
ja: "だいもんじ"
},
damage: 90,
effect: {
ja: "このポケモンについているエネルギーを1個選び、トラッシュする。"
}
}],
weaknesses: [{
type: "Water",
value: "×2"
}],
retreat: 2,
rarity: "None"
}
export default card