1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-20 02:59:18 +00:00

Initial Database

Signed-off-by: Avior <florian.bouillon@delta-wings.net>
This commit is contained in:
2020-02-19 16:19:09 +01:00
commit be94e712b8
12302 changed files with 1142705 additions and 0 deletions

96
cards/neo/neo4/62.ts Normal file
View File

@ -0,0 +1,96 @@
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: "neo4-62",
localId: 62,
// Card informations
name: {
en: "Dark Octillery",
},
hp: 60,
type: [
Type.WATER,
],
dexId: 224,
image: {
low: {
en: "https://assets.tcgdex.net/en/neo/neo4/62/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/neo/neo4/62/high.png",
},
},
evolveFrom: {
en: "Remoraid",
},
tags: [
Tag.STAGE1,
],
illustrator: {
id: 119,
name: "Shin-ichi Yoshida"
},
attacks: [{
cost: [
Type.WATER
],
name: {
en: "Ink Blast",
},
text: {
en: "This attack does 20 damage plus 10 more damage for each Energy attached to Dark Octillery but not used to pay for this attack's Energy cost. You can't add more than 20 damage in this way.",
},
damage: 20
},{
cost: [
Type.WATER,
Type.COLORLESS
],
name: {
en: "Tentacle Wrap",
},
text: {
en: "Flip a coin. If heads, the Defending Pokémon is now Paralyzed. If tails, during your opponent's next turn, your opponent pays more to retreat the Defending Pokémon.",
},
damage: 20
}],
weaknesses: [{
type: Type.LIGHTNING,
value: "×2"
}],
rarity: Rarity.Common,
category: Category.POKEMON,
set: {
name: "Neo Destiny",
code: "neo4"
}
}
export default card