1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-04 00:22:09 +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

72 lines
811 B
TypeScript

import { Card } from '../../../interfaces'
import Set from '../DP Black Star Promos'
const card: Card = {
name: {
en: "Turtwig",
fr: "Tortipouss"
},
illustrator: "Masakazu Fukuda",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
387,
],
hp: 60,
types: [
"Grass",
],
stage: "Basic",
attacks: [
{
name: {
en: "Tackle",
fr: "Charge"
},
damage: 10,
},
{
cost: [
"Grass",
],
name: {
en: "Razor Leaf",
fr: "Tranch'herbe"
},
damage: 20,
},
],
weaknesses: [
{
type: "Fire",
value: "+10"
},
],
resistances: [
{
type: "Water",
value: "-20"
},
],
description: {
fr: "La coquille sur son dos est faite de terre. Elle durcit lorsqu'il s'abreuve. Il vit le long des lacs."
}
}
export default card