mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-13 00:09:18 +00:00
57
data/Sword & Shield/Fusion Strike/160.ts
Normal file
57
data/Sword & Shield/Fusion Strike/160.ts
Normal file
@ -0,0 +1,57 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Fusion Strike"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Galarian Linoone",
|
||||
fr: "Linéon de Galar",
|
||||
es: "Linoone de Galar",
|
||||
it: "Linoone di Galar",
|
||||
pt: "Linoone de Galar",
|
||||
de: "Galar-Geradaks"
|
||||
},
|
||||
|
||||
rarity: "Uncommon",
|
||||
category: "Pokemon",
|
||||
hp: 90,
|
||||
types: ["Darkness"],
|
||||
|
||||
evolveFrom: {
|
||||
en: "Galarian Zigzagoon",
|
||||
fr: "Zigzaton de Galar",
|
||||
es: "Zigzagoon de Galar",
|
||||
it: "Zigzagoon di Galar",
|
||||
pt: "Zigzagoon de Galar",
|
||||
de: "Galar-Zigzachs"
|
||||
},
|
||||
|
||||
stage: "Stage1",
|
||||
retreat: 1,
|
||||
regulationMark: "E",
|
||||
illustrator: "sowsow",
|
||||
|
||||
description: {
|
||||
en: "This very aggressive Pokémon will recklessly challenge opponents stronger than itself."
|
||||
},
|
||||
|
||||
attacks: [{
|
||||
cost: ["Darkness"],
|
||||
|
||||
name: {
|
||||
en: "Rear Kick"
|
||||
},
|
||||
|
||||
damage: 30
|
||||
}],
|
||||
|
||||
variants: {
|
||||
normal: true,
|
||||
reverse: true,
|
||||
holo: false,
|
||||
firstEdition: false
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user