1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-07-30 11:30:46 +00:00

Finished Complete Rework of the Database

This commit is contained in:
2021-02-24 16:56:26 +01:00
parent 8f9e953656
commit 9a1ae318f1
26038 changed files with 814437 additions and 1155588 deletions

View File

@ -0,0 +1,68 @@
import { Card } from '../../../interfaces'
import Set from '../Team Rocket Returns'
const card: Card = {
name: {
en: "Dark Octillery",
},
illustrator: "Mitsuhiro Arita",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
224,
],
hp: 70,
types: [
"Water",
"Darkness",
],
evolveFrom: {
en: "Remoraid",
},
stage: "Stage1",
attacks: [
{
cost: [
"Water",
],
name: {
en: "Black Suction Cups",
},
effect: {
en: "Does 10 damage to each Defending Pokémon. Flip a coin. If heads, each Defending Pokémon is now Paralyzed.",
},
},
{
cost: [
"Colorless",
"Colorless",
],
name: {
en: "Ink Blast",
},
effect: {
en: "Does 30 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: 30,
},
],
weaknesses: [
{
type: "Lightning",
value: "×2"
},
],
}
export default card