mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-25 04:12:11 +00:00
* Added basic translation IT will need a second checkup by another source as attacks are not correcly ordered Signed-off-by: Florian BOUILLON <florian.bouillon@delta-wings.net> * Removed bugged file Signed-off-by: Florian BOUILLON <florian.bouillon@delta-wings.net>
75 lines
1.1 KiB
TypeScript
75 lines
1.1 KiB
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Boundaries Crossed'
|
||
|
||
const card: Card = {
|
||
name: {
|
||
en: "Shaymin",
|
||
fr: "Shaymin",
|
||
es: "Shaymin",
|
||
it: "Shaymin",
|
||
pt: "Shaymin",
|
||
de: "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
|