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>
81 lines
1.3 KiB
TypeScript
81 lines
1.3 KiB
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Emerging Powers'
|
||
|
||
const card: Card = {
|
||
name: {
|
||
en: "Simipour",
|
||
fr: "Flotoutan",
|
||
es: "Simipour",
|
||
it: "Simipour",
|
||
pt: "Simipour",
|
||
de: "Sodachita"
|
||
},
|
||
illustrator: "Sumiyoshi Kizuki",
|
||
rarity: "Rare",
|
||
category: "Pokemon",
|
||
|
||
set: Set,
|
||
dexId: [
|
||
516,
|
||
],
|
||
hp: 90,
|
||
types: [
|
||
"Water",
|
||
],
|
||
evolveFrom: {
|
||
en: "Panpour",
|
||
fr: "Flotajou",
|
||
},
|
||
stage: "Stage1",
|
||
|
||
|
||
attacks: [
|
||
{
|
||
cost: [
|
||
"Colorless",
|
||
"Colorless",
|
||
],
|
||
name: {
|
||
en: "Grass' Power",
|
||
fr: "Pouvoir Fertilisant",
|
||
},
|
||
effect: {
|
||
en: "If this Pokémon has any Grass Energy attached to it, heal 20 damage from this Pokémon.",
|
||
fr: "Si de l'Énergie Grass est attachée à ce Pokémon, soignez 20 dégâts à ce Pokémon.",
|
||
},
|
||
damage: 30,
|
||
|
||
},
|
||
{
|
||
cost: [
|
||
"Water",
|
||
"Colorless",
|
||
"Colorless",
|
||
],
|
||
name: {
|
||
en: "Rushing Water",
|
||
fr: "Courant Fort",
|
||
},
|
||
effect: {
|
||
en: "Move an Energy attached to the Defending Pokémon to 1 of your opponent's Benched Pokémon.",
|
||
fr: "Déplacez une Énergie attachée au Pokémon Défenseur vers 1 des Pokémon de Banc de votre adversaire.",
|
||
},
|
||
damage: 60,
|
||
|
||
},
|
||
],
|
||
weaknesses: [
|
||
{
|
||
type: "Lightning",
|
||
value: "×2"
|
||
},
|
||
],
|
||
|
||
retreat: 1,
|
||
|
||
|
||
|
||
}
|
||
|
||
export default card
|