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

78 lines
1.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 '../Legends Awakened'
const card: Card = {
name: {
en: "Tauros",
fr: "Tauros",
},
illustrator: "Ken Sugimori",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
dexId: [
128,
],
hp: 80,
types: [
"Colorless",
],
stage: "Basic",
attacks: [
{
cost: [
"Colorless",
"Colorless",
],
name: {
en: "Herd Charge",
fr: "Charge de troupeau",
},
effect: {
en: "Flip a coin for each Tauros you have in play. This attack does 20 damage times the number of heads.",
fr: "Lancez une pièce pour chaque Tauros que vous avez en jeu. Cette attaque inflige 20 dégâts multipliés par le nombre de faces.",
},
damage: "20×",
},
{
cost: [
"Colorless",
"Colorless",
"Colorless",
],
name: {
en: "Thrash",
fr: "Mania",
},
effect: {
en: "Flip a coin. If heads, this attack does 40 damage plus 20 more damage. If tails, Tauros does 10 damage to itself.",
fr: "Lancez une pièce. Si c'est face, cette attaque inflige 40 dégâts plus 20 dégâts supplémentaires. Si c'est pile, Tauros s'inflige 10 dégâts.",
},
damage: "40+",
},
],
weaknesses: [
{
type: "Fighting",
value: "+20"
},
],
retreat: 2,
description: {
fr: "Après avoir choisi sa cible, il fonce dessus tête baissée. Il est réputé pour sa nature violente."
}
}
export default card