mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-23 04:19:18 +00:00
64 lines
1.5 KiB
TypeScript
64 lines
1.5 KiB
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Space-Time Smackdown"
|
|
|
|
const card: Card = {
|
|
set: Set,
|
|
|
|
name: {
|
|
en: "Prinplup",
|
|
fr: "Prinplouf",
|
|
es: "Prinplup",
|
|
it: "Prinplup",
|
|
de: "Pliprin",
|
|
'pt-br': "Prinplup",
|
|
ko: "팽태자"
|
|
},
|
|
|
|
illustrator: "Mizue",
|
|
rarity: "Two Diamond",
|
|
category: "Pokemon",
|
|
hp: 90,
|
|
types: ["Water"],
|
|
|
|
evolveFrom: {
|
|
en: "Piplup"
|
|
},
|
|
|
|
description: {
|
|
en: "It lives alone, away from others. Apparently, every one of them believes it is the most important.",
|
|
fr: "Il vit seul, à l'écart de ses pairs. Chaque individu\nest convaincu d'être meilleur que les autres.",
|
|
es: "Vive solo, alejado de los demás. Cada\nuno piensa que es el más importante.",
|
|
it: "Vive da solo lontano dagli altri. Apparentemente\nogni esemplare crede di essere il più importante.",
|
|
de: "Es lebt allein, entfernt von anderen. Jedes von\nihnen denkt, es sei das Bedeutendste unter ihnen.",
|
|
'pt-br': "Vivem sozinhos, longe de todos. Pelo que parece,\ntodos eles se acham a última bolacha do pacote.",
|
|
ko: "무리를 만들지 않고 혼자 생활한다.\n어떤 팽태자라도 자신이 제일\n훌륭하다고 생각하는 듯하다."
|
|
},
|
|
|
|
stage: "Stage1",
|
|
|
|
attacks: [{
|
|
name: {
|
|
en: "Surf",
|
|
fr: "Surf",
|
|
es: "Surf",
|
|
it: "Surf",
|
|
de: "Surfer",
|
|
'pt-br': "Surfar",
|
|
ko: "파도타기"
|
|
},
|
|
|
|
damage: 30,
|
|
cost: ["Water", "Colorless"]
|
|
}],
|
|
|
|
weaknesses: [{
|
|
type: "Lightning",
|
|
value: "+20"
|
|
}],
|
|
|
|
retreat: 1,
|
|
boosters: ["palkia"]
|
|
}
|
|
|
|
export default card
|