1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-14 16:39:18 +00:00
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
This commit is contained in:
2020-02-03 15:18:40 +01:00
commit 0d2a757cae
12077 changed files with 1123810 additions and 0 deletions

98
cards/dp/dp2/8.ts Normal file
View File

@ -0,0 +1,98 @@
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: "dp2-8",
localId: 8,
// Card informations
name: {
en: "Feraligatr",
},
hp: 130,
type: [
Type.WATER,
],
dexId: 160,
image: {
low: {
en: "https://assets.tcgdex.net/en/dp/dp2/8/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/dp/dp2/8/high.png",
},
},
evolveFrom: {
en: "Croconaw",
},
tags: [
Tag.STAGE2,
],
illustrator: {
id: 97,
name: "Kazuyuki Kano"
},
attacks: [{
cost: [
Type.WATER,
Type.WATER
],
name: {
en: "Energy Cyclone",
},
text: {
en: "Choose as many Energy cards from your hand as you like and show them to your opponent. This attack does 20 damage times the number of Energy cards you chose. Put those Energy cards on top of your deck. Shuffle your deck afterward.",
},
damage: 20
},{
cost: [
Type.WATER,
Type.COLORLESS,
Type.COLORLESS
],
name: {
en: "Breaking Tail",
},
text: {
en: "Choose 1 card from your opponent's hand without looking and discard it.",
},
damage: 60
}],
weaknesses: [{
type: Type.LIGHTNING,
value: "+30"
}],
rarity: Rarity.RareHolo,
category: Category.POKEMON,
set: {
name: "Mysterious Treasures",
code: "dp2"
}
}
export default card