1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-02 15:42:11 +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

77 lines
1.2 KiB
TypeScript

import { Card } from '../../../interfaces'
import Set from '../Mysterious Treasures'
const card: Card = {
name: {
en: "Sandshrew",
fr: "Sabelette"
},
illustrator: "Ken Sugimori",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
27,
],
hp: 60,
types: [
"Fighting",
],
stage: "Basic",
attacks: [
{
cost: [
"Fighting",
],
name: {
en: "Sand Attack",
fr: "Jet de sable"
},
effect: {
en: "If the Defending Pokémon tries to attack during your opponent's next turn, your opponent flips a coin. If tails, that attack does nothing.",
fr: "Si le Pokémon Défenseur essaye d'attaquer lors du prochain tour de votre adversaire, celui-ci lance une pièce. Si c'est pile, cette attaque est sans effet."
},
},
{
cost: [
"Fighting",
"Colorless",
],
name: {
en: "Ram",
fr: "Collision"
},
damage: 30,
},
],
weaknesses: [
{
type: "Water",
value: "+10"
},
],
resistances: [
{
type: "Lightning",
value: "-20"
},
],
description: {
fr: "Il vit sur des terres arides épargnées par la pluie. Il se roule en boule pour se protéger."
}
}
export default card