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

104
cards/ex/ex6/20.ts Normal file
View File

@ -0,0 +1,104 @@
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: "ex6-20",
localId: 20,
// Card informations
name: {
en: "Cloyster",
},
hp: 70,
type: [
Type.WATER,
],
dexId: 91,
image: {
low: {
en: "https://assets.tcgdex.net/en/ex/ex6/20/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/ex/ex6/20/high.png",
},
},
evolveFrom: {
en: "Shellder",
},
tags: [
Tag.STAGE1,
],
illustrator: {
id: 43,
name: "Aya Kusube"
},
abilities: [{
id: 276,
type: AbilityType.POKEBODY,
name: {
en: "Exoskeleton",
},
text: {
en: "Any damage done to Cloyster by attacks is reduced by 20 (after applying Weakness and Resistance).",
}
}],
attacks: [{
cost: [
Type.COLORLESS,
Type.COLORLESS
],
name: {
en: "Double Bubble",
},
text: {
en: "Flip 2 coins. This attack does 10 damage times the number of heads. If either of the coins is heads, the Defending Pokémon is now Paralyzed.",
},
damage: 10
},{
cost: [
Type.WATER,
Type.COLORLESS,
Type.COLORLESS
],
name: {
en: "Shell Attack",
},
damage: 50
}],
weaknesses: [{
type: Type.LIGHTNING,
value: "×2"
}],
rarity: Rarity.Rare,
category: Category.POKEMON,
set: {
name: "FireRed & LeafGreen",
code: "ex6"
}
}
export default card