mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-14 00:29:19 +00:00
feat(asian): Updated SV6 and added SV6a & SV6s (#502)
This commit is contained in:
50
data-asia/SV/SV6s/056.ts
Normal file
50
data-asia/SV/SV6s/056.ts
Normal file
@ -0,0 +1,50 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../SV6s"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
id: "Froakie"
|
||||
},
|
||||
|
||||
illustrator: "Yuka Morii",
|
||||
category: "Pokemon",
|
||||
hp: 60,
|
||||
types: ["Water"],
|
||||
|
||||
description: {
|
||||
id: "Froakie mengeluarkan gelembung dari dada dan punggungnya. Pokémon ini menerima serangan menggunakan gelembungnya yang elastis dan mengurangi kerusakan."
|
||||
},
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
id: "Menggerombol"
|
||||
},
|
||||
|
||||
effect: {
|
||||
id: "Pilih paling banyak 2 lembar Froakie dari Deck sendiri, lalu masukkan ke Cadangan. Kemudian, kocok Deck."
|
||||
},
|
||||
|
||||
cost: ["Water"]
|
||||
}, {
|
||||
name: {
|
||||
id: "Melompat Berkeliling"
|
||||
},
|
||||
|
||||
damage: 10,
|
||||
cost: ["Water"]
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Lightning",
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
regulationMark: "H"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user