mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-23 04:19:18 +00:00
Finished Complete Rework of the Database
This commit is contained in:
70
data/Black & White/Boundaries Crossed/10.ts
Normal file
70
data/Black & White/Boundaries Crossed/10.ts
Normal file
@ -0,0 +1,70 @@
|
||||
import { Card } from '../../../interfaces'
|
||||
import Set from '../Boundaries Crossed'
|
||||
|
||||
const card: Card = {
|
||||
name: {
|
||||
en: "Shaymin",
|
||||
fr: "Shaymin",
|
||||
},
|
||||
illustrator: "Kagemaru Himeno",
|
||||
rarity: "Rare",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
dexId: [
|
||||
492,
|
||||
],
|
||||
hp: 70,
|
||||
types: [
|
||||
"Grass",
|
||||
],
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
"Colorless",
|
||||
],
|
||||
name: {
|
||||
en: "Call for Family",
|
||||
fr: "Appel à la Famille",
|
||||
},
|
||||
effect: {
|
||||
en: "Search your deck for 2 Basic Pokémon and put them onto your Bench. Shuffle your deck afterward.",
|
||||
fr: "Cherchez 2 Pokémon de base dans votre deck et placez-les sur votre Banc. Mélangez ensuite votre deck.",
|
||||
},
|
||||
|
||||
},
|
||||
{
|
||||
cost: [
|
||||
"Grass",
|
||||
"Grass",
|
||||
],
|
||||
name: {
|
||||
en: "Leaf Drain",
|
||||
fr: "Feuille Sangsue",
|
||||
},
|
||||
effect: {
|
||||
en: "Flip a coin. If heads, heal 30 damage from this Pokémon.",
|
||||
fr: "Lancez une pièce. Si c'est face, soignez 30 dégâts à ce Pokémon.",
|
||||
},
|
||||
damage: 30,
|
||||
|
||||
},
|
||||
],
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Fire",
|
||||
value: "×2"
|
||||
},
|
||||
],
|
||||
|
||||
retreat: 1,
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user