mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 11:22:10 +00:00
* fix: Added most of the translations Some translations aren't available or are user made without a card image depicted Signed-off-by: Avior <github@avior.me> * fix: Add sets French translations Signed-off-by: Avior <github@avior.me>
85 lines
1.7 KiB
TypeScript
85 lines
1.7 KiB
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../POP Series 9'
|
||
|
||
const card: Card = {
|
||
name: {
|
||
en: "Piplup",
|
||
fr: "Tiplouf"
|
||
},
|
||
|
||
illustrator: "Midori Harada",
|
||
rarity: "Common",
|
||
category: "Pokemon",
|
||
set: Set,
|
||
|
||
dexId: [
|
||
393,
|
||
],
|
||
|
||
hp: 50,
|
||
|
||
types: [
|
||
"Water",
|
||
],
|
||
|
||
stage: "Basic",
|
||
|
||
attacks: [
|
||
{
|
||
cost: [
|
||
"Water",
|
||
],
|
||
name: {
|
||
en: "Water Sport",
|
||
fr: "Tourniquet"
|
||
},
|
||
effect: {
|
||
en: "If Piplup has less Energy attached to it than the Defending Pokémon, this attack does 10 damage plus 10 more damage.",
|
||
fr: "Si Tiplouf possède moins d'Énergies que le Pokémon Défenseur, cette attaque inflige 10 dégâts plus 10 dégâts supplémentaires."
|
||
},
|
||
damage: "10+",
|
||
|
||
},
|
||
{
|
||
cost: [
|
||
"Water",
|
||
"Colorless",
|
||
"Colorless",
|
||
],
|
||
name: {
|
||
en: "Wavelet",
|
||
fr: "Vaguelette"
|
||
},
|
||
effect: {
|
||
en: "If you have Buizel in play, this attack does 10 damage to each of your opponent’s Benched Pokémon. (Don’t apply Weakness and Resistance for Benched Pokémon.)",
|
||
fr: "Si vous avez Mustébouée en jeu, cette attaque inflige 10 dégâts à chacun des Pokémon de Banc de votre adversaire. (Vous ne pouvez pas appliquer la Faiblesse et la Résistance aux Pokémon de Banc.)"
|
||
},
|
||
damage: 40,
|
||
|
||
},
|
||
],
|
||
|
||
weaknesses: [
|
||
{
|
||
type: "Lightning",
|
||
value: "+10"
|
||
},
|
||
],
|
||
|
||
description: {
|
||
en: "It lives along shores in northern countries. A skilled swimmer, it dives for over 10 minutes to hunt.",
|
||
fr: "Il vit sur les côtes des régions nordiques. C'est un nageur doué, qui peut plonger durant 10 minutes."
|
||
},
|
||
|
||
retreat: 1,
|
||
|
||
variants: {
|
||
normal: true,
|
||
reverse: false,
|
||
holo: false,
|
||
firstEdition: false
|
||
}
|
||
}
|
||
|
||
export default card
|