mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-13 16:19:18 +00:00
refactor: Add Sets/Series translations (#172)
* refactor: Add set/Series translations Signed-off-by: Avior <github@avior.me> * refactor: Done Trainer kits Signed-off-by: Avior <github@avior.me>
This commit is contained in:
66
data/McDonald's Collection/Promo McDonald's 2013/4.ts
Normal file
66
data/McDonald's Collection/Promo McDonald's 2013/4.ts
Normal file
@ -0,0 +1,66 @@
|
||||
import { Card } from '../../../interfaces'
|
||||
import Set from "../Promo McDonald's 2013"
|
||||
|
||||
const card: Card = {
|
||||
name: {
|
||||
fr: "Givrali",
|
||||
},
|
||||
illustrator: "Rya Ueda",
|
||||
rarity: "Common",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
dexId: [
|
||||
471,
|
||||
],
|
||||
hp: 90,
|
||||
types: [
|
||||
"Water",
|
||||
],
|
||||
|
||||
stage: "Stage1",
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
"Colorless",
|
||||
],
|
||||
name: {
|
||||
fr: "Vive-Attaque",
|
||||
},
|
||||
effect: {
|
||||
fr: "Lancez une pièce. Si c'est face, cetter attaque inflige 30 dégâts supplémentaires.",
|
||||
},
|
||||
damage: "10+",
|
||||
|
||||
},
|
||||
{
|
||||
cost: [
|
||||
"Water",
|
||||
"Colorless",
|
||||
],
|
||||
name: {
|
||||
fr: "ranvoi d'Énergie",
|
||||
},
|
||||
effect: {
|
||||
fr: "Déplacez une Énergie de ce Pokémon vers 1 de vos Pokémon de Banc.",
|
||||
},
|
||||
damage: 40,
|
||||
|
||||
},
|
||||
],
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Metal",
|
||||
value: "x2"
|
||||
},
|
||||
],
|
||||
|
||||
retreat: 1,
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user