mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-22 19:02:10 +00:00
* Added basic translation IT will need a second checkup by another source as attacks are not correcly ordered Signed-off-by: Florian BOUILLON <florian.bouillon@delta-wings.net> * Removed bugged file Signed-off-by: Florian BOUILLON <florian.bouillon@delta-wings.net>
73 lines
937 B
TypeScript
73 lines
937 B
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Dragons Exalted'
|
||
|
||
const card: Card = {
|
||
name: {
|
||
en: "Wailmer",
|
||
fr: "Wailmer",
|
||
es: "Wailmer",
|
||
it: "Wailmer",
|
||
pt: "Wailmer",
|
||
de: "Wailmer"
|
||
},
|
||
illustrator: "Atsuko Nishida",
|
||
rarity: "Uncommon",
|
||
category: "Pokemon",
|
||
|
||
set: Set,
|
||
dexId: [
|
||
320,
|
||
],
|
||
hp: 100,
|
||
types: [
|
||
"Water",
|
||
],
|
||
|
||
stage: "Basic",
|
||
|
||
|
||
attacks: [
|
||
{
|
||
cost: [
|
||
"Colorless",
|
||
],
|
||
name: {
|
||
en: "Lullaby",
|
||
fr: "Comptine",
|
||
},
|
||
effect: {
|
||
en: "Flip a coin. If heads, the Defending Pokémon is now Asleep.",
|
||
fr: "Lancez une pièce. Si c'est face, le Pokémon Défenseur est maintenant Endormi.",
|
||
},
|
||
|
||
},
|
||
{
|
||
cost: [
|
||
"Water",
|
||
"Colorless",
|
||
"Colorless",
|
||
],
|
||
name: {
|
||
en: "Water Gun",
|
||
fr: "Pistolet à O",
|
||
},
|
||
|
||
damage: 30,
|
||
|
||
},
|
||
],
|
||
weaknesses: [
|
||
{
|
||
type: "Lightning",
|
||
value: "×2"
|
||
},
|
||
],
|
||
|
||
retreat: 3,
|
||
|
||
|
||
|
||
}
|
||
|
||
export default card
|