1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 12:22:14 +00:00
Florian Bouillon 0d2a757cae
base DB
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2020-02-03 15:18:40 +01:00

105 lines
1.9 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/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: "bw10-16",
localId: 16,
// Card informations
name: {
en: "Blastoise",
fr: "Tortank",
},
hp: 140,
type: [
Type.WATER,
],
dexId: 9,
image: {
low: {
en: "https://assets.tcgdex.net/en/bw/bw10/16/low.png",
fr: "https://assets.tcgdex.net/fr/bw/bw10/16/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/bw/bw10/16/high.png",
fr: "https://assets.tcgdex.net/fr/bw/bw10/16/high.png",
},
},
evolveFrom: {
en: "Wartortle",
fr: "Carabaffe",
},
tags: [
Tag.STAGE2,
],
illustrator: {
id: 77,
name: "Satoshi Shirai"
},
abilities: [{
id: 574,
type: AbilityType.TALENT,
name: {
en: "Deluge",
fr: "Deluge",
},
text: {
en: "As often as you like during your turn (before your attack), you may attach a Water Energy card from your hand to 1 of your Pokémon.",
fr: "Autant de fois que vous le voulez pendant votre tour (avant votre attaque), vous pouvez attacher une carte Énergie Water de votre main à 1 de vos Pokémon.",
}
}],
attacks: [{
cost: [
Type.COLORLESS,
Type.COLORLESS,
Type.COLORLESS,
Type.COLORLESS
],
name: {
en: "Hydro Pump",
fr: "Hydrocanon",
},
text: {
en: "Does 10 more damage for each Water Energy attached to this Pokémon.",
fr: "Inflige 10 dégâts supplémentaires pour chaque Énergie Water attachée à ce Pokémon.",
},
damage: 60
}],
weaknesses: [{
type: Type.GRASS,
value: "×2"
}],
retreat: 4,
rarity: Rarity.RareHolo,
category: Category.POKEMON,
set: {
name: "Plasma Blast",
code: "bw10"
}
}
export default card