mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-16 17:39:18 +00:00
Finished Complete Rework of the Database
This commit is contained in:
68
data/Diamond & Pearl/Secret Wonders/113.ts
Normal file
68
data/Diamond & Pearl/Secret Wonders/113.ts
Normal file
@ -0,0 +1,68 @@
|
||||
import { Card } from '../../../interfaces'
|
||||
import Set from '../Secret Wonders'
|
||||
|
||||
const card: Card = {
|
||||
name: {
|
||||
en: "Stantler",
|
||||
fr: "Cerfrousse",
|
||||
},
|
||||
illustrator: "Kouki Saitou",
|
||||
rarity: "Common",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
dexId: [
|
||||
234,
|
||||
],
|
||||
hp: 70,
|
||||
types: [
|
||||
"Colorless",
|
||||
],
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
|
||||
name: {
|
||||
en: "Lead",
|
||||
fr: "Avance",
|
||||
},
|
||||
effect: {
|
||||
en: "Search your deck for a Supporter card, show it to your opponent, and put it into your hand. Shuffle your deck afterward.",
|
||||
fr: "Choisissez dans votre deck une carte Supporter, montrez-la à votre adversaire et placez-la dans votre main. Ensuite, mélangez votre deck.",
|
||||
},
|
||||
|
||||
},
|
||||
{
|
||||
cost: [
|
||||
"Colorless",
|
||||
"Colorless",
|
||||
],
|
||||
name: {
|
||||
en: "Frighten Horn",
|
||||
fr: "Corne qui fait peur",
|
||||
},
|
||||
effect: {
|
||||
en: "If the Defending Pokémon isn't an Evolved Pokémon, that Pokémon is now Confused.",
|
||||
fr: "Si le Pokémon Défenseur n'est pas un Pokémon Évolué, il est maintenant Confus.",
|
||||
},
|
||||
damage: 20,
|
||||
|
||||
},
|
||||
],
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Fightning",
|
||||
value: "+20"
|
||||
},
|
||||
],
|
||||
|
||||
retreat: 1,
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user