mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-13 00:09:18 +00:00
Finished Complete Rework of the Database
This commit is contained in:
73
data/E-Card/Aquapolis/112.ts
Normal file
73
data/E-Card/Aquapolis/112.ts
Normal file
@ -0,0 +1,73 @@
|
||||
import { Card } from '../../../interfaces'
|
||||
import Set from '../Aquapolis'
|
||||
|
||||
const card: Card = {
|
||||
name: {
|
||||
en: "Tangela",
|
||||
},
|
||||
illustrator: "Tomokazu Komiya",
|
||||
rarity: "Common",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
dexId: [
|
||||
114,
|
||||
],
|
||||
hp: 60,
|
||||
types: [
|
||||
"Grass",
|
||||
],
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
"Colorless",
|
||||
"Colorless",
|
||||
],
|
||||
name: {
|
||||
en: "Tickling Vines",
|
||||
},
|
||||
effect: {
|
||||
en: "Flip a coin. If heads, the Defending Pokémon can't attack during your opponent's next turn.",
|
||||
},
|
||||
damage: 10,
|
||||
|
||||
},
|
||||
{
|
||||
cost: [
|
||||
"Grass",
|
||||
"Colorless",
|
||||
"Colorless",
|
||||
],
|
||||
name: {
|
||||
en: "Double Kick",
|
||||
},
|
||||
effect: {
|
||||
en: "Flip 2 coins. This attack does 30 damage times the number of heads.",
|
||||
},
|
||||
damage: 30,
|
||||
|
||||
},
|
||||
],
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Fire",
|
||||
value: "×2"
|
||||
},
|
||||
],
|
||||
resistances: [
|
||||
{
|
||||
type: "Water",
|
||||
value: "-30"
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user