mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-18 18:29:19 +00:00
Finished Complete Rework of the Database
This commit is contained in:
58
data/Sun & Moon/Unified Minds/31.ts
Normal file
58
data/Sun & Moon/Unified Minds/31.ts
Normal file
@ -0,0 +1,58 @@
|
||||
import { Card } from '../../../interfaces'
|
||||
import Set from '../Unified Minds'
|
||||
|
||||
const card: Card = {
|
||||
name: {
|
||||
en: "Fletchinder",
|
||||
fr: "Braisillon",
|
||||
},
|
||||
illustrator: "Mina Nakai",
|
||||
rarity: "Common",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
dexId: [
|
||||
662,
|
||||
],
|
||||
hp: 80,
|
||||
types: [
|
||||
"Fire",
|
||||
],
|
||||
evolveFrom: {
|
||||
en: "Fletchling",
|
||||
fr: "Passerouge",
|
||||
},
|
||||
stage: "Stage1",
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
"Fire",
|
||||
],
|
||||
name: {
|
||||
en: "Flame Charge",
|
||||
fr: "Nitrocharge",
|
||||
},
|
||||
effect: {
|
||||
en: "Search your deck for a Fire Energy card and attach it to this Pokémon. Then, shuffle your deck.",
|
||||
fr: "Cherchez une carte Énergie Fire dans votre deck et attachez-la à ce Pokémon. Mélangez ensuite votre deck.",
|
||||
},
|
||||
damage: 20,
|
||||
|
||||
},
|
||||
],
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Water",
|
||||
value: "×2"
|
||||
},
|
||||
],
|
||||
|
||||
retreat: 1,
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user