1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-03 08:02:10 +00:00
Florian Bouillon d4be6fa84f
fix: Add Diamond & Pearl French translations (#179)
* fix: Add the two first sets

Signed-off-by: Avior <github@avior.me>

* fix: Add DP, DP Black Star and Mysterious Treasures

Signed-off-by: Avior <github@avior.me>
2021-11-22 18:11:03 +00:00

91 lines
1.3 KiB
TypeScript

import { Card } from '../../../interfaces'
import Set from '../Legends Awakened'
const card: Card = {
name: {
en: "Piloswine",
fr: "Cochignon",
},
illustrator: "Midori Harada",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
dexId: [
221,
],
hp: 100,
types: [
"Water",
],
evolveFrom: {
en: "Swinub",
fr: "Quiekel",
},
stage: "Stage1",
attacks: [
{
cost: [
"Fighting",
"Colorless",
],
name: {
en: "Charge Dash",
fr: "Attaque précipitée",
},
effect: {
en: "You may do 30 damage plus 30 more damage. If you do, Piloswine does 30 damage to itself.",
fr: "Vous pouvez infliger 30 dégâts plus 30 dégâts supplémentaires. Cochignon s'inflige alors 30 dégâts.",
},
damage: "30+",
},
{
cost: [
"Water",
"Colorless",
"Colorless",
"Colorless",
],
name: {
en: "Icy Wind",
fr: "Vent glacé",
},
effect: {
en: "The Defending Pokémon is now Asleep.",
fr: "Le Pokémon Défenseur est maintenant Endormi.",
},
damage: 60,
},
],
weaknesses: [
{
type: "Metal",
value: "+20"
},
],
resistances: [
{
type: "Lightning",
value: "-20"
},
],
retreat: 3,
description: {
fr: "Il ne voit rien à cause de sa fourrure touffue et se repère à l'aide de son nez délicat."
}
}
export default card