mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-24 03:42:13 +00:00
76 lines
985 B
TypeScript
76 lines
985 B
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Fates Collide'
|
||
|
||
const card: Card = {
|
||
name: {
|
||
en: "Moltres",
|
||
fr: "Sulfura",
|
||
},
|
||
illustrator: "OOYAMA",
|
||
rarity: "Rare",
|
||
category: "Pokemon",
|
||
|
||
set: Set,
|
||
dexId: [
|
||
146,
|
||
],
|
||
hp: 120,
|
||
types: [
|
||
"Fire",
|
||
],
|
||
|
||
stage: "Basic",
|
||
|
||
|
||
attacks: [
|
||
{
|
||
cost: [
|
||
"Fire",
|
||
],
|
||
name: {
|
||
en: "Combustion",
|
||
fr: "Fournaise",
|
||
},
|
||
|
||
damage: 20,
|
||
|
||
},
|
||
{
|
||
cost: [
|
||
"Fire",
|
||
"Fire",
|
||
"Colorless",
|
||
"Colorless",
|
||
],
|
||
name: {
|
||
en: "Flying Flare",
|
||
fr: "Flamboiement Volant",
|
||
},
|
||
effect: {
|
||
en: "You may do 40 more damage. If you do, this Pokémon does 20 damage to itself.",
|
||
fr: "Vous pouvez infliger 40 dégâts supplémentaires. Dans ce cas, ce Pokémon s'inflige 20 dégâts.",
|
||
},
|
||
damage: 80,
|
||
|
||
},
|
||
],
|
||
weaknesses: [
|
||
{
|
||
type: "Water",
|
||
value: "×2"
|
||
},
|
||
],
|
||
resistances: [
|
||
{
|
||
type: "Fighting",
|
||
value: "-20"
|
||
},
|
||
],
|
||
retreat: 1,
|
||
|
||
|
||
|
||
}
|
||
|
||
export default card
|