mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-17 18:09:19 +00:00
Initial Database
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
This commit is contained in:
97
cards/bw/bw6/25.ts
Normal file
97
cards/bw/bw6/25.ts
Normal file
@ -0,0 +1,97 @@
|
||||
import Card from '../../../interfaces/Card'
|
||||
import Type from '../../../interfaces/Type'
|
||||
import Tag from '../../../interfaces/Tag'
|
||||
import Rarity from '../../../interfaces/Rarity'
|
||||
import AbilityType from '../../../interfaces/AbilityType'
|
||||
import Category from '../../../interfaces/Category'
|
||||
|
||||
const card: Card = {
|
||||
|
||||
// ids
|
||||
id: "bw6-25",
|
||||
localId: 25,
|
||||
|
||||
// Card informations
|
||||
name: {
|
||||
en: "Wailmer",
|
||||
fr: "Wailmer",
|
||||
},
|
||||
|
||||
hp: 100,
|
||||
|
||||
type: [
|
||||
Type.WATER,
|
||||
],
|
||||
|
||||
dexId: 320,
|
||||
|
||||
image: {
|
||||
low: {
|
||||
en: "https://assets.tcgdex.net/en/bw/bw6/25/low.png",
|
||||
fr: "https://assets.tcgdex.net/fr/bw/bw6/25/low.png",
|
||||
},
|
||||
high: {
|
||||
en: "https://assets.tcgdex.net/en/bw/bw6/25/high.png",
|
||||
fr: "https://assets.tcgdex.net/fr/bw/bw6/25/high.png",
|
||||
},
|
||||
},
|
||||
|
||||
evolveFrom: {},
|
||||
|
||||
tags: [
|
||||
Tag.BASIC,
|
||||
],
|
||||
|
||||
illustrator: {
|
||||
id: 32,
|
||||
name: "Atsuko Nishida"
|
||||
},
|
||||
|
||||
|
||||
|
||||
attacks: [{
|
||||
cost: [
|
||||
Type.COLORLESS
|
||||
],
|
||||
name: {
|
||||
en: "Lullaby",
|
||||
fr: "Comptine",
|
||||
},
|
||||
text: {
|
||||
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: [
|
||||
Type.WATER,
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS
|
||||
],
|
||||
name: {
|
||||
en: "Water Gun",
|
||||
fr: "Pistolet à O",
|
||||
},
|
||||
damage: 30
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: Type.LIGHTNING,
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
|
||||
|
||||
retreat: 3,
|
||||
|
||||
rarity: Rarity.Uncommon,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set: {
|
||||
name: "Dragons Exalted",
|
||||
code: "bw6"
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
Reference in New Issue
Block a user