1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-02 12:19:53 +00:00

88 lines
2.4 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { Card } from "../../../interfaces"
import Set from "../Space-Time Smackdown"
const card: Card = {
set: Set,
name: {
en: "Piloswine",
fr: "Cochignon",
es: "Piloswine",
it: "Piloswine",
de: "Keifel",
'pt-br': "Piloswine",
ko: "메꾸리"
},
illustrator: "Suwama Chiaki",
rarity: "Two Diamond",
category: "Pokemon",
hp: 110,
types: ["Water"],
evolveFrom: {
en: "Swinub"
},
description: {
en: "If it charges at an enemy, the hairs on its back stand up straight. It is very sensitive to sound.",
fr: "S'il charge un ennemi, les poils de son dos\nse dressent. Il est très sensible au bruit.",
es: "Cuando carga contra un enemigo, se le erizan\nlos pelos del lomo. Es muy sensible al sonido.",
it: "Quando carica il nemico, i peli gli si\nrizzano sul dorso. È molto sensibile ai suoni.",
de: "Beim Angriff auf einen Gegner stellen sich seine\nRückenhaare auf. Es hört außergewöhnlich gut.",
'pt-br': "Quando Piloswine dispara contra um oponente,\nos pelos nas suas costas se arrepiam.\nEste Pokémon é muito sensível ao som.",
ko: "상대를 목표로 삼고 돌진할 때\n등에 있는 털이 곤두선다.\n소리에 매우 민감하다."
},
stage: "Stage1",
abilities: [{
type: "Ability",
name: {
en: "Thick Fat",
fr: "Isograisse",
es: "Sebo",
it: "Grassospesso",
de: "Speckschicht",
'pt-br': "Gordura Espessa",
ko: "두꺼운지방"
},
effect: {
en: "This Pokémon takes 20 damage from attacks from {R} or {W} Pokémon.",
fr: "Ce Pokémon subit 20 dégâts provenant des attaques des Pokémon {R} ou {W}.",
es: "Los ataques de los Pokémon {R} o {W} hacen -20 puntos de daño a este Pokémon.",
it: "Questo Pokémon subisce -20 danni dagli attacchi dei Pokémon {R} o {W}.",
de: "Diesem Pokémon werden durch Attacken von {R}- oder {W}-Pokémon 20 Schadenspunkte zugefügt.",
'pt-br': "Este Pokémon recebe 20 pontos de dano de ataques de Pokémon {R} ou {W}.",
ko: "이 포켓몬이 {R} 또는 {W}포켓몬으로부터 받는 기술의 데미지를 {R}-20[/Ctrl:NoBreak]한다."
}
}],
attacks: [{
name: {
en: "Hammer In",
fr: "Enfoncement",
es: "Martillear",
it: "Martello",
de: "Einhämmern",
'pt-br': "Martelada",
ko: "한방 먹이기"
},
damage: 60,
cost: ["Water", "Water", "Colorless"]
}],
weaknesses: [{
type: "Metal",
value: "+20"
}],
retreat: 3,
boosters: ["dialga"]
}
export default card