1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-13 16:19:18 +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,64 @@
import { Card } from '../../../interfaces'
import Set from '../Aquapolis'
const card: Card = {
name: {
en: "Tentacruel",
},
illustrator: "Hajime Kusajima",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
73,
],
hp: 70,
types: [
"Water",
],
evolveFrom: {
en: "Tentacool",
},
stage: "Stage1",
abilities: [
{
type: "Poke-POWER",
name: {
en: "Strange Tentacles",
},
effect: {
en: "Once during your turn (before your attack), as long as the number of Energy cards attached to the Defending Pokémon is less than the number of Energy cards attached to your Active Pokémon, you may choose an Energy card, if any, in your opponent's discard pile and attach it to the Defending Pokémon. This power can't be used if Tentacruel is affected by a Special Condition.",
},
},
],
attacks: [
{
cost: [
"Water",
"Colorless",
],
name: {
en: "Poison Sting",
},
effect: {
en: "Flip a coin. If heads, the Defending Pokémon is now Poisoned.",
},
},
],
weaknesses: [
{
type: "Lightning",
value: "×2"
},
],
}
export default card