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

feat: Add SV8s (#675)

This commit is contained in:
2025-02-28 08:44:50 +01:00
committed by GitHub
parent e4099defdb
commit e8e9c23e14
245 changed files with 11903 additions and 0 deletions

46
data-asia/SV/SV8s/202.ts Normal file
View File

@ -0,0 +1,46 @@
import { Card } from "../../../interfaces"
import Set from "../SV8s"
const card: Card = {
set: Set,
name: {
id: "Flapple"
},
illustrator: "Uninori",
category: "Pokemon",
hp: 80,
types: ["Dragon"],
description: {
id: "Pokémon ini memperbaiki apel dengan cairan tubuhnya. Apel milik Flapple yang kuat dan berpengalaman dalam pertarungan berwarna coklat tanah liat secara menyeluruh."
},
stage: "Stage1",
attacks: [{
name: {
id: "Sour Spit"
},
effect: {
id: "Serangan ini memberikan kerusakan sejumlah 20 untuk tiap Token Kerusakan yang dimiliki Pokémon Bertarung lawan."
},
damage: "20×",
cost: ["Colorless"]
}, {
name: {
id: "Terbang Cepat"
},
damage: 70,
cost: ["Grass", "Fire"]
}],
retreat: 1,
regulationMark: "H"
}
export default card