1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-08-11 08:21:59 +00:00
Files
cards-database/data/Diamond & Pearl/Diamond & Pearl/38.ts
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

90 lines
1.3 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 '../Diamond & Pearl'
const card: Card = {
name: {
en: "Steelix",
fr: "Steelix",
},
illustrator: "Kouki Saitou",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
208,
],
hp: 110,
types: [
"Metal",
],
evolveFrom: {
en: "Onix",
fr: "Onix",
},
stage: "Stage1",
attacks: [
{
cost: [
"Metal",
],
name: {
en: "Slam",
fr: "Souplesse",
},
effect: {
en: "Flip 2 coins. This attack does 30 damage times the number of heads.",
fr: "Lancez 2 pièces. Cette attaque inflige 30 dégâts multipliés par le nombre de faces.",
},
damage: "30×",
},
{
cost: [
"Metal",
"Metal",
"Colorless",
"Colorless",
],
name: {
en: "Metal Slash",
fr: "Tranche métallique",
},
effect: {
en: "Steelix can't attack during your next turn.",
fr: "Steelix ne peut pas attaquer lors de votre prochain tour.",
},
damage: 100,
},
],
weaknesses: [
{
type: "Fire",
value: "+20"
},
],
resistances: [
{
type: "Psychic",
value: "-20"
},
],
retreat: 4,
description: {
fr: "Grâce à la température élevée et la haute pression souterraines, son corps est plus dur que le métal."
}
}
export default card