mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-17 01:49:19 +00:00
Finished Complete Rework of the Database
This commit is contained in:
71
data/Diamond & Pearl/Secret Wonders/27.ts
Normal file
71
data/Diamond & Pearl/Secret Wonders/27.ts
Normal file
@ -0,0 +1,71 @@
|
||||
import { Card } from '../../../interfaces'
|
||||
import Set from '../Secret Wonders'
|
||||
|
||||
const card: Card = {
|
||||
name: {
|
||||
en: "Furret",
|
||||
fr: "Fouinar",
|
||||
},
|
||||
illustrator: "Kagemaru Himeno",
|
||||
rarity: "Rare",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
dexId: [
|
||||
162,
|
||||
],
|
||||
hp: 90,
|
||||
types: [
|
||||
"Colorless",
|
||||
],
|
||||
evolveFrom: {
|
||||
en: "Sentret",
|
||||
fr: "Fouinette",
|
||||
},
|
||||
stage: "Stage1",
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
|
||||
name: {
|
||||
en: "Keen Eye",
|
||||
fr: "Regard vif",
|
||||
},
|
||||
effect: {
|
||||
en: "Search your deck for up to 2 cards and put them into your hand. Shuffle your deck afterward.",
|
||||
fr: "Choisissez jusqu'à 2 cartes dans votre deck et placez-les dans votre main. Ensuite, mélangez votre deck.",
|
||||
},
|
||||
|
||||
},
|
||||
{
|
||||
cost: [
|
||||
"Colorless",
|
||||
"Colorless",
|
||||
],
|
||||
name: {
|
||||
en: "Baton Pass",
|
||||
fr: "Relais",
|
||||
},
|
||||
effect: {
|
||||
en: "You may switch Furret with 1 of your Benched Pokémon. If you do, move as many Energy cards attached to Furret as you like to the new Active Pokémon.",
|
||||
fr: "Vous pouvez échanger Fouinar avec 1 des Pokémon de votre Banc. Déplacez alors autant de cartes Énergie attachées à Fouinar que vous voulez sur le nouveau Pokémon Actif.",
|
||||
},
|
||||
damage: 40,
|
||||
|
||||
},
|
||||
],
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Fightning",
|
||||
value: "+20"
|
||||
},
|
||||
],
|
||||
|
||||
retreat: 1,
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user