1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-22 19:02:10 +00:00
Florian Bouillon 78366685f8
feat: TCG Pocket A2b (#695)
* feat: TCG Pocket A2b

Signed-off-by: Avior <git@avior.me>

* fix:implement new rarities

Signed-off-by: Avior <git@avior.me>

* fix:implement new rarities

Signed-off-by: Avior <git@avior.me>

---------

Signed-off-by: Avior <git@avior.me>
2025-03-27 01:01:27 +01:00

52 lines
737 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Shining Revelry"
const card: Card = {
set: Set,
name: {
en: "Tatsugiri"
},
illustrator: "cochi8i",
rarity: "One Star",
category: "Pokemon",
hp: 70,
types: ["Water"],
description: {
en: "This is a small dragon Pokémon. It lives inside the mouth of Dondozo to protect itself from enemies on the outside."
},
stage: "Basic",
abilities: [{
type: "Ability",
name: {
en: "Retreat Directive"
},
effect: {
en: "Your Active Dondozo has no Retreat Cost."
}
}],
attacks: [{
name: {
en: "Rain Splash"
},
damage: 20,
cost: ["Water"]
}],
weaknesses: [{
type: "Lightning",
value: "+20"
}],
retreat: 1
}
export default card