mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-13 00:09:18 +00:00
Finished Complete Rework of the Database
This commit is contained in:
66
data/Base/Fossil/12.ts
Normal file
66
data/Base/Fossil/12.ts
Normal file
@ -0,0 +1,66 @@
|
||||
import { Card } from '../../../interfaces'
|
||||
import Set from '../Fossil'
|
||||
|
||||
const card: Card = {
|
||||
name: {
|
||||
en: "Moltres",
|
||||
},
|
||||
illustrator: "Mitsuhiro Arita",
|
||||
rarity: "Rare",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
dexId: [
|
||||
146,
|
||||
],
|
||||
hp: 70,
|
||||
types: [
|
||||
"Fire",
|
||||
],
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
"Fire",
|
||||
],
|
||||
name: {
|
||||
en: "Wildfire",
|
||||
},
|
||||
effect: {
|
||||
en: "You may discard any number of R Energy cards attached to Moltres when you use this attack. If you do, discard that many cards from the top of your opponent's deck.",
|
||||
},
|
||||
|
||||
},
|
||||
{
|
||||
cost: [
|
||||
"Fire",
|
||||
"Fire",
|
||||
"Fire",
|
||||
"Fire",
|
||||
],
|
||||
name: {
|
||||
en: "Dive Bomb",
|
||||
},
|
||||
effect: {
|
||||
en: "Flip a coin. If tails, this attack does nothing.",
|
||||
},
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
resistances: [
|
||||
{
|
||||
type: "Fightning",
|
||||
value: "-30"
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user