Feat: effect used style
@@ -1,91 +1,34 @@
|
|||||||
<script setup lang="ts">
|
<script setup lang="ts">
|
||||||
|
import { compileCards } from "./services/loadCards";
|
||||||
|
import { getCurrentInstance } from "vue";
|
||||||
// import goStore, { oauth2_register_discord, setup_websocket, heron_cookie_login } from "@/netcode";
|
// import goStore, { oauth2_register_discord, setup_websocket, heron_cookie_login } from "@/netcode";
|
||||||
|
|
||||||
|
const nuxtApp = useNuxtApp();
|
||||||
|
|
||||||
const router = useRouter();
|
const router = useRouter();
|
||||||
const authStore = useAuthStore()
|
const authStore = useAuthStore();
|
||||||
|
|
||||||
await authStore.whoami()
|
await authStore.whoami();
|
||||||
|
|
||||||
|
console.log("compiling cards...");
|
||||||
|
const app = getCurrentInstance()?.appContext.app;
|
||||||
|
if (!app) {
|
||||||
|
throw new Error("Couldn't bake cards: instance is null");
|
||||||
|
}
|
||||||
|
await compileCards(app);
|
||||||
|
|
||||||
|
console.log("compiling done");
|
||||||
|
|
||||||
|
useHead({
|
||||||
useHead
|
title: "Héron Realms",
|
||||||
({
|
});
|
||||||
title
|
|
||||||
: 'Héron Realms',
|
|
||||||
})
|
|
||||||
|
|
||||||
// onMounted(async () => {
|
|
||||||
// if (!heron_session.value) { return }
|
|
||||||
// heron_cookie_login(heron_session.value)
|
|
||||||
// })
|
|
||||||
|
|
||||||
// function keyDownHandler(e: KeyboardEvent) {
|
|
||||||
// if (e.repeat) { return }
|
|
||||||
// console.log(e.code)
|
|
||||||
// if (e.code != "AltLeft") { return }
|
|
||||||
// goStore.zoomKeyPressed = true
|
|
||||||
// e.preventDefault()
|
|
||||||
// return false
|
|
||||||
// }
|
|
||||||
|
|
||||||
// function keyUpHandler(e: KeyboardEvent) {
|
|
||||||
// if (e.repeat) { return }
|
|
||||||
// if (e.code != "AltLeft") { return }
|
|
||||||
// goStore.zoomKeyPressed = false
|
|
||||||
// e.preventDefault()
|
|
||||||
// return false
|
|
||||||
// }
|
|
||||||
|
|
||||||
// function contextMenuHandler(e: MouseEvent) {
|
|
||||||
// e.preventDefault()
|
|
||||||
// }
|
|
||||||
|
|
||||||
// function mouseDownHandler(e: MouseEvent) {
|
|
||||||
// if (e.button !== 2) { return }
|
|
||||||
// goStore.zoomKeyPressed = true
|
|
||||||
// e.preventDefault()
|
|
||||||
// return false
|
|
||||||
// }
|
|
||||||
|
|
||||||
// function mouseUpHandler(e: MouseEvent) {
|
|
||||||
// if (e.button !== 2) { return }
|
|
||||||
// goStore.zoomKeyPressed = false
|
|
||||||
// e.preventDefault()
|
|
||||||
// return false
|
|
||||||
// }
|
|
||||||
|
|
||||||
// function follow_mouse(e: MouseEvent) {
|
|
||||||
// goStore.clientMouseX = e.clientX
|
|
||||||
// goStore.clientMouseY = e.clientY
|
|
||||||
// }
|
|
||||||
|
|
||||||
// onMounted(() => {
|
|
||||||
// window.addEventListener("contextmenu", contextMenuHandler)
|
|
||||||
// window.addEventListener("mousedown", mouseDownHandler)
|
|
||||||
// window.addEventListener("mouseup", mouseUpHandler)
|
|
||||||
// document.addEventListener("mousemove", follow_mouse)
|
|
||||||
// })
|
|
||||||
|
|
||||||
// onUnmounted(() => {
|
|
||||||
// window.removeEventListener("contextmenu", contextMenuHandler)
|
|
||||||
// window.removeEventListener("mousedown", mouseDownHandler)
|
|
||||||
// window.removeEventListener("mouseup", mouseUpHandler)
|
|
||||||
// document.removeEventListener("mousemove", follow_mouse)
|
|
||||||
// })
|
|
||||||
|
|
||||||
// onDeactivated
|
|
||||||
</script>
|
</script>
|
||||||
<template>
|
<template>
|
||||||
<div class="root_dom_div">
|
<div class="root_dom_div">
|
||||||
<!-- <CardOverlay v-if="goStore.zoomKeyPressed" :card_id="goStore.hoveredCard" /> -->
|
<NuxtLoadingIndicator> Loading... </NuxtLoadingIndicator>
|
||||||
<NuxtLoadingIndicator>
|
|
||||||
Loading...
|
|
||||||
</NuxtLoadingIndicator>
|
|
||||||
<NuxtLayout>
|
<NuxtLayout>
|
||||||
<NuxtPage />
|
<NuxtPage />
|
||||||
</NuxtLayout>
|
</NuxtLayout>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||||
width="298" height="417" viewBox="0 0 298 417" id="card1">
|
width="298" height="417" viewBox="0 0 298 417" id="card1" class="card" xmlns:v-bind="https://heron.legonzaur.fr">
|
||||||
<defs>
|
<defs>
|
||||||
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
||||||
<stop offset="0" stop-color="yellow" stop-opacity="1" />
|
<stop offset="0" stop-color="yellow" stop-opacity="1" />
|
||||||
@@ -13,51 +13,6 @@
|
|||||||
<filter id="drop-shadow">
|
<filter id="drop-shadow">
|
||||||
<feDropShadow dx="1" dy="1" stdDeviation="0"></feDropShadow>
|
<feDropShadow dx="1" dy="1" stdDeviation="0"></feDropShadow>
|
||||||
</filter>
|
</filter>
|
||||||
<g id="faction_icon">
|
|
||||||
<circle cx="1" cy="1" r="20" fill="black" filter="url(#drop-shadow)" />
|
|
||||||
<circle cx="0" cy="0" r="20" fill="url(#grad2)" />
|
|
||||||
</g>
|
|
||||||
<g class="svg_resource_icon" onclick="console.warn('unknown interaction')" id="d0">
|
|
||||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
|
||||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">8</text>
|
|
||||||
</g>
|
|
||||||
<g id="d1">
|
|
||||||
<text x="0" y="-0.0" font-size="13.333333333333334" text-anchor="middle" fill="black" font-family="Helvetica">Piochez une carte.</text>
|
|
||||||
</g>
|
|
||||||
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '1' } ) );" id="d2">
|
|
||||||
<circle cx="0" cy="0" r="20" fill="red" x="0" y="0" />
|
|
||||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">5</text>
|
|
||||||
</g>
|
|
||||||
<g id="d3">
|
|
||||||
<circle cx="30" cy="40.0" r="15" fill="gray" filter="url(#drop-shadow)" />
|
|
||||||
<use xlink:href="#d1" x="137.0" y="70.66666666666667" />
|
|
||||||
<use xlink:href="#d2" x="137.0" y="33.0" />
|
|
||||||
</g>
|
|
||||||
<g id="d4">
|
|
||||||
<text x="0" y="-0.0" font-size="11" text-anchor="middle" fill="black" font-family="Helvetica"></text>
|
|
||||||
</g>
|
|
||||||
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '2' } ) );" id="d5">
|
|
||||||
<circle cx="0" cy="0" r="18.333333333333332" fill="green" x="0" y="0" />
|
|
||||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">6</text>
|
|
||||||
</g>
|
|
||||||
<g id="d6">
|
|
||||||
<circle cx="30" cy="27.5" r="15" fill="url(#grad2)" filter="url(#drop-shadow)" />
|
|
||||||
<use xlink:href="#d4" x="137.0" y="45.666666666666664" />
|
|
||||||
<use xlink:href="#d5" x="137.0" y="27.5" />
|
|
||||||
</g>
|
|
||||||
<g id="effects">
|
|
||||||
<path d="M10,80 L264,80" stroke="black" stroke-width="1" />
|
|
||||||
<use xlink:href="#d3" x="0" y="0" />
|
|
||||||
<use xlink:href="#d6" x="0" y="80" />
|
|
||||||
</g>
|
|
||||||
<path d="M-2.9999999999999982,-2.0 L-29.6295824562643,-21.347524157501468 L-19.45798706418925,-52.652475842498525 L13.45798706418924,-52.65247584249853 L23.629582456264302,-21.34752415750148 Z" stroke-width="2" id="d7" />
|
|
||||||
<text x="-3" y="-20" font-size="28px" font-weight="bold" font-family="Helvetica" text-anchor="middle" id="d8">6</text>
|
|
||||||
<g id="champion_shield">
|
|
||||||
<use xlink:href="#d7" x="0" y="0" fill="black" stroke="lightgrey" />
|
|
||||||
<rect x="-28" y="-72" width="49" height="17" fill="black" stroke="lightgrey" stroke-width="2" />
|
|
||||||
<text x="-3" y="-59" font-size="12px" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">Garde</text>
|
|
||||||
<use xlink:href="#d8" x="0" y="0" fill="white" />
|
|
||||||
</g>
|
|
||||||
</defs>
|
</defs>
|
||||||
<use xlink:href="#drop-shadow" />
|
<use xlink:href="#drop-shadow" />
|
||||||
<g id="background">
|
<g id="background">
|
||||||
@@ -68,10 +23,53 @@
|
|||||||
<text x="149.0" y="36" font-size="16" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">Arkus, Imperial Dragon</text>
|
<text x="149.0" y="36" font-size="16" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">Arkus, Imperial Dragon</text>
|
||||||
<text x="149.0" y="53" font-size="13" text-anchor="middle" fill="black" font-family="Helvetica">Champion</text>
|
<text x="149.0" y="53" font-size="13" text-anchor="middle" fill="black" font-family="Helvetica">Champion</text>
|
||||||
</g>
|
</g>
|
||||||
<use xlink:href="#faction_icon" x="36" y="37" />
|
<g transform="translate(36,37)">
|
||||||
<use xlink:href="#d0" x="260" y="36" />
|
<g id="faction_icon">
|
||||||
|
<circle cx="1" cy="1" r="20" fill="black" filter="url(#drop-shadow)" />
|
||||||
|
<circle cx="0" cy="0" r="20" fill="url(#grad2)" />
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(260,36)">
|
||||||
|
<g class="svg_resource_icon" onclick="console.warn('unknown interaction')">
|
||||||
|
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
||||||
|
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">8</text>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
<rect x="0" y="65" width="298" height="200" />
|
<rect x="0" y="65" width="298" height="200" />
|
||||||
<image x="0" y="65" width="298" height="200" xlink:href="../../img/missing.png" />
|
<image x="0" y="65" width="298" height="200" xlink:href="../../img/missing.png" />
|
||||||
<use xlink:href="#effects" x="12" y="265" />
|
<g transform="translate(12,265)">
|
||||||
<use xlink:href="#champion_shield" x="268" y="417" />
|
<path d="M10,80 L264,80" stroke="black" stroke-width="1" />
|
||||||
|
<g>
|
||||||
|
<circle cx="30" cy="40.0" r="15" fill="gray" filter="url(#drop-shadow)" />
|
||||||
|
<g transform="translate(137.0,70.66666666666667)">
|
||||||
|
<text x="0" y="-0.0" font-size="13.333333333333334" text-anchor="middle" fill="black" font-family="Helvetica">Piochez une carte.</text>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(137.0,33.0)" v-bind:class="{used:used_effects_indexes.includes(1)}">
|
||||||
|
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '1' } ) );">
|
||||||
|
<circle cx="0" cy="0" r="20" fill="red" x="0" y="0" />
|
||||||
|
<text x="0" y="9" font-size="24" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">5</text>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(0,80)">
|
||||||
|
<g>
|
||||||
|
<circle cx="30" cy="27.5" r="15" fill="url(#grad2)" filter="url(#drop-shadow)" />
|
||||||
|
<g transform="translate(137.0,45.666666666666664)">
|
||||||
|
<text x="0" y="-0.0" font-size="11" text-anchor="middle" fill="black" font-family="Helvetica"></text>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(137.0,27.5)" v-bind:class="{used:used_effects_indexes.includes(2)}">
|
||||||
|
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '2' } ) );">
|
||||||
|
<circle cx="0" cy="0" r="18.333333333333332" fill="green" x="0" y="0" />
|
||||||
|
<text x="0" y="9" font-size="24" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">6</text>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(268,417)">
|
||||||
|
<path d="M-2.9999999999999982,-2.0 L-29.6295824562643,-21.347524157501468 L-19.45798706418925,-52.652475842498525 L13.45798706418924,-52.65247584249853 L23.629582456264302,-21.34752415750148 Z" fill="black" stroke="lightgrey" stroke-width="2" />
|
||||||
|
<rect x="-28" y="-72" width="49" height="17" fill="black" stroke="lightgrey" stroke-width="2" />
|
||||||
|
<text x="-3" y="-59" font-size="12px" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">Garde</text>
|
||||||
|
<text x="-3" y="-20" font-size="28px" font-weight="bold" font-family="Helvetica" text-anchor="middle" fill="white">6</text>
|
||||||
|
</g>
|
||||||
</svg>
|
</svg>
|
||||||
|
Before Width: | Height: | Size: 4.1 KiB After Width: | Height: | Size: 4.0 KiB |
@@ -1,6 +1,6 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||||
width="298" height="417" viewBox="0 0 298 417" id="card2">
|
width="298" height="417" viewBox="0 0 298 417" id="card2" class="card" xmlns:v-bind="https://heron.legonzaur.fr">
|
||||||
<defs>
|
<defs>
|
||||||
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
||||||
<stop offset="0" stop-color="yellow" stop-opacity="1" />
|
<stop offset="0" stop-color="yellow" stop-opacity="1" />
|
||||||
@@ -13,42 +13,6 @@
|
|||||||
<filter id="drop-shadow">
|
<filter id="drop-shadow">
|
||||||
<feDropShadow dx="1" dy="1" stdDeviation="0"></feDropShadow>
|
<feDropShadow dx="1" dy="1" stdDeviation="0"></feDropShadow>
|
||||||
</filter>
|
</filter>
|
||||||
<g id="faction_icon">
|
|
||||||
<circle cx="1" cy="1" r="20" fill="black" filter="url(#drop-shadow)" />
|
|
||||||
<circle cx="0" cy="0" r="20" fill="url(#grad2)" />
|
|
||||||
</g>
|
|
||||||
<g class="svg_resource_icon" onclick="console.warn('unknown interaction')" id="d0">
|
|
||||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
|
||||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">3</text>
|
|
||||||
</g>
|
|
||||||
<g id="d1">
|
|
||||||
<text x="0" y="-6.666666666666667" font-size="13.333333333333334" text-anchor="middle" fill="black" font-family="Helvetica"><tspan x="0" dy="0em">+ x pour chaque Champion</tspan><tspan x="0" dy="1em">que vous avez en jeu</tspan></text>
|
|
||||||
</g>
|
|
||||||
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '0' } ) );" id="d2">
|
|
||||||
<circle cx="0" cy="0" r="20" fill="red" x="0" y="0" />
|
|
||||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">5</text>
|
|
||||||
</g>
|
|
||||||
<g id="d3">
|
|
||||||
<use xlink:href="#d1" x="137.0" y="70.66666666666667" />
|
|
||||||
<use xlink:href="#d2" x="137.0" y="33.0" />
|
|
||||||
</g>
|
|
||||||
<g id="d4">
|
|
||||||
<text x="0" y="-0.0" font-size="11" text-anchor="middle" fill="black" font-family="Helvetica"></text>
|
|
||||||
</g>
|
|
||||||
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '2' } ) );" id="d5">
|
|
||||||
<circle cx="0" cy="0" r="18.333333333333332" fill="green" x="0" y="0" />
|
|
||||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">6</text>
|
|
||||||
</g>
|
|
||||||
<g id="d6">
|
|
||||||
<circle cx="30" cy="27.5" r="15" fill="url(#grad2)" filter="url(#drop-shadow)" />
|
|
||||||
<use xlink:href="#d4" x="137.0" y="45.666666666666664" />
|
|
||||||
<use xlink:href="#d5" x="137.0" y="27.5" />
|
|
||||||
</g>
|
|
||||||
<g id="effects">
|
|
||||||
<path d="M10,80 L264,80" stroke="black" stroke-width="1" />
|
|
||||||
<use xlink:href="#d3" x="0" y="0" />
|
|
||||||
<use xlink:href="#d6" x="0" y="80" />
|
|
||||||
</g>
|
|
||||||
</defs>
|
</defs>
|
||||||
<use xlink:href="#drop-shadow" />
|
<use xlink:href="#drop-shadow" />
|
||||||
<g id="background">
|
<g id="background">
|
||||||
@@ -59,9 +23,46 @@
|
|||||||
<text x="149.0" y="36" font-size="19" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">Close Ranks</text>
|
<text x="149.0" y="36" font-size="19" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">Close Ranks</text>
|
||||||
<text x="149.0" y="53" font-size="13" text-anchor="middle" fill="black" font-family="Helvetica">Action</text>
|
<text x="149.0" y="53" font-size="13" text-anchor="middle" fill="black" font-family="Helvetica">Action</text>
|
||||||
</g>
|
</g>
|
||||||
<use xlink:href="#faction_icon" x="36" y="37" />
|
<g transform="translate(36,37)">
|
||||||
<use xlink:href="#d0" x="260" y="36" />
|
<g id="faction_icon">
|
||||||
|
<circle cx="1" cy="1" r="20" fill="black" filter="url(#drop-shadow)" />
|
||||||
|
<circle cx="0" cy="0" r="20" fill="url(#grad2)" />
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(260,36)">
|
||||||
|
<g class="svg_resource_icon" onclick="console.warn('unknown interaction')">
|
||||||
|
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
||||||
|
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">3</text>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
<rect x="0" y="65" width="298" height="200" />
|
<rect x="0" y="65" width="298" height="200" />
|
||||||
<image x="0" y="65" width="298" height="200" xlink:href="../../img/missing.png" />
|
<image x="0" y="65" width="298" height="200" xlink:href="../../img/missing.png" />
|
||||||
<use xlink:href="#effects" x="12" y="265" />
|
<g transform="translate(12,265)">
|
||||||
|
<path d="M10,80 L264,80" stroke="black" stroke-width="1" />
|
||||||
|
<g>
|
||||||
|
<g transform="translate(137.0,70.66666666666667)">
|
||||||
|
<text x="0" y="-6.666666666666667" font-size="13.333333333333334" text-anchor="middle" fill="black" font-family="Helvetica"><tspan x="0" dy="0em">+ x pour chaque Champion</tspan><tspan x="0" dy="1em">que vous avez en jeu</tspan></text>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(137.0,33.0)" v-bind:class="{used:used_effects_indexes.includes(0)}">
|
||||||
|
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '0' } ) );">
|
||||||
|
<circle cx="0" cy="0" r="20" fill="red" x="0" y="0" />
|
||||||
|
<text x="0" y="9" font-size="24" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">5</text>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(0,80)">
|
||||||
|
<g>
|
||||||
|
<circle cx="30" cy="27.5" r="15" fill="url(#grad2)" filter="url(#drop-shadow)" />
|
||||||
|
<g transform="translate(137.0,45.666666666666664)">
|
||||||
|
<text x="0" y="-0.0" font-size="11" text-anchor="middle" fill="black" font-family="Helvetica"></text>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(137.0,27.5)" v-bind:class="{used:used_effects_indexes.includes(2)}">
|
||||||
|
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '2' } ) );">
|
||||||
|
<circle cx="0" cy="0" r="18.333333333333332" fill="green" x="0" y="0" />
|
||||||
|
<text x="0" y="9" font-size="24" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">6</text>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
</svg>
|
</svg>
|
||||||
|
Before Width: | Height: | Size: 3.4 KiB After Width: | Height: | Size: 3.4 KiB |
@@ -1,6 +1,6 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||||
width="298" height="417" viewBox="0 0 298 417" id="card3">
|
width="298" height="417" viewBox="0 0 298 417" id="card3" class="card" xmlns:v-bind="https://heron.legonzaur.fr">
|
||||||
<defs>
|
<defs>
|
||||||
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
||||||
<stop offset="0" stop-color="yellow" stop-opacity="1" />
|
<stop offset="0" stop-color="yellow" stop-opacity="1" />
|
||||||
@@ -13,38 +13,6 @@
|
|||||||
<filter id="drop-shadow">
|
<filter id="drop-shadow">
|
||||||
<feDropShadow dx="1" dy="1" stdDeviation="0"></feDropShadow>
|
<feDropShadow dx="1" dy="1" stdDeviation="0"></feDropShadow>
|
||||||
</filter>
|
</filter>
|
||||||
<g id="faction_icon">
|
|
||||||
<circle cx="1" cy="1" r="20" fill="black" filter="url(#drop-shadow)" />
|
|
||||||
<circle cx="0" cy="0" r="20" fill="url(#grad2)" />
|
|
||||||
</g>
|
|
||||||
<g class="svg_resource_icon" onclick="console.warn('unknown interaction')" id="d0">
|
|
||||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
|
||||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">5</text>
|
|
||||||
</g>
|
|
||||||
<g id="d1">
|
|
||||||
<text x="0" y="-0.0" font-size="14" text-anchor="middle" fill="black" font-family="Helvetica">Piochez une carte.</text>
|
|
||||||
</g>
|
|
||||||
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '1' } ) );" id="d2">
|
|
||||||
<circle cx="0" cy="0" r="20" fill="red" x="0" y="0" />
|
|
||||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">3</text>
|
|
||||||
</g>
|
|
||||||
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '2' } ) );" id="d3">
|
|
||||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
|
||||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">2</text>
|
|
||||||
</g>
|
|
||||||
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '3' } ) );" id="d4">
|
|
||||||
<circle cx="0" cy="0" r="20" fill="green" x="0" y="0" />
|
|
||||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">4</text>
|
|
||||||
</g>
|
|
||||||
<g id="d5">
|
|
||||||
<use xlink:href="#d1" x="137.0" y="101.5" />
|
|
||||||
<use xlink:href="#d2" x="77.0" y="60.5" />
|
|
||||||
<use xlink:href="#d3" x="137.0" y="60.5" />
|
|
||||||
<use xlink:href="#d4" x="197.0" y="60.5" />
|
|
||||||
</g>
|
|
||||||
<g id="effects">
|
|
||||||
<use xlink:href="#d5" x="0" y="0" />
|
|
||||||
</g>
|
|
||||||
</defs>
|
</defs>
|
||||||
<use xlink:href="#drop-shadow" />
|
<use xlink:href="#drop-shadow" />
|
||||||
<g id="background">
|
<g id="background">
|
||||||
@@ -55,9 +23,43 @@
|
|||||||
<text x="149.0" y="36" font-size="19" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">Command</text>
|
<text x="149.0" y="36" font-size="19" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">Command</text>
|
||||||
<text x="149.0" y="53" font-size="13" text-anchor="middle" fill="black" font-family="Helvetica">Action</text>
|
<text x="149.0" y="53" font-size="13" text-anchor="middle" fill="black" font-family="Helvetica">Action</text>
|
||||||
</g>
|
</g>
|
||||||
<use xlink:href="#faction_icon" x="36" y="37" />
|
<g transform="translate(36,37)">
|
||||||
<use xlink:href="#d0" x="260" y="36" />
|
<g id="faction_icon">
|
||||||
|
<circle cx="1" cy="1" r="20" fill="black" filter="url(#drop-shadow)" />
|
||||||
|
<circle cx="0" cy="0" r="20" fill="url(#grad2)" />
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(260,36)">
|
||||||
|
<g class="svg_resource_icon" onclick="console.warn('unknown interaction')">
|
||||||
|
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
||||||
|
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">5</text>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
<rect x="0" y="65" width="298" height="200" />
|
<rect x="0" y="65" width="298" height="200" />
|
||||||
<image x="0" y="65" width="298" height="200" xlink:href="../../img/missing.png" />
|
<image x="0" y="65" width="298" height="200" xlink:href="../../img/missing.png" />
|
||||||
<use xlink:href="#effects" x="12" y="265" />
|
<g transform="translate(12,265)">
|
||||||
|
<g>
|
||||||
|
<g transform="translate(137.0,101.5)">
|
||||||
|
<text x="0" y="-0.0" font-size="14" text-anchor="middle" fill="black" font-family="Helvetica">Piochez une carte.</text>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(77.0,60.5)" v-bind:class="{used:used_effects_indexes.includes(1)}">
|
||||||
|
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '1' } ) );">
|
||||||
|
<circle cx="0" cy="0" r="20" fill="red" x="0" y="0" />
|
||||||
|
<text x="0" y="9" font-size="24" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">3</text>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(137.0,60.5)" v-bind:class="{used:used_effects_indexes.includes(2)}">
|
||||||
|
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '2' } ) );">
|
||||||
|
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
||||||
|
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">2</text>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(197.0,60.5)" v-bind:class="{used:used_effects_indexes.includes(3)}">
|
||||||
|
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '3' } ) );">
|
||||||
|
<circle cx="0" cy="0" r="20" fill="green" x="0" y="0" />
|
||||||
|
<text x="0" y="9" font-size="24" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">4</text>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
</svg>
|
</svg>
|
||||||
|
Before Width: | Height: | Size: 3.3 KiB After Width: | Height: | Size: 3.3 KiB |
@@ -1,6 +1,6 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||||
width="298" height="417" viewBox="0 0 298 417" id="card4">
|
width="298" height="417" viewBox="0 0 298 417" id="card4" class="card" xmlns:v-bind="https://heron.legonzaur.fr">
|
||||||
<defs>
|
<defs>
|
||||||
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
||||||
<stop offset="0" stop-color="yellow" stop-opacity="1" />
|
<stop offset="0" stop-color="yellow" stop-opacity="1" />
|
||||||
@@ -13,40 +13,6 @@
|
|||||||
<filter id="drop-shadow">
|
<filter id="drop-shadow">
|
||||||
<feDropShadow dx="1" dy="1" stdDeviation="0"></feDropShadow>
|
<feDropShadow dx="1" dy="1" stdDeviation="0"></feDropShadow>
|
||||||
</filter>
|
</filter>
|
||||||
<g id="faction_icon">
|
|
||||||
<circle cx="1" cy="1" r="20" fill="black" filter="url(#drop-shadow)" />
|
|
||||||
<circle cx="0" cy="0" r="20" fill="url(#grad2)" />
|
|
||||||
</g>
|
|
||||||
<g class="svg_resource_icon" onclick="console.warn('unknown interaction')" id="d0">
|
|
||||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
|
||||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">4</text>
|
|
||||||
</g>
|
|
||||||
<g id="d1">
|
|
||||||
<text x="0" y="-0.0" font-size="14" text-anchor="middle" fill="black" font-family="Helvetica"></text>
|
|
||||||
</g>
|
|
||||||
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '0' } ) );" id="d2">
|
|
||||||
<circle cx="0" cy="0" r="20" fill="red" x="0" y="0" />
|
|
||||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">3</text>
|
|
||||||
</g>
|
|
||||||
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '1' } ) );" id="d3">
|
|
||||||
<circle cx="0" cy="0" r="20" fill="green" x="0" y="0" />
|
|
||||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">4</text>
|
|
||||||
</g>
|
|
||||||
<g id="d4">
|
|
||||||
<circle cx="30" cy="67.5" r="15" fill="gray" filter="url(#drop-shadow)" />
|
|
||||||
<use xlink:href="#d1" x="137.0" y="101.5" />
|
|
||||||
<use xlink:href="#d2" x="107.0" y="67.5" />
|
|
||||||
<use xlink:href="#d3" x="167.0" y="67.5" />
|
|
||||||
</g>
|
|
||||||
<g id="effects">
|
|
||||||
<use xlink:href="#d4" x="0" y="0" />
|
|
||||||
</g>
|
|
||||||
<path d="M-2.9999999999999982,-2.0 L-29.6295824562643,-21.347524157501468 L-19.45798706418925,-52.652475842498525 L13.45798706418924,-52.65247584249853 L23.629582456264302,-21.34752415750148 Z" stroke-width="2" id="d5" />
|
|
||||||
<text x="-3" y="-20" font-size="28px" font-weight="bold" font-family="Helvetica" text-anchor="middle" id="d6">5</text>
|
|
||||||
<g id="champion_shield">
|
|
||||||
<use xlink:href="#d5" x="0" y="0" fill="darkgrey" stroke="#eee" />
|
|
||||||
<use xlink:href="#d6" x="0" y="0" fill="black" />
|
|
||||||
</g>
|
|
||||||
</defs>
|
</defs>
|
||||||
<use xlink:href="#drop-shadow" />
|
<use xlink:href="#drop-shadow" />
|
||||||
<g id="background">
|
<g id="background">
|
||||||
@@ -57,10 +23,42 @@
|
|||||||
<text x="149.0" y="36" font-size="19" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">Darian , War Mage</text>
|
<text x="149.0" y="36" font-size="19" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">Darian , War Mage</text>
|
||||||
<text x="149.0" y="53" font-size="13" text-anchor="middle" fill="black" font-family="Helvetica">Champion</text>
|
<text x="149.0" y="53" font-size="13" text-anchor="middle" fill="black" font-family="Helvetica">Champion</text>
|
||||||
</g>
|
</g>
|
||||||
<use xlink:href="#faction_icon" x="36" y="37" />
|
<g transform="translate(36,37)">
|
||||||
<use xlink:href="#d0" x="260" y="36" />
|
<g id="faction_icon">
|
||||||
|
<circle cx="1" cy="1" r="20" fill="black" filter="url(#drop-shadow)" />
|
||||||
|
<circle cx="0" cy="0" r="20" fill="url(#grad2)" />
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(260,36)">
|
||||||
|
<g class="svg_resource_icon" onclick="console.warn('unknown interaction')">
|
||||||
|
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
||||||
|
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">4</text>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
<rect x="0" y="65" width="298" height="200" />
|
<rect x="0" y="65" width="298" height="200" />
|
||||||
<image x="0" y="65" width="298" height="200" xlink:href="../../img/missing.png" />
|
<image x="0" y="65" width="298" height="200" xlink:href="../../img/missing.png" />
|
||||||
<use xlink:href="#effects" x="12" y="265" />
|
<g transform="translate(12,265)">
|
||||||
<use xlink:href="#champion_shield" x="268" y="417" />
|
<g>
|
||||||
|
<circle cx="30" cy="67.5" r="15" fill="gray" filter="url(#drop-shadow)" />
|
||||||
|
<g transform="translate(137.0,101.5)">
|
||||||
|
<text x="0" y="-0.0" font-size="14" text-anchor="middle" fill="black" font-family="Helvetica"></text>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(107.0,67.5)" v-bind:class="{used:used_effects_indexes.includes(0)}">
|
||||||
|
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '0' } ) );">
|
||||||
|
<circle cx="0" cy="0" r="20" fill="red" x="0" y="0" />
|
||||||
|
<text x="0" y="9" font-size="24" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">3</text>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(167.0,67.5)" v-bind:class="{used:used_effects_indexes.includes(1)}">
|
||||||
|
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '1' } ) );">
|
||||||
|
<circle cx="0" cy="0" r="20" fill="green" x="0" y="0" />
|
||||||
|
<text x="0" y="9" font-size="24" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">4</text>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(268,417)">
|
||||||
|
<path d="M-2.9999999999999982,-2.0 L-29.6295824562643,-21.347524157501468 L-19.45798706418925,-52.652475842498525 L13.45798706418924,-52.65247584249853 L23.629582456264302,-21.34752415750148 Z" fill="darkgrey" stroke="#eee" stroke-width="2" />
|
||||||
|
<text x="-3" y="-20" font-size="28px" font-weight="bold" font-family="Helvetica" text-anchor="middle" fill="black">5</text>
|
||||||
|
</g>
|
||||||
</svg>
|
</svg>
|
||||||
|
Before Width: | Height: | Size: 3.5 KiB After Width: | Height: | Size: 3.4 KiB |
@@ -1,6 +1,6 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||||
width="298" height="417" viewBox="0 0 298 417" id="card5">
|
width="298" height="417" viewBox="0 0 298 417" id="card5" class="card" xmlns:v-bind="https://heron.legonzaur.fr">
|
||||||
<defs>
|
<defs>
|
||||||
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
||||||
<stop offset="0" stop-color="yellow" stop-opacity="1" />
|
<stop offset="0" stop-color="yellow" stop-opacity="1" />
|
||||||
@@ -13,42 +13,6 @@
|
|||||||
<filter id="drop-shadow">
|
<filter id="drop-shadow">
|
||||||
<feDropShadow dx="1" dy="1" stdDeviation="0"></feDropShadow>
|
<feDropShadow dx="1" dy="1" stdDeviation="0"></feDropShadow>
|
||||||
</filter>
|
</filter>
|
||||||
<g id="faction_icon">
|
|
||||||
<circle cx="1" cy="1" r="20" fill="black" filter="url(#drop-shadow)" />
|
|
||||||
<circle cx="0" cy="0" r="20" fill="url(#grad2)" />
|
|
||||||
</g>
|
|
||||||
<g class="svg_resource_icon" onclick="console.warn('unknown interaction')" id="d0">
|
|
||||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
|
||||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">7</text>
|
|
||||||
</g>
|
|
||||||
<g id="d1">
|
|
||||||
<text x="0" y="-0.0" font-size="13.333333333333334" text-anchor="middle" fill="black" font-family="Helvetica">Piochez une carte.</text>
|
|
||||||
</g>
|
|
||||||
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '0' } ) );" id="d2">
|
|
||||||
<circle cx="0" cy="0" r="20" fill="green" x="0" y="0" />
|
|
||||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">6</text>
|
|
||||||
</g>
|
|
||||||
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '1' } ) );" id="d3">
|
|
||||||
<circle cx="0" cy="0" r="20" fill="red" x="0" y="0" />
|
|
||||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">6</text>
|
|
||||||
</g>
|
|
||||||
<g id="d4">
|
|
||||||
<use xlink:href="#d1" x="137.0" y="70.66666666666667" />
|
|
||||||
<use xlink:href="#d2" x="107.0" y="33.0" />
|
|
||||||
<use xlink:href="#d3" x="167.0" y="33.0" />
|
|
||||||
</g>
|
|
||||||
<g id="d5">
|
|
||||||
<text x="0" y="-0.0" font-size="14" text-anchor="middle" fill="black" font-family="Helvetica">Mobilisez un Champion</text>
|
|
||||||
</g>
|
|
||||||
<g id="d6">
|
|
||||||
<circle cx="30" cy="27.5" r="15" fill="url(#grad2)" filter="url(#drop-shadow)" />
|
|
||||||
<use xlink:href="#d5" x="137.0" y="31.0" />
|
|
||||||
</g>
|
|
||||||
<g id="effects">
|
|
||||||
<path d="M10,80 L264,80" stroke="black" stroke-width="1" />
|
|
||||||
<use xlink:href="#d4" x="0" y="0" />
|
|
||||||
<use xlink:href="#d6" x="0" y="80" />
|
|
||||||
</g>
|
|
||||||
</defs>
|
</defs>
|
||||||
<use xlink:href="#drop-shadow" />
|
<use xlink:href="#drop-shadow" />
|
||||||
<g id="background">
|
<g id="background">
|
||||||
@@ -59,9 +23,46 @@
|
|||||||
<text x="149.0" y="36" font-size="19" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">Domination</text>
|
<text x="149.0" y="36" font-size="19" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">Domination</text>
|
||||||
<text x="149.0" y="53" font-size="13" text-anchor="middle" fill="black" font-family="Helvetica">Action</text>
|
<text x="149.0" y="53" font-size="13" text-anchor="middle" fill="black" font-family="Helvetica">Action</text>
|
||||||
</g>
|
</g>
|
||||||
<use xlink:href="#faction_icon" x="36" y="37" />
|
<g transform="translate(36,37)">
|
||||||
<use xlink:href="#d0" x="260" y="36" />
|
<g id="faction_icon">
|
||||||
|
<circle cx="1" cy="1" r="20" fill="black" filter="url(#drop-shadow)" />
|
||||||
|
<circle cx="0" cy="0" r="20" fill="url(#grad2)" />
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(260,36)">
|
||||||
|
<g class="svg_resource_icon" onclick="console.warn('unknown interaction')">
|
||||||
|
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
||||||
|
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">7</text>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
<rect x="0" y="65" width="298" height="200" />
|
<rect x="0" y="65" width="298" height="200" />
|
||||||
<image x="0" y="65" width="298" height="200" xlink:href="../../img/missing.png" />
|
<image x="0" y="65" width="298" height="200" xlink:href="../../img/missing.png" />
|
||||||
<use xlink:href="#effects" x="12" y="265" />
|
<g transform="translate(12,265)">
|
||||||
|
<path d="M10,80 L264,80" stroke="black" stroke-width="1" />
|
||||||
|
<g>
|
||||||
|
<g transform="translate(137.0,70.66666666666667)">
|
||||||
|
<text x="0" y="-0.0" font-size="13.333333333333334" text-anchor="middle" fill="black" font-family="Helvetica">Piochez une carte.</text>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(107.0,33.0)" v-bind:class="{used:used_effects_indexes.includes(0)}">
|
||||||
|
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '0' } ) );">
|
||||||
|
<circle cx="0" cy="0" r="20" fill="green" x="0" y="0" />
|
||||||
|
<text x="0" y="9" font-size="24" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">6</text>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(167.0,33.0)" v-bind:class="{used:used_effects_indexes.includes(1)}">
|
||||||
|
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '1' } ) );">
|
||||||
|
<circle cx="0" cy="0" r="20" fill="red" x="0" y="0" />
|
||||||
|
<text x="0" y="9" font-size="24" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">6</text>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(0,80)">
|
||||||
|
<g>
|
||||||
|
<circle cx="30" cy="27.5" r="15" fill="url(#grad2)" filter="url(#drop-shadow)" />
|
||||||
|
<g transform="translate(137.0,31.0)">
|
||||||
|
<text x="0" y="-0.0" font-size="14" text-anchor="middle" fill="black" font-family="Helvetica">Mobilisez un Champion</text>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
</svg>
|
</svg>
|
||||||
|
Before Width: | Height: | Size: 3.3 KiB After Width: | Height: | Size: 3.3 KiB |
@@ -1,6 +1,6 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||||
width="298" height="417" viewBox="0 0 298 417" id="card6">
|
width="298" height="417" viewBox="0 0 298 417" id="card6" class="card" xmlns:v-bind="https://heron.legonzaur.fr">
|
||||||
<defs>
|
<defs>
|
||||||
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
||||||
<stop offset="0" stop-color="yellow" stop-opacity="1" />
|
<stop offset="0" stop-color="yellow" stop-opacity="1" />
|
||||||
@@ -13,51 +13,6 @@
|
|||||||
<filter id="drop-shadow">
|
<filter id="drop-shadow">
|
||||||
<feDropShadow dx="1" dy="1" stdDeviation="0"></feDropShadow>
|
<feDropShadow dx="1" dy="1" stdDeviation="0"></feDropShadow>
|
||||||
</filter>
|
</filter>
|
||||||
<g id="faction_icon">
|
|
||||||
<circle cx="1" cy="1" r="20" fill="black" filter="url(#drop-shadow)" />
|
|
||||||
<circle cx="0" cy="0" r="20" fill="url(#grad2)" />
|
|
||||||
</g>
|
|
||||||
<g class="svg_resource_icon" onclick="console.warn('unknown interaction')" id="d0">
|
|
||||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
|
||||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">5</text>
|
|
||||||
</g>
|
|
||||||
<g id="d1">
|
|
||||||
<text x="0" y="-0.0" font-size="13.333333333333334" text-anchor="middle" fill="black" font-family="Helvetica"></text>
|
|
||||||
</g>
|
|
||||||
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '0' } ) );" id="d2">
|
|
||||||
<circle cx="0" cy="0" r="20" fill="red" x="0" y="0" />
|
|
||||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">2</text>
|
|
||||||
</g>
|
|
||||||
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '1' } ) );" id="d3">
|
|
||||||
<circle cx="0" cy="0" r="20" fill="green" x="0" y="0" />
|
|
||||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">3</text>
|
|
||||||
</g>
|
|
||||||
<g id="d4">
|
|
||||||
<circle cx="30" cy="40.0" r="15" fill="gray" filter="url(#drop-shadow)" />
|
|
||||||
<use xlink:href="#d1" x="137.0" y="70.66666666666667" />
|
|
||||||
<use xlink:href="#d2" x="107.0" y="40.0" />
|
|
||||||
<use xlink:href="#d3" x="167.0" y="40.0" />
|
|
||||||
</g>
|
|
||||||
<g id="d5">
|
|
||||||
<text x="0" y="-0.0" font-size="14" text-anchor="middle" fill="black" font-family="Helvetica">Piochez une carte.</text>
|
|
||||||
</g>
|
|
||||||
<g id="d6">
|
|
||||||
<circle cx="30" cy="27.5" r="15" fill="url(#grad2)" filter="url(#drop-shadow)" />
|
|
||||||
<use xlink:href="#d5" x="137.0" y="31.0" />
|
|
||||||
</g>
|
|
||||||
<g id="effects">
|
|
||||||
<path d="M10,80 L264,80" stroke="black" stroke-width="1" />
|
|
||||||
<use xlink:href="#d4" x="0" y="0" />
|
|
||||||
<use xlink:href="#d6" x="0" y="80" />
|
|
||||||
</g>
|
|
||||||
<path d="M-2.9999999999999982,-2.0 L-29.6295824562643,-21.347524157501468 L-19.45798706418925,-52.652475842498525 L13.45798706418924,-52.65247584249853 L23.629582456264302,-21.34752415750148 Z" stroke-width="2" id="d7" />
|
|
||||||
<text x="-3" y="-20" font-size="28px" font-weight="bold" font-family="Helvetica" text-anchor="middle" id="d8">5</text>
|
|
||||||
<g id="champion_shield">
|
|
||||||
<use xlink:href="#d7" x="0" y="0" fill="black" stroke="lightgrey" />
|
|
||||||
<rect x="-28" y="-72" width="49" height="17" fill="black" stroke="lightgrey" stroke-width="2" />
|
|
||||||
<text x="-3" y="-59" font-size="12px" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">Garde</text>
|
|
||||||
<use xlink:href="#d8" x="0" y="0" fill="white" />
|
|
||||||
</g>
|
|
||||||
</defs>
|
</defs>
|
||||||
<use xlink:href="#drop-shadow" />
|
<use xlink:href="#drop-shadow" />
|
||||||
<g id="background">
|
<g id="background">
|
||||||
@@ -68,10 +23,53 @@
|
|||||||
<text x="149.0" y="36" font-size="19" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">Cristov, the Just</text>
|
<text x="149.0" y="36" font-size="19" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">Cristov, the Just</text>
|
||||||
<text x="149.0" y="53" font-size="13" text-anchor="middle" fill="black" font-family="Helvetica">Champion</text>
|
<text x="149.0" y="53" font-size="13" text-anchor="middle" fill="black" font-family="Helvetica">Champion</text>
|
||||||
</g>
|
</g>
|
||||||
<use xlink:href="#faction_icon" x="36" y="37" />
|
<g transform="translate(36,37)">
|
||||||
<use xlink:href="#d0" x="260" y="36" />
|
<g id="faction_icon">
|
||||||
|
<circle cx="1" cy="1" r="20" fill="black" filter="url(#drop-shadow)" />
|
||||||
|
<circle cx="0" cy="0" r="20" fill="url(#grad2)" />
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(260,36)">
|
||||||
|
<g class="svg_resource_icon" onclick="console.warn('unknown interaction')">
|
||||||
|
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
||||||
|
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">5</text>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
<rect x="0" y="65" width="298" height="200" />
|
<rect x="0" y="65" width="298" height="200" />
|
||||||
<image x="0" y="65" width="298" height="200" xlink:href="../../img/missing.png" />
|
<image x="0" y="65" width="298" height="200" xlink:href="../../img/missing.png" />
|
||||||
<use xlink:href="#effects" x="12" y="265" />
|
<g transform="translate(12,265)">
|
||||||
<use xlink:href="#champion_shield" x="268" y="417" />
|
<path d="M10,80 L264,80" stroke="black" stroke-width="1" />
|
||||||
|
<g>
|
||||||
|
<circle cx="30" cy="40.0" r="15" fill="gray" filter="url(#drop-shadow)" />
|
||||||
|
<g transform="translate(137.0,70.66666666666667)">
|
||||||
|
<text x="0" y="-0.0" font-size="13.333333333333334" text-anchor="middle" fill="black" font-family="Helvetica"></text>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(107.0,40.0)" v-bind:class="{used:used_effects_indexes.includes(0)}">
|
||||||
|
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '0' } ) );">
|
||||||
|
<circle cx="0" cy="0" r="20" fill="red" x="0" y="0" />
|
||||||
|
<text x="0" y="9" font-size="24" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">2</text>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(167.0,40.0)" v-bind:class="{used:used_effects_indexes.includes(1)}">
|
||||||
|
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '1' } ) );">
|
||||||
|
<circle cx="0" cy="0" r="20" fill="green" x="0" y="0" />
|
||||||
|
<text x="0" y="9" font-size="24" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">3</text>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(0,80)">
|
||||||
|
<g>
|
||||||
|
<circle cx="30" cy="27.5" r="15" fill="url(#grad2)" filter="url(#drop-shadow)" />
|
||||||
|
<g transform="translate(137.0,31.0)">
|
||||||
|
<text x="0" y="-0.0" font-size="14" text-anchor="middle" fill="black" font-family="Helvetica">Piochez une carte.</text>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(268,417)">
|
||||||
|
<path d="M-2.9999999999999982,-2.0 L-29.6295824562643,-21.347524157501468 L-19.45798706418925,-52.652475842498525 L13.45798706418924,-52.65247584249853 L23.629582456264302,-21.34752415750148 Z" fill="black" stroke="lightgrey" stroke-width="2" />
|
||||||
|
<rect x="-28" y="-72" width="49" height="17" fill="black" stroke="lightgrey" stroke-width="2" />
|
||||||
|
<text x="-3" y="-59" font-size="12px" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">Garde</text>
|
||||||
|
<text x="-3" y="-20" font-size="28px" font-weight="bold" font-family="Helvetica" text-anchor="middle" fill="white">5</text>
|
||||||
|
</g>
|
||||||
</svg>
|
</svg>
|
||||||
|
Before Width: | Height: | Size: 4.1 KiB After Width: | Height: | Size: 4.0 KiB |
@@ -1,6 +1,6 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||||
width="298" height="417" viewBox="0 0 298 417" id="card7">
|
width="298" height="417" viewBox="0 0 298 417" id="card7" class="card" xmlns:v-bind="https://heron.legonzaur.fr">
|
||||||
<defs>
|
<defs>
|
||||||
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
||||||
<stop offset="0" stop-color="yellow" stop-opacity="1" />
|
<stop offset="0" stop-color="yellow" stop-opacity="1" />
|
||||||
@@ -13,44 +13,6 @@
|
|||||||
<filter id="drop-shadow">
|
<filter id="drop-shadow">
|
||||||
<feDropShadow dx="1" dy="1" stdDeviation="0"></feDropShadow>
|
<feDropShadow dx="1" dy="1" stdDeviation="0"></feDropShadow>
|
||||||
</filter>
|
</filter>
|
||||||
<g id="faction_icon">
|
|
||||||
<circle cx="1" cy="1" r="20" fill="black" filter="url(#drop-shadow)" />
|
|
||||||
<circle cx="0" cy="0" r="20" fill="url(#grad2)" />
|
|
||||||
</g>
|
|
||||||
<g class="svg_resource_icon" onclick="console.warn('unknown interaction')" id="d0">
|
|
||||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
|
||||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">6</text>
|
|
||||||
</g>
|
|
||||||
<g id="d1">
|
|
||||||
<text x="0" y="-0.0" font-size="13.333333333333334" text-anchor="middle" fill="black" font-family="Helvetica">Piochez une carte.</text>
|
|
||||||
</g>
|
|
||||||
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '0' } ) );" id="d2">
|
|
||||||
<circle cx="0" cy="0" r="20" fill="green" x="0" y="0" />
|
|
||||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">2</text>
|
|
||||||
</g>
|
|
||||||
<g id="d3">
|
|
||||||
<circle cx="30" cy="40.0" r="15" fill="gray" filter="url(#drop-shadow)" />
|
|
||||||
<use xlink:href="#d1" x="137.0" y="70.66666666666667" />
|
|
||||||
<use xlink:href="#d2" x="137.0" y="33.0" />
|
|
||||||
</g>
|
|
||||||
<g id="d4">
|
|
||||||
<text x="0" y="-7.0" font-size="14" text-anchor="middle" fill="black" font-family="Helvetica"><tspan x="0" dy="0em">+ x pour chaque Champion</tspan><tspan x="0" dy="1em">que vous avez en jeu</tspan></text>
|
|
||||||
</g>
|
|
||||||
<g id="d5">
|
|
||||||
<circle cx="30" cy="27.5" r="15" fill="url(#grad2)" filter="url(#drop-shadow)" />
|
|
||||||
<use xlink:href="#d4" x="137.0" y="31.0" />
|
|
||||||
</g>
|
|
||||||
<g id="effects">
|
|
||||||
<path d="M10,80 L264,80" stroke="black" stroke-width="1" />
|
|
||||||
<use xlink:href="#d3" x="0" y="0" />
|
|
||||||
<use xlink:href="#d5" x="0" y="80" />
|
|
||||||
</g>
|
|
||||||
<path d="M-2.9999999999999982,-2.0 L-29.6295824562643,-21.347524157501468 L-19.45798706418925,-52.652475842498525 L13.45798706418924,-52.65247584249853 L23.629582456264302,-21.34752415750148 Z" stroke-width="2" id="d6" />
|
|
||||||
<text x="-3" y="-20" font-size="28px" font-weight="bold" font-family="Helvetica" text-anchor="middle" id="d7">6</text>
|
|
||||||
<g id="champion_shield">
|
|
||||||
<use xlink:href="#d6" x="0" y="0" fill="darkgrey" stroke="#eee" />
|
|
||||||
<use xlink:href="#d7" x="0" y="0" fill="black" />
|
|
||||||
</g>
|
|
||||||
</defs>
|
</defs>
|
||||||
<use xlink:href="#drop-shadow" />
|
<use xlink:href="#drop-shadow" />
|
||||||
<g id="background">
|
<g id="background">
|
||||||
@@ -61,10 +23,45 @@
|
|||||||
<text x="149.0" y="36" font-size="19" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">Kraka, High Priest</text>
|
<text x="149.0" y="36" font-size="19" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">Kraka, High Priest</text>
|
||||||
<text x="149.0" y="53" font-size="13" text-anchor="middle" fill="black" font-family="Helvetica">Champion</text>
|
<text x="149.0" y="53" font-size="13" text-anchor="middle" fill="black" font-family="Helvetica">Champion</text>
|
||||||
</g>
|
</g>
|
||||||
<use xlink:href="#faction_icon" x="36" y="37" />
|
<g transform="translate(36,37)">
|
||||||
<use xlink:href="#d0" x="260" y="36" />
|
<g id="faction_icon">
|
||||||
|
<circle cx="1" cy="1" r="20" fill="black" filter="url(#drop-shadow)" />
|
||||||
|
<circle cx="0" cy="0" r="20" fill="url(#grad2)" />
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(260,36)">
|
||||||
|
<g class="svg_resource_icon" onclick="console.warn('unknown interaction')">
|
||||||
|
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
||||||
|
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">6</text>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
<rect x="0" y="65" width="298" height="200" />
|
<rect x="0" y="65" width="298" height="200" />
|
||||||
<image x="0" y="65" width="298" height="200" xlink:href="../../img/missing.png" />
|
<image x="0" y="65" width="298" height="200" xlink:href="../../img/missing.png" />
|
||||||
<use xlink:href="#effects" x="12" y="265" />
|
<g transform="translate(12,265)">
|
||||||
<use xlink:href="#champion_shield" x="268" y="417" />
|
<path d="M10,80 L264,80" stroke="black" stroke-width="1" />
|
||||||
|
<g>
|
||||||
|
<circle cx="30" cy="40.0" r="15" fill="gray" filter="url(#drop-shadow)" />
|
||||||
|
<g transform="translate(137.0,70.66666666666667)">
|
||||||
|
<text x="0" y="-0.0" font-size="13.333333333333334" text-anchor="middle" fill="black" font-family="Helvetica">Piochez une carte.</text>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(137.0,33.0)" v-bind:class="{used:used_effects_indexes.includes(0)}">
|
||||||
|
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '0' } ) );">
|
||||||
|
<circle cx="0" cy="0" r="20" fill="green" x="0" y="0" />
|
||||||
|
<text x="0" y="9" font-size="24" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">2</text>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(0,80)">
|
||||||
|
<g>
|
||||||
|
<circle cx="30" cy="27.5" r="15" fill="url(#grad2)" filter="url(#drop-shadow)" />
|
||||||
|
<g transform="translate(137.0,31.0)">
|
||||||
|
<text x="0" y="-7.0" font-size="14" text-anchor="middle" fill="black" font-family="Helvetica"><tspan x="0" dy="0em">+ x pour chaque Champion</tspan><tspan x="0" dy="1em">que vous avez en jeu</tspan></text>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(268,417)">
|
||||||
|
<path d="M-2.9999999999999982,-2.0 L-29.6295824562643,-21.347524157501468 L-19.45798706418925,-52.652475842498525 L13.45798706418924,-52.65247584249853 L23.629582456264302,-21.34752415750148 Z" fill="darkgrey" stroke="#eee" stroke-width="2" />
|
||||||
|
<text x="-3" y="-20" font-size="28px" font-weight="bold" font-family="Helvetica" text-anchor="middle" fill="black">6</text>
|
||||||
|
</g>
|
||||||
</svg>
|
</svg>
|
||||||
|
Before Width: | Height: | Size: 3.6 KiB After Width: | Height: | Size: 3.4 KiB |
@@ -1,6 +1,6 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||||
width="298" height="417" viewBox="0 0 298 417" id="card8">
|
width="298" height="417" viewBox="0 0 298 417" id="card8" class="card" xmlns:v-bind="https://heron.legonzaur.fr">
|
||||||
<defs>
|
<defs>
|
||||||
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
||||||
<stop offset="0" stop-color="yellow" stop-opacity="1" />
|
<stop offset="0" stop-color="yellow" stop-opacity="1" />
|
||||||
@@ -13,37 +13,6 @@
|
|||||||
<filter id="drop-shadow">
|
<filter id="drop-shadow">
|
||||||
<feDropShadow dx="1" dy="1" stdDeviation="0"></feDropShadow>
|
<feDropShadow dx="1" dy="1" stdDeviation="0"></feDropShadow>
|
||||||
</filter>
|
</filter>
|
||||||
<g id="faction_icon">
|
|
||||||
<circle cx="1" cy="1" r="20" fill="black" filter="url(#drop-shadow)" />
|
|
||||||
<circle cx="0" cy="0" r="20" fill="url(#grad2)" />
|
|
||||||
</g>
|
|
||||||
<g class="svg_resource_icon" onclick="console.warn('unknown interaction')" id="d0">
|
|
||||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
|
||||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">3</text>
|
|
||||||
</g>
|
|
||||||
<g id="d1">
|
|
||||||
<text x="0" y="-7.0" font-size="14" text-anchor="middle" fill="black" font-family="Helvetica"><tspan x="0" dy="0em">+ x pour chaque autre</tspan><tspan x="0" dy="1em">Garde que vous avez en jeu</tspan></text>
|
|
||||||
</g>
|
|
||||||
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '0' } ) );" id="d2">
|
|
||||||
<circle cx="0" cy="0" r="20" fill="red" x="0" y="0" />
|
|
||||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">2</text>
|
|
||||||
</g>
|
|
||||||
<g id="d3">
|
|
||||||
<circle cx="30" cy="67.5" r="15" fill="gray" filter="url(#drop-shadow)" />
|
|
||||||
<use xlink:href="#d1" x="137.0" y="101.5" />
|
|
||||||
<use xlink:href="#d2" x="137.0" y="60.5" />
|
|
||||||
</g>
|
|
||||||
<g id="effects">
|
|
||||||
<use xlink:href="#d3" x="0" y="0" />
|
|
||||||
</g>
|
|
||||||
<path d="M-2.9999999999999982,-2.0 L-29.6295824562643,-21.347524157501468 L-19.45798706418925,-52.652475842498525 L13.45798706418924,-52.65247584249853 L23.629582456264302,-21.34752415750148 Z" stroke-width="2" id="d4" />
|
|
||||||
<text x="-3" y="-20" font-size="28px" font-weight="bold" font-family="Helvetica" text-anchor="middle" id="d5">4</text>
|
|
||||||
<g id="champion_shield">
|
|
||||||
<use xlink:href="#d4" x="0" y="0" fill="black" stroke="lightgrey" />
|
|
||||||
<rect x="-28" y="-72" width="49" height="17" fill="black" stroke="lightgrey" stroke-width="2" />
|
|
||||||
<text x="-3" y="-59" font-size="12px" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">Garde</text>
|
|
||||||
<use xlink:href="#d5" x="0" y="0" fill="white" />
|
|
||||||
</g>
|
|
||||||
</defs>
|
</defs>
|
||||||
<use xlink:href="#drop-shadow" />
|
<use xlink:href="#drop-shadow" />
|
||||||
<g id="background">
|
<g id="background">
|
||||||
@@ -54,10 +23,38 @@
|
|||||||
<text x="149.0" y="36" font-size="19" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">Man-at-Arms</text>
|
<text x="149.0" y="36" font-size="19" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">Man-at-Arms</text>
|
||||||
<text x="149.0" y="53" font-size="13" text-anchor="middle" fill="black" font-family="Helvetica">Champion</text>
|
<text x="149.0" y="53" font-size="13" text-anchor="middle" fill="black" font-family="Helvetica">Champion</text>
|
||||||
</g>
|
</g>
|
||||||
<use xlink:href="#faction_icon" x="36" y="37" />
|
<g transform="translate(36,37)">
|
||||||
<use xlink:href="#d0" x="260" y="36" />
|
<g id="faction_icon">
|
||||||
|
<circle cx="1" cy="1" r="20" fill="black" filter="url(#drop-shadow)" />
|
||||||
|
<circle cx="0" cy="0" r="20" fill="url(#grad2)" />
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(260,36)">
|
||||||
|
<g class="svg_resource_icon" onclick="console.warn('unknown interaction')">
|
||||||
|
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
||||||
|
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">3</text>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
<rect x="0" y="65" width="298" height="200" />
|
<rect x="0" y="65" width="298" height="200" />
|
||||||
<image x="0" y="65" width="298" height="200" xlink:href="../../img/missing.png" />
|
<image x="0" y="65" width="298" height="200" xlink:href="../../img/missing.png" />
|
||||||
<use xlink:href="#effects" x="12" y="265" />
|
<g transform="translate(12,265)">
|
||||||
<use xlink:href="#champion_shield" x="268" y="417" />
|
<g>
|
||||||
|
<circle cx="30" cy="67.5" r="15" fill="gray" filter="url(#drop-shadow)" />
|
||||||
|
<g transform="translate(137.0,101.5)">
|
||||||
|
<text x="0" y="-7.0" font-size="14" text-anchor="middle" fill="black" font-family="Helvetica"><tspan x="0" dy="0em">+ x pour chaque autre</tspan><tspan x="0" dy="1em">Garde que vous avez en jeu</tspan></text>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(137.0,60.5)" v-bind:class="{used:used_effects_indexes.includes(0)}">
|
||||||
|
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '0' } ) );">
|
||||||
|
<circle cx="0" cy="0" r="20" fill="red" x="0" y="0" />
|
||||||
|
<text x="0" y="9" font-size="24" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">2</text>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(268,417)">
|
||||||
|
<path d="M-2.9999999999999982,-2.0 L-29.6295824562643,-21.347524157501468 L-19.45798706418925,-52.652475842498525 L13.45798706418924,-52.65247584249853 L23.629582456264302,-21.34752415750148 Z" fill="black" stroke="lightgrey" stroke-width="2" />
|
||||||
|
<rect x="-28" y="-72" width="49" height="17" fill="black" stroke="lightgrey" stroke-width="2" />
|
||||||
|
<text x="-3" y="-59" font-size="12px" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">Garde</text>
|
||||||
|
<text x="-3" y="-20" font-size="28px" font-weight="bold" font-family="Helvetica" text-anchor="middle" fill="white">4</text>
|
||||||
|
</g>
|
||||||
</svg>
|
</svg>
|
||||||
|
Before Width: | Height: | Size: 3.4 KiB After Width: | Height: | Size: 3.3 KiB |
@@ -1,6 +1,6 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||||
width="298" height="417" viewBox="0 0 298 417" id="card9">
|
width="298" height="417" viewBox="0 0 298 417" id="card9" class="card" xmlns:v-bind="https://heron.legonzaur.fr">
|
||||||
<defs>
|
<defs>
|
||||||
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
||||||
<stop offset="0" stop-color="yellow" stop-opacity="1" />
|
<stop offset="0" stop-color="yellow" stop-opacity="1" />
|
||||||
@@ -13,37 +13,6 @@
|
|||||||
<filter id="drop-shadow">
|
<filter id="drop-shadow">
|
||||||
<feDropShadow dx="1" dy="1" stdDeviation="0"></feDropShadow>
|
<feDropShadow dx="1" dy="1" stdDeviation="0"></feDropShadow>
|
||||||
</filter>
|
</filter>
|
||||||
<g id="faction_icon">
|
|
||||||
<circle cx="1" cy="1" r="20" fill="black" filter="url(#drop-shadow)" />
|
|
||||||
<circle cx="0" cy="0" r="20" fill="url(#grad2)" />
|
|
||||||
</g>
|
|
||||||
<g class="svg_resource_icon" onclick="console.warn('unknown interaction')" id="d0">
|
|
||||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
|
||||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">4</text>
|
|
||||||
</g>
|
|
||||||
<g id="d1">
|
|
||||||
<text x="0" y="-7.0" font-size="14" text-anchor="middle" fill="black" font-family="Helvetica"><tspan x="0" dy="0em">+ x pour chaque autre Champion</tspan><tspan x="0" dy="1em">que vous avez en jeu</tspan></text>
|
|
||||||
</g>
|
|
||||||
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '0' } ) );" id="d2">
|
|
||||||
<circle cx="0" cy="0" r="20" fill="red" x="0" y="0" />
|
|
||||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">3</text>
|
|
||||||
</g>
|
|
||||||
<g id="d3">
|
|
||||||
<circle cx="30" cy="67.5" r="15" fill="gray" filter="url(#drop-shadow)" />
|
|
||||||
<use xlink:href="#d1" x="137.0" y="101.5" />
|
|
||||||
<use xlink:href="#d2" x="137.0" y="60.5" />
|
|
||||||
</g>
|
|
||||||
<g id="effects">
|
|
||||||
<use xlink:href="#d3" x="0" y="0" />
|
|
||||||
</g>
|
|
||||||
<path d="M-2.9999999999999982,-2.0 L-29.6295824562643,-21.347524157501468 L-19.45798706418925,-52.652475842498525 L13.45798706418924,-52.65247584249853 L23.629582456264302,-21.34752415750148 Z" stroke-width="2" id="d4" />
|
|
||||||
<text x="-3" y="-20" font-size="28px" font-weight="bold" font-family="Helvetica" text-anchor="middle" id="d5">4</text>
|
|
||||||
<g id="champion_shield">
|
|
||||||
<use xlink:href="#d4" x="0" y="0" fill="black" stroke="lightgrey" />
|
|
||||||
<rect x="-28" y="-72" width="49" height="17" fill="black" stroke="lightgrey" stroke-width="2" />
|
|
||||||
<text x="-3" y="-59" font-size="12px" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">Garde</text>
|
|
||||||
<use xlink:href="#d5" x="0" y="0" fill="white" />
|
|
||||||
</g>
|
|
||||||
</defs>
|
</defs>
|
||||||
<use xlink:href="#drop-shadow" />
|
<use xlink:href="#drop-shadow" />
|
||||||
<g id="background">
|
<g id="background">
|
||||||
@@ -54,10 +23,38 @@
|
|||||||
<text x="149.0" y="36" font-size="19" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">Master Weyan</text>
|
<text x="149.0" y="36" font-size="19" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">Master Weyan</text>
|
||||||
<text x="149.0" y="53" font-size="13" text-anchor="middle" fill="black" font-family="Helvetica">Champion</text>
|
<text x="149.0" y="53" font-size="13" text-anchor="middle" fill="black" font-family="Helvetica">Champion</text>
|
||||||
</g>
|
</g>
|
||||||
<use xlink:href="#faction_icon" x="36" y="37" />
|
<g transform="translate(36,37)">
|
||||||
<use xlink:href="#d0" x="260" y="36" />
|
<g id="faction_icon">
|
||||||
|
<circle cx="1" cy="1" r="20" fill="black" filter="url(#drop-shadow)" />
|
||||||
|
<circle cx="0" cy="0" r="20" fill="url(#grad2)" />
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(260,36)">
|
||||||
|
<g class="svg_resource_icon" onclick="console.warn('unknown interaction')">
|
||||||
|
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
||||||
|
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">4</text>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
<rect x="0" y="65" width="298" height="200" />
|
<rect x="0" y="65" width="298" height="200" />
|
||||||
<image x="0" y="65" width="298" height="200" xlink:href="../../img/missing.png" />
|
<image x="0" y="65" width="298" height="200" xlink:href="../../img/missing.png" />
|
||||||
<use xlink:href="#effects" x="12" y="265" />
|
<g transform="translate(12,265)">
|
||||||
<use xlink:href="#champion_shield" x="268" y="417" />
|
<g>
|
||||||
|
<circle cx="30" cy="67.5" r="15" fill="gray" filter="url(#drop-shadow)" />
|
||||||
|
<g transform="translate(137.0,101.5)">
|
||||||
|
<text x="0" y="-7.0" font-size="14" text-anchor="middle" fill="black" font-family="Helvetica"><tspan x="0" dy="0em">+ x pour chaque autre Champion</tspan><tspan x="0" dy="1em">que vous avez en jeu</tspan></text>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(137.0,60.5)" v-bind:class="{used:used_effects_indexes.includes(0)}">
|
||||||
|
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '0' } ) );">
|
||||||
|
<circle cx="0" cy="0" r="20" fill="red" x="0" y="0" />
|
||||||
|
<text x="0" y="9" font-size="24" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">3</text>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(268,417)">
|
||||||
|
<path d="M-2.9999999999999982,-2.0 L-29.6295824562643,-21.347524157501468 L-19.45798706418925,-52.652475842498525 L13.45798706418924,-52.65247584249853 L23.629582456264302,-21.34752415750148 Z" fill="black" stroke="lightgrey" stroke-width="2" />
|
||||||
|
<rect x="-28" y="-72" width="49" height="17" fill="black" stroke="lightgrey" stroke-width="2" />
|
||||||
|
<text x="-3" y="-59" font-size="12px" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">Garde</text>
|
||||||
|
<text x="-3" y="-20" font-size="28px" font-weight="bold" font-family="Helvetica" text-anchor="middle" fill="white">4</text>
|
||||||
|
</g>
|
||||||
</svg>
|
</svg>
|
||||||
|
Before Width: | Height: | Size: 3.4 KiB After Width: | Height: | Size: 3.3 KiB |
@@ -1,6 +1,6 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||||
width="298" height="417" viewBox="0 0 298 417" id="card10">
|
width="298" height="417" viewBox="0 0 298 417" id="card10" class="card" xmlns:v-bind="https://heron.legonzaur.fr">
|
||||||
<defs>
|
<defs>
|
||||||
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
||||||
<stop offset="0" stop-color="yellow" stop-opacity="1" />
|
<stop offset="0" stop-color="yellow" stop-opacity="1" />
|
||||||
@@ -13,42 +13,6 @@
|
|||||||
<filter id="drop-shadow">
|
<filter id="drop-shadow">
|
||||||
<feDropShadow dx="1" dy="1" stdDeviation="0"></feDropShadow>
|
<feDropShadow dx="1" dy="1" stdDeviation="0"></feDropShadow>
|
||||||
</filter>
|
</filter>
|
||||||
<g id="faction_icon">
|
|
||||||
<circle cx="1" cy="1" r="20" fill="black" filter="url(#drop-shadow)" />
|
|
||||||
<circle cx="0" cy="0" r="20" fill="url(#grad2)" />
|
|
||||||
</g>
|
|
||||||
<g class="svg_resource_icon" onclick="console.warn('unknown interaction')" id="d0">
|
|
||||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
|
||||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">4</text>
|
|
||||||
</g>
|
|
||||||
<g id="d1">
|
|
||||||
<text x="0" y="-0.0" font-size="13.333333333333334" text-anchor="middle" fill="black" font-family="Helvetica"></text>
|
|
||||||
</g>
|
|
||||||
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '0' } ) );" id="d2">
|
|
||||||
<circle cx="0" cy="0" r="20" fill="green" x="0" y="0" />
|
|
||||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">5</text>
|
|
||||||
</g>
|
|
||||||
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '1' } ) );" id="d3">
|
|
||||||
<circle cx="0" cy="0" r="20" fill="red" x="0" y="0" />
|
|
||||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">5</text>
|
|
||||||
</g>
|
|
||||||
<g id="d4">
|
|
||||||
<use xlink:href="#d1" x="137.0" y="70.66666666666667" />
|
|
||||||
<use xlink:href="#d2" x="107.0" y="40.0" />
|
|
||||||
<use xlink:href="#d3" x="167.0" y="40.0" />
|
|
||||||
</g>
|
|
||||||
<g id="d5">
|
|
||||||
<text x="0" y="-0.0" font-size="14" text-anchor="middle" fill="black" font-family="Helvetica">Mobilisez un Champion</text>
|
|
||||||
</g>
|
|
||||||
<g id="d6">
|
|
||||||
<circle cx="30" cy="27.5" r="15" fill="url(#grad2)" filter="url(#drop-shadow)" />
|
|
||||||
<use xlink:href="#d5" x="137.0" y="31.0" />
|
|
||||||
</g>
|
|
||||||
<g id="effects">
|
|
||||||
<path d="M10,80 L264,80" stroke="black" stroke-width="1" />
|
|
||||||
<use xlink:href="#d4" x="0" y="0" />
|
|
||||||
<use xlink:href="#d6" x="0" y="80" />
|
|
||||||
</g>
|
|
||||||
</defs>
|
</defs>
|
||||||
<use xlink:href="#drop-shadow" />
|
<use xlink:href="#drop-shadow" />
|
||||||
<g id="background">
|
<g id="background">
|
||||||
@@ -59,9 +23,46 @@
|
|||||||
<text x="149.0" y="36" font-size="19" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">Rallier les Troupes</text>
|
<text x="149.0" y="36" font-size="19" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">Rallier les Troupes</text>
|
||||||
<text x="149.0" y="53" font-size="13" text-anchor="middle" fill="black" font-family="Helvetica">Action, Charme</text>
|
<text x="149.0" y="53" font-size="13" text-anchor="middle" fill="black" font-family="Helvetica">Action, Charme</text>
|
||||||
</g>
|
</g>
|
||||||
<use xlink:href="#faction_icon" x="36" y="37" />
|
<g transform="translate(36,37)">
|
||||||
<use xlink:href="#d0" x="260" y="36" />
|
<g id="faction_icon">
|
||||||
|
<circle cx="1" cy="1" r="20" fill="black" filter="url(#drop-shadow)" />
|
||||||
|
<circle cx="0" cy="0" r="20" fill="url(#grad2)" />
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(260,36)">
|
||||||
|
<g class="svg_resource_icon" onclick="console.warn('unknown interaction')">
|
||||||
|
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
||||||
|
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">4</text>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
<rect x="0" y="65" width="298" height="200" />
|
<rect x="0" y="65" width="298" height="200" />
|
||||||
<image x="0" y="65" width="298" height="200" xlink:href="../../img/skins/heron/010.png" />
|
<image x="0" y="65" width="298" height="200" xlink:href="../../img/skins/heron/010.png" />
|
||||||
<use xlink:href="#effects" x="12" y="265" />
|
<g transform="translate(12,265)">
|
||||||
|
<path d="M10,80 L264,80" stroke="black" stroke-width="1" />
|
||||||
|
<g>
|
||||||
|
<g transform="translate(137.0,70.66666666666667)">
|
||||||
|
<text x="0" y="-0.0" font-size="13.333333333333334" text-anchor="middle" fill="black" font-family="Helvetica"></text>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(107.0,40.0)" v-bind:class="{used:used_effects_indexes.includes(0)}">
|
||||||
|
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '0' } ) );">
|
||||||
|
<circle cx="0" cy="0" r="20" fill="green" x="0" y="0" />
|
||||||
|
<text x="0" y="9" font-size="24" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">5</text>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(167.0,40.0)" v-bind:class="{used:used_effects_indexes.includes(1)}">
|
||||||
|
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '1' } ) );">
|
||||||
|
<circle cx="0" cy="0" r="20" fill="red" x="0" y="0" />
|
||||||
|
<text x="0" y="9" font-size="24" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">5</text>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(0,80)">
|
||||||
|
<g>
|
||||||
|
<circle cx="30" cy="27.5" r="15" fill="url(#grad2)" filter="url(#drop-shadow)" />
|
||||||
|
<g transform="translate(137.0,31.0)">
|
||||||
|
<text x="0" y="-0.0" font-size="14" text-anchor="middle" fill="black" font-family="Helvetica">Mobilisez un Champion</text>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
</svg>
|
</svg>
|
||||||
|
Before Width: | Height: | Size: 3.3 KiB After Width: | Height: | Size: 3.3 KiB |
@@ -1,6 +1,6 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||||
width="298" height="417" viewBox="0 0 298 417" id="card11">
|
width="298" height="417" viewBox="0 0 298 417" id="card11" class="card" xmlns:v-bind="https://heron.legonzaur.fr">
|
||||||
<defs>
|
<defs>
|
||||||
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
||||||
<stop offset="0" stop-color="yellow" stop-opacity="1" />
|
<stop offset="0" stop-color="yellow" stop-opacity="1" />
|
||||||
@@ -13,47 +13,6 @@
|
|||||||
<filter id="drop-shadow">
|
<filter id="drop-shadow">
|
||||||
<feDropShadow dx="1" dy="1" stdDeviation="0"></feDropShadow>
|
<feDropShadow dx="1" dy="1" stdDeviation="0"></feDropShadow>
|
||||||
</filter>
|
</filter>
|
||||||
<g id="faction_icon">
|
|
||||||
<circle cx="1" cy="1" r="20" fill="black" filter="url(#drop-shadow)" />
|
|
||||||
<circle cx="0" cy="0" r="20" fill="url(#grad2)" />
|
|
||||||
</g>
|
|
||||||
<g class="svg_resource_icon" onclick="console.warn('unknown interaction')" id="d0">
|
|
||||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
|
||||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">2</text>
|
|
||||||
</g>
|
|
||||||
<g id="d1">
|
|
||||||
<text x="0" y="-6.666666666666667" font-size="13.333333333333334" text-anchor="middle" fill="black" font-family="Helvetica"><tspan x="0" dy="0em">+ x pour chaque Champion</tspan><tspan x="0" dy="1em">que vous avez en jeu</tspan></text>
|
|
||||||
</g>
|
|
||||||
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '0' } ) );" id="d2">
|
|
||||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
|
||||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">2</text>
|
|
||||||
</g>
|
|
||||||
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '1' } ) );" id="d3">
|
|
||||||
<circle cx="0" cy="0" r="20" fill="green" x="0" y="0" />
|
|
||||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">3</text>
|
|
||||||
</g>
|
|
||||||
<g id="d4">
|
|
||||||
<use xlink:href="#d1" x="137.0" y="70.66666666666667" />
|
|
||||||
<use xlink:href="#d2" x="107.0" y="33.0" />
|
|
||||||
<use xlink:href="#d3" x="167.0" y="33.0" />
|
|
||||||
</g>
|
|
||||||
<g id="d5">
|
|
||||||
<text x="0" y="-0.0" font-size="11" text-anchor="middle" fill="black" font-family="Helvetica"></text>
|
|
||||||
</g>
|
|
||||||
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '3' } ) );" id="d6">
|
|
||||||
<circle cx="0" cy="0" r="18.333333333333332" fill="yellow" x="0" y="0" />
|
|
||||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">1</text>
|
|
||||||
</g>
|
|
||||||
<g id="d7">
|
|
||||||
<circle cx="30" cy="27.5" r="15" fill="url(#grad2)" filter="url(#drop-shadow)" />
|
|
||||||
<use xlink:href="#d5" x="137.0" y="45.666666666666664" />
|
|
||||||
<use xlink:href="#d6" x="137.0" y="27.5" />
|
|
||||||
</g>
|
|
||||||
<g id="effects">
|
|
||||||
<path d="M10,80 L264,80" stroke="black" stroke-width="1" />
|
|
||||||
<use xlink:href="#d4" x="0" y="0" />
|
|
||||||
<use xlink:href="#d7" x="0" y="80" />
|
|
||||||
</g>
|
|
||||||
</defs>
|
</defs>
|
||||||
<use xlink:href="#drop-shadow" />
|
<use xlink:href="#drop-shadow" />
|
||||||
<g id="background">
|
<g id="background">
|
||||||
@@ -64,9 +23,52 @@
|
|||||||
<text x="149.0" y="36" font-size="19" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">Recruit</text>
|
<text x="149.0" y="36" font-size="19" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">Recruit</text>
|
||||||
<text x="149.0" y="53" font-size="13" text-anchor="middle" fill="black" font-family="Helvetica">Action</text>
|
<text x="149.0" y="53" font-size="13" text-anchor="middle" fill="black" font-family="Helvetica">Action</text>
|
||||||
</g>
|
</g>
|
||||||
<use xlink:href="#faction_icon" x="36" y="37" />
|
<g transform="translate(36,37)">
|
||||||
<use xlink:href="#d0" x="260" y="36" />
|
<g id="faction_icon">
|
||||||
|
<circle cx="1" cy="1" r="20" fill="black" filter="url(#drop-shadow)" />
|
||||||
|
<circle cx="0" cy="0" r="20" fill="url(#grad2)" />
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(260,36)">
|
||||||
|
<g class="svg_resource_icon" onclick="console.warn('unknown interaction')">
|
||||||
|
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
||||||
|
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">2</text>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
<rect x="0" y="65" width="298" height="200" />
|
<rect x="0" y="65" width="298" height="200" />
|
||||||
<image x="0" y="65" width="298" height="200" xlink:href="../../img/missing.png" />
|
<image x="0" y="65" width="298" height="200" xlink:href="../../img/missing.png" />
|
||||||
<use xlink:href="#effects" x="12" y="265" />
|
<g transform="translate(12,265)">
|
||||||
|
<path d="M10,80 L264,80" stroke="black" stroke-width="1" />
|
||||||
|
<g>
|
||||||
|
<g transform="translate(137.0,70.66666666666667)">
|
||||||
|
<text x="0" y="-6.666666666666667" font-size="13.333333333333334" text-anchor="middle" fill="black" font-family="Helvetica"><tspan x="0" dy="0em">+ x pour chaque Champion</tspan><tspan x="0" dy="1em">que vous avez en jeu</tspan></text>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(107.0,33.0)" v-bind:class="{used:used_effects_indexes.includes(0)}">
|
||||||
|
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '0' } ) );">
|
||||||
|
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
||||||
|
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">2</text>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(167.0,33.0)" v-bind:class="{used:used_effects_indexes.includes(1)}">
|
||||||
|
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '1' } ) );">
|
||||||
|
<circle cx="0" cy="0" r="20" fill="green" x="0" y="0" />
|
||||||
|
<text x="0" y="9" font-size="24" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">3</text>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(0,80)">
|
||||||
|
<g>
|
||||||
|
<circle cx="30" cy="27.5" r="15" fill="url(#grad2)" filter="url(#drop-shadow)" />
|
||||||
|
<g transform="translate(137.0,45.666666666666664)">
|
||||||
|
<text x="0" y="-0.0" font-size="11" text-anchor="middle" fill="black" font-family="Helvetica"></text>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(137.0,27.5)" v-bind:class="{used:used_effects_indexes.includes(3)}">
|
||||||
|
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '3' } ) );">
|
||||||
|
<circle cx="0" cy="0" r="18.333333333333332" fill="yellow" x="0" y="0" />
|
||||||
|
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">1</text>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
</svg>
|
</svg>
|
||||||
|
Before Width: | Height: | Size: 3.8 KiB After Width: | Height: | Size: 3.8 KiB |
@@ -1,6 +1,6 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||||
width="298" height="417" viewBox="0 0 298 417" id="card12">
|
width="298" height="417" viewBox="0 0 298 417" id="card12" class="card" xmlns:v-bind="https://heron.legonzaur.fr">
|
||||||
<defs>
|
<defs>
|
||||||
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
||||||
<stop offset="0" stop-color="yellow" stop-opacity="1" />
|
<stop offset="0" stop-color="yellow" stop-opacity="1" />
|
||||||
@@ -13,35 +13,6 @@
|
|||||||
<filter id="drop-shadow">
|
<filter id="drop-shadow">
|
||||||
<feDropShadow dx="1" dy="1" stdDeviation="0"></feDropShadow>
|
<feDropShadow dx="1" dy="1" stdDeviation="0"></feDropShadow>
|
||||||
</filter>
|
</filter>
|
||||||
<g id="faction_icon">
|
|
||||||
<circle cx="1" cy="1" r="20" fill="black" filter="url(#drop-shadow)" />
|
|
||||||
<circle cx="0" cy="0" r="20" fill="url(#grad2)" />
|
|
||||||
</g>
|
|
||||||
<g class="svg_resource_icon" onclick="console.warn('unknown interaction')" id="d0">
|
|
||||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
|
||||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">2</text>
|
|
||||||
</g>
|
|
||||||
<g id="d1">
|
|
||||||
<text x="0" y="-7.0" font-size="14" text-anchor="middle" fill="black" font-family="Helvetica"><tspan x="0" dy="0em">+ x pour chaque Champion</tspan><tspan x="0" dy="1em">que vous avez en jeu</tspan></text>
|
|
||||||
</g>
|
|
||||||
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '0' } ) );" id="d2">
|
|
||||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
|
||||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">1</text>
|
|
||||||
</g>
|
|
||||||
<g id="d3">
|
|
||||||
<circle cx="30" cy="67.5" r="15" fill="gray" filter="url(#drop-shadow)" />
|
|
||||||
<use xlink:href="#d1" x="137.0" y="101.5" />
|
|
||||||
<use xlink:href="#d2" x="137.0" y="60.5" />
|
|
||||||
</g>
|
|
||||||
<g id="effects">
|
|
||||||
<use xlink:href="#d3" x="0" y="0" />
|
|
||||||
</g>
|
|
||||||
<path d="M-2.9999999999999982,-2.0 L-29.6295824562643,-21.347524157501468 L-19.45798706418925,-52.652475842498525 L13.45798706418924,-52.65247584249853 L23.629582456264302,-21.34752415750148 Z" stroke-width="2" id="d4" />
|
|
||||||
<text x="-3" y="-20" font-size="28px" font-weight="bold" font-family="Helvetica" text-anchor="middle" id="d5">3</text>
|
|
||||||
<g id="champion_shield">
|
|
||||||
<use xlink:href="#d4" x="0" y="0" fill="darkgrey" stroke="#eee" />
|
|
||||||
<use xlink:href="#d5" x="0" y="0" fill="black" />
|
|
||||||
</g>
|
|
||||||
</defs>
|
</defs>
|
||||||
<use xlink:href="#drop-shadow" />
|
<use xlink:href="#drop-shadow" />
|
||||||
<g id="background">
|
<g id="background">
|
||||||
@@ -52,10 +23,36 @@
|
|||||||
<text x="149.0" y="36" font-size="19" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">Tits Priest</text>
|
<text x="149.0" y="36" font-size="19" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">Tits Priest</text>
|
||||||
<text x="149.0" y="53" font-size="13" text-anchor="middle" fill="black" font-family="Helvetica">Champion</text>
|
<text x="149.0" y="53" font-size="13" text-anchor="middle" fill="black" font-family="Helvetica">Champion</text>
|
||||||
</g>
|
</g>
|
||||||
<use xlink:href="#faction_icon" x="36" y="37" />
|
<g transform="translate(36,37)">
|
||||||
<use xlink:href="#d0" x="260" y="36" />
|
<g id="faction_icon">
|
||||||
|
<circle cx="1" cy="1" r="20" fill="black" filter="url(#drop-shadow)" />
|
||||||
|
<circle cx="0" cy="0" r="20" fill="url(#grad2)" />
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(260,36)">
|
||||||
|
<g class="svg_resource_icon" onclick="console.warn('unknown interaction')">
|
||||||
|
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
||||||
|
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">2</text>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
<rect x="0" y="65" width="298" height="200" />
|
<rect x="0" y="65" width="298" height="200" />
|
||||||
<image x="0" y="65" width="298" height="200" xlink:href="../../img/missing.png" />
|
<image x="0" y="65" width="298" height="200" xlink:href="../../img/missing.png" />
|
||||||
<use xlink:href="#effects" x="12" y="265" />
|
<g transform="translate(12,265)">
|
||||||
<use xlink:href="#champion_shield" x="268" y="417" />
|
<g>
|
||||||
|
<circle cx="30" cy="67.5" r="15" fill="gray" filter="url(#drop-shadow)" />
|
||||||
|
<g transform="translate(137.0,101.5)">
|
||||||
|
<text x="0" y="-7.0" font-size="14" text-anchor="middle" fill="black" font-family="Helvetica"><tspan x="0" dy="0em">+ x pour chaque Champion</tspan><tspan x="0" dy="1em">que vous avez en jeu</tspan></text>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(137.0,60.5)" v-bind:class="{used:used_effects_indexes.includes(0)}">
|
||||||
|
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '0' } ) );">
|
||||||
|
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
||||||
|
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">1</text>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(268,417)">
|
||||||
|
<path d="M-2.9999999999999982,-2.0 L-29.6295824562643,-21.347524157501468 L-19.45798706418925,-52.652475842498525 L13.45798706418924,-52.65247584249853 L23.629582456264302,-21.34752415750148 Z" fill="darkgrey" stroke="#eee" stroke-width="2" />
|
||||||
|
<text x="-3" y="-20" font-size="28px" font-weight="bold" font-family="Helvetica" text-anchor="middle" fill="black">3</text>
|
||||||
|
</g>
|
||||||
</svg>
|
</svg>
|
||||||
|
Before Width: | Height: | Size: 3.2 KiB After Width: | Height: | Size: 3.1 KiB |
@@ -1,6 +1,6 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||||
width="298" height="417" viewBox="0 0 298 417" id="card13">
|
width="298" height="417" viewBox="0 0 298 417" id="card13" class="card" xmlns:v-bind="https://heron.legonzaur.fr">
|
||||||
<defs>
|
<defs>
|
||||||
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
||||||
<stop offset="0" stop-color="yellow" stop-opacity="1" />
|
<stop offset="0" stop-color="yellow" stop-opacity="1" />
|
||||||
@@ -13,42 +13,6 @@
|
|||||||
<filter id="drop-shadow">
|
<filter id="drop-shadow">
|
||||||
<feDropShadow dx="1" dy="1" stdDeviation="0"></feDropShadow>
|
<feDropShadow dx="1" dy="1" stdDeviation="0"></feDropShadow>
|
||||||
</filter>
|
</filter>
|
||||||
<g id="faction_icon">
|
|
||||||
<circle cx="1" cy="1" r="20" fill="black" filter="url(#drop-shadow)" />
|
|
||||||
<circle cx="0" cy="0" r="20" fill="url(#grad2)" />
|
|
||||||
</g>
|
|
||||||
<g class="svg_resource_icon" onclick="console.warn('unknown interaction')" id="d0">
|
|
||||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
|
||||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">1</text>
|
|
||||||
</g>
|
|
||||||
<g id="d1">
|
|
||||||
<text x="0" y="-0.0" font-size="13.333333333333334" text-anchor="middle" fill="black" font-family="Helvetica"></text>
|
|
||||||
</g>
|
|
||||||
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '0' } ) );" id="d2">
|
|
||||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
|
||||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">2</text>
|
|
||||||
</g>
|
|
||||||
<g id="d3">
|
|
||||||
<use xlink:href="#d1" x="137.0" y="70.66666666666667" />
|
|
||||||
<use xlink:href="#d2" x="137.0" y="40.0" />
|
|
||||||
</g>
|
|
||||||
<g id="d4">
|
|
||||||
<text x="0" y="-0.0" font-size="11" text-anchor="middle" fill="black" font-family="Helvetica"></text>
|
|
||||||
</g>
|
|
||||||
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '1' } ) );" id="d5">
|
|
||||||
<circle cx="0" cy="0" r="18.333333333333332" fill="green" x="0" y="0" />
|
|
||||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">6</text>
|
|
||||||
</g>
|
|
||||||
<g id="d6">
|
|
||||||
<circle cx="30" cy="27.5" r="15" fill="url(#grad2)" filter="url(#drop-shadow)" />
|
|
||||||
<use xlink:href="#d4" x="137.0" y="45.666666666666664" />
|
|
||||||
<use xlink:href="#d5" x="137.0" y="27.5" />
|
|
||||||
</g>
|
|
||||||
<g id="effects">
|
|
||||||
<path d="M10,80 L264,80" stroke="black" stroke-width="1" />
|
|
||||||
<use xlink:href="#d3" x="0" y="0" />
|
|
||||||
<use xlink:href="#d6" x="0" y="80" />
|
|
||||||
</g>
|
|
||||||
</defs>
|
</defs>
|
||||||
<use xlink:href="#drop-shadow" />
|
<use xlink:href="#drop-shadow" />
|
||||||
<g id="background">
|
<g id="background">
|
||||||
@@ -59,9 +23,46 @@
|
|||||||
<text x="149.0" y="36" font-size="19" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">Caprisun</text>
|
<text x="149.0" y="36" font-size="19" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">Caprisun</text>
|
||||||
<text x="149.0" y="53" font-size="13" text-anchor="middle" fill="black" font-family="Helvetica">Action, 20cl</text>
|
<text x="149.0" y="53" font-size="13" text-anchor="middle" fill="black" font-family="Helvetica">Action, 20cl</text>
|
||||||
</g>
|
</g>
|
||||||
<use xlink:href="#faction_icon" x="36" y="37" />
|
<g transform="translate(36,37)">
|
||||||
<use xlink:href="#d0" x="260" y="36" />
|
<g id="faction_icon">
|
||||||
|
<circle cx="1" cy="1" r="20" fill="black" filter="url(#drop-shadow)" />
|
||||||
|
<circle cx="0" cy="0" r="20" fill="url(#grad2)" />
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(260,36)">
|
||||||
|
<g class="svg_resource_icon" onclick="console.warn('unknown interaction')">
|
||||||
|
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
||||||
|
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">1</text>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
<rect x="0" y="65" width="298" height="200" />
|
<rect x="0" y="65" width="298" height="200" />
|
||||||
<image x="0" y="65" width="298" height="200" xlink:href="lancersiz3.png" />
|
<image x="0" y="65" width="298" height="200" xlink:href="lancersiz3.png" />
|
||||||
<use xlink:href="#effects" x="12" y="265" />
|
<g transform="translate(12,265)">
|
||||||
|
<path d="M10,80 L264,80" stroke="black" stroke-width="1" />
|
||||||
|
<g>
|
||||||
|
<g transform="translate(137.0,70.66666666666667)">
|
||||||
|
<text x="0" y="-0.0" font-size="13.333333333333334" text-anchor="middle" fill="black" font-family="Helvetica"></text>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(137.0,40.0)" v-bind:class="{used:used_effects_indexes.includes(0)}">
|
||||||
|
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '0' } ) );">
|
||||||
|
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
||||||
|
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">2</text>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(0,80)">
|
||||||
|
<g>
|
||||||
|
<circle cx="30" cy="27.5" r="15" fill="url(#grad2)" filter="url(#drop-shadow)" />
|
||||||
|
<g transform="translate(137.0,45.666666666666664)">
|
||||||
|
<text x="0" y="-0.0" font-size="11" text-anchor="middle" fill="black" font-family="Helvetica"></text>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(137.0,27.5)" v-bind:class="{used:used_effects_indexes.includes(1)}">
|
||||||
|
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '1' } ) );">
|
||||||
|
<circle cx="0" cy="0" r="18.333333333333332" fill="green" x="0" y="0" />
|
||||||
|
<text x="0" y="9" font-size="24" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">6</text>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
</svg>
|
</svg>
|
||||||
|
Before Width: | Height: | Size: 3.3 KiB After Width: | Height: | Size: 3.3 KiB |
@@ -1,6 +1,6 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||||
width="298" height="417" viewBox="0 0 298 417" id="card14">
|
width="298" height="417" viewBox="0 0 298 417" id="card14" class="card" xmlns:v-bind="https://heron.legonzaur.fr">
|
||||||
<defs>
|
<defs>
|
||||||
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
||||||
<stop offset="0" stop-color="yellow" stop-opacity="1" />
|
<stop offset="0" stop-color="yellow" stop-opacity="1" />
|
||||||
@@ -13,51 +13,6 @@
|
|||||||
<filter id="drop-shadow">
|
<filter id="drop-shadow">
|
||||||
<feDropShadow dx="1" dy="1" stdDeviation="0"></feDropShadow>
|
<feDropShadow dx="1" dy="1" stdDeviation="0"></feDropShadow>
|
||||||
</filter>
|
</filter>
|
||||||
<g id="faction_icon">
|
|
||||||
<circle cx="1" cy="1" r="20" fill="black" filter="url(#drop-shadow)" />
|
|
||||||
<circle cx="0" cy="0" r="20" fill="url(#grad2)" />
|
|
||||||
</g>
|
|
||||||
<g class="svg_resource_icon" onclick="console.warn('unknown interaction')" id="d0">
|
|
||||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
|
||||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">6</text>
|
|
||||||
</g>
|
|
||||||
<g id="d1">
|
|
||||||
<text x="0" y="-0.0" font-size="14" text-anchor="middle" fill="black" font-family="Helvetica">Piochez deux cartes.</text>
|
|
||||||
</g>
|
|
||||||
<g id="d2">
|
|
||||||
<use xlink:href="#d1" x="137.0" y="26.0" />
|
|
||||||
</g>
|
|
||||||
<g id="d3">
|
|
||||||
<text x="0" y="-0.0" font-size="11" text-anchor="middle" fill="black" font-family="Helvetica"></text>
|
|
||||||
</g>
|
|
||||||
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '1' } ) );" id="d4">
|
|
||||||
<circle cx="0" cy="0" r="15.0" fill="green" x="0" y="0" />
|
|
||||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">5</text>
|
|
||||||
</g>
|
|
||||||
<g id="d5">
|
|
||||||
<circle cx="30" cy="22.5" r="15" fill="url(#grad2)" filter="url(#drop-shadow)" />
|
|
||||||
<use xlink:href="#d3" x="137.0" y="35.666666666666664" />
|
|
||||||
<use xlink:href="#d4" x="137.0" y="22.5" />
|
|
||||||
</g>
|
|
||||||
<g id="d6">
|
|
||||||
<text x="0" y="-0.0" font-size="11" text-anchor="middle" fill="black" font-family="Helvetica"></text>
|
|
||||||
</g>
|
|
||||||
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '2' } ) );" id="d7">
|
|
||||||
<circle cx="0" cy="0" r="15.0" fill="red" x="0" y="0" />
|
|
||||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">5</text>
|
|
||||||
</g>
|
|
||||||
<g id="d8">
|
|
||||||
<circle cx="30" cy="22.5" r="15" fill="black" filter="url(#drop-shadow)" />
|
|
||||||
<use xlink:href="#d6" x="137.0" y="35.666666666666664" />
|
|
||||||
<use xlink:href="#d7" x="137.0" y="22.5" />
|
|
||||||
</g>
|
|
||||||
<g id="effects">
|
|
||||||
<path d="M10,45 L264,45" stroke="black" stroke-width="1" />
|
|
||||||
<path d="M10,90 L264,90" stroke="black" stroke-width="1" />
|
|
||||||
<use xlink:href="#d2" x="0" y="0" />
|
|
||||||
<use xlink:href="#d5" x="0" y="45" />
|
|
||||||
<use xlink:href="#d8" x="0" y="90" />
|
|
||||||
</g>
|
|
||||||
</defs>
|
</defs>
|
||||||
<use xlink:href="#drop-shadow" />
|
<use xlink:href="#drop-shadow" />
|
||||||
<g id="background">
|
<g id="background">
|
||||||
@@ -68,9 +23,55 @@
|
|||||||
<text x="149.0" y="36" font-size="19" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">Word of Power</text>
|
<text x="149.0" y="36" font-size="19" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">Word of Power</text>
|
||||||
<text x="149.0" y="53" font-size="13" text-anchor="middle" fill="black" font-family="Helvetica">Action</text>
|
<text x="149.0" y="53" font-size="13" text-anchor="middle" fill="black" font-family="Helvetica">Action</text>
|
||||||
</g>
|
</g>
|
||||||
<use xlink:href="#faction_icon" x="36" y="37" />
|
<g transform="translate(36,37)">
|
||||||
<use xlink:href="#d0" x="260" y="36" />
|
<g id="faction_icon">
|
||||||
|
<circle cx="1" cy="1" r="20" fill="black" filter="url(#drop-shadow)" />
|
||||||
|
<circle cx="0" cy="0" r="20" fill="url(#grad2)" />
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(260,36)">
|
||||||
|
<g class="svg_resource_icon" onclick="console.warn('unknown interaction')">
|
||||||
|
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
||||||
|
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">6</text>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
<rect x="0" y="65" width="298" height="200" />
|
<rect x="0" y="65" width="298" height="200" />
|
||||||
<image x="0" y="65" width="298" height="200" xlink:href="../../img/missing.png" />
|
<image x="0" y="65" width="298" height="200" xlink:href="../../img/missing.png" />
|
||||||
<use xlink:href="#effects" x="12" y="265" />
|
<g transform="translate(12,265)">
|
||||||
|
<path d="M10,45 L264,45" stroke="black" stroke-width="1" />
|
||||||
|
<path d="M10,90 L264,90" stroke="black" stroke-width="1" />
|
||||||
|
<g>
|
||||||
|
<g transform="translate(137.0,26.0)">
|
||||||
|
<text x="0" y="-0.0" font-size="14" text-anchor="middle" fill="black" font-family="Helvetica">Piochez deux cartes.</text>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(0,45)">
|
||||||
|
<g>
|
||||||
|
<circle cx="30" cy="22.5" r="15" fill="url(#grad2)" filter="url(#drop-shadow)" />
|
||||||
|
<g transform="translate(137.0,35.666666666666664)">
|
||||||
|
<text x="0" y="-0.0" font-size="11" text-anchor="middle" fill="black" font-family="Helvetica"></text>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(137.0,22.5)" v-bind:class="{used:used_effects_indexes.includes(1)}">
|
||||||
|
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '1' } ) );">
|
||||||
|
<circle cx="0" cy="0" r="15.0" fill="green" x="0" y="0" />
|
||||||
|
<text x="0" y="9" font-size="24" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">5</text>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(0,90)">
|
||||||
|
<g>
|
||||||
|
<circle cx="30" cy="22.5" r="15" fill="black" filter="url(#drop-shadow)" />
|
||||||
|
<g transform="translate(137.0,35.666666666666664)">
|
||||||
|
<text x="0" y="-0.0" font-size="11" text-anchor="middle" fill="black" font-family="Helvetica"></text>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(137.0,22.5)" v-bind:class="{used:used_effects_indexes.includes(2)}">
|
||||||
|
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '2' } ) );">
|
||||||
|
<circle cx="0" cy="0" r="15.0" fill="red" x="0" y="0" />
|
||||||
|
<text x="0" y="9" font-size="24" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">5</text>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
</svg>
|
</svg>
|
||||||
|
Before Width: | Height: | Size: 3.6 KiB After Width: | Height: | Size: 3.6 KiB |
@@ -1,6 +1,6 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||||
width="298" height="417" viewBox="0 0 298 417" id="card15">
|
width="298" height="417" viewBox="0 0 298 417" id="card15" class="card" xmlns:v-bind="https://heron.legonzaur.fr">
|
||||||
<defs>
|
<defs>
|
||||||
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
||||||
<stop offset="0" stop-color="blue" stop-opacity="1" />
|
<stop offset="0" stop-color="blue" stop-opacity="1" />
|
||||||
@@ -13,37 +13,6 @@
|
|||||||
<filter id="drop-shadow">
|
<filter id="drop-shadow">
|
||||||
<feDropShadow dx="1" dy="1" stdDeviation="0"></feDropShadow>
|
<feDropShadow dx="1" dy="1" stdDeviation="0"></feDropShadow>
|
||||||
</filter>
|
</filter>
|
||||||
<g id="faction_icon">
|
|
||||||
<circle cx="1" cy="1" r="20" fill="black" filter="url(#drop-shadow)" />
|
|
||||||
<circle cx="0" cy="0" r="20" fill="url(#grad2)" />
|
|
||||||
</g>
|
|
||||||
<g class="svg_resource_icon" onclick="console.warn('unknown interaction')" id="d0">
|
|
||||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
|
||||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">6</text>
|
|
||||||
</g>
|
|
||||||
<g id="d1">
|
|
||||||
<text x="0" y="-0.0" font-size="14" text-anchor="middle" fill="black" font-family="Helvetica"></text>
|
|
||||||
</g>
|
|
||||||
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '0' } ) );" id="d2">
|
|
||||||
<circle cx="0" cy="0" r="20" fill="red" x="0" y="0" />
|
|
||||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">4</text>
|
|
||||||
</g>
|
|
||||||
<g id="d3">
|
|
||||||
<circle cx="30" cy="67.5" r="15" fill="gray" filter="url(#drop-shadow)" />
|
|
||||||
<use xlink:href="#d1" x="137.0" y="101.5" />
|
|
||||||
<use xlink:href="#d2" x="137.0" y="67.5" />
|
|
||||||
</g>
|
|
||||||
<g id="effects">
|
|
||||||
<use xlink:href="#d3" x="0" y="0" />
|
|
||||||
</g>
|
|
||||||
<path d="M-2.9999999999999982,-2.0 L-29.6295824562643,-21.347524157501468 L-19.45798706418925,-52.652475842498525 L13.45798706418924,-52.65247584249853 L23.629582456264302,-21.34752415750148 Z" stroke-width="2" id="d4" />
|
|
||||||
<text x="-3" y="-20" font-size="28px" font-weight="bold" font-family="Helvetica" text-anchor="middle" id="d5">6</text>
|
|
||||||
<g id="champion_shield">
|
|
||||||
<use xlink:href="#d4" x="0" y="0" fill="black" stroke="lightgrey" />
|
|
||||||
<rect x="-28" y="-72" width="49" height="17" fill="black" stroke="lightgrey" stroke-width="2" />
|
|
||||||
<text x="-3" y="-59" font-size="12px" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">Garde</text>
|
|
||||||
<use xlink:href="#d5" x="0" y="0" fill="white" />
|
|
||||||
</g>
|
|
||||||
</defs>
|
</defs>
|
||||||
<use xlink:href="#drop-shadow" />
|
<use xlink:href="#drop-shadow" />
|
||||||
<g id="background">
|
<g id="background">
|
||||||
@@ -54,10 +23,38 @@
|
|||||||
<text x="149.0" y="36" font-size="19" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">borg, ogre mercenary</text>
|
<text x="149.0" y="36" font-size="19" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">borg, ogre mercenary</text>
|
||||||
<text x="149.0" y="53" font-size="13" text-anchor="middle" fill="black" font-family="Helvetica">Champion</text>
|
<text x="149.0" y="53" font-size="13" text-anchor="middle" fill="black" font-family="Helvetica">Champion</text>
|
||||||
</g>
|
</g>
|
||||||
<use xlink:href="#faction_icon" x="36" y="37" />
|
<g transform="translate(36,37)">
|
||||||
<use xlink:href="#d0" x="260" y="36" />
|
<g id="faction_icon">
|
||||||
|
<circle cx="1" cy="1" r="20" fill="black" filter="url(#drop-shadow)" />
|
||||||
|
<circle cx="0" cy="0" r="20" fill="url(#grad2)" />
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(260,36)">
|
||||||
|
<g class="svg_resource_icon" onclick="console.warn('unknown interaction')">
|
||||||
|
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
||||||
|
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">6</text>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
<rect x="0" y="65" width="298" height="200" />
|
<rect x="0" y="65" width="298" height="200" />
|
||||||
<image x="0" y="65" width="298" height="200" xlink:href="../../img/missing.png" />
|
<image x="0" y="65" width="298" height="200" xlink:href="../../img/missing.png" />
|
||||||
<use xlink:href="#effects" x="12" y="265" />
|
<g transform="translate(12,265)">
|
||||||
<use xlink:href="#champion_shield" x="268" y="417" />
|
<g>
|
||||||
|
<circle cx="30" cy="67.5" r="15" fill="gray" filter="url(#drop-shadow)" />
|
||||||
|
<g transform="translate(137.0,101.5)">
|
||||||
|
<text x="0" y="-0.0" font-size="14" text-anchor="middle" fill="black" font-family="Helvetica"></text>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(137.0,67.5)" v-bind:class="{used:used_effects_indexes.includes(0)}">
|
||||||
|
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '0' } ) );">
|
||||||
|
<circle cx="0" cy="0" r="20" fill="red" x="0" y="0" />
|
||||||
|
<text x="0" y="9" font-size="24" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">4</text>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(268,417)">
|
||||||
|
<path d="M-2.9999999999999982,-2.0 L-29.6295824562643,-21.347524157501468 L-19.45798706418925,-52.652475842498525 L13.45798706418924,-52.65247584249853 L23.629582456264302,-21.34752415750148 Z" fill="black" stroke="lightgrey" stroke-width="2" />
|
||||||
|
<rect x="-28" y="-72" width="49" height="17" fill="black" stroke="lightgrey" stroke-width="2" />
|
||||||
|
<text x="-3" y="-59" font-size="12px" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">Garde</text>
|
||||||
|
<text x="-3" y="-20" font-size="28px" font-weight="bold" font-family="Helvetica" text-anchor="middle" fill="white">6</text>
|
||||||
|
</g>
|
||||||
</svg>
|
</svg>
|
||||||
|
Before Width: | Height: | Size: 3.3 KiB After Width: | Height: | Size: 3.2 KiB |
@@ -1,6 +1,6 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||||
width="298" height="417" viewBox="0 0 298 417" id="card16">
|
width="298" height="417" viewBox="0 0 298 417" id="card16" class="card" xmlns:v-bind="https://heron.legonzaur.fr">
|
||||||
<defs>
|
<defs>
|
||||||
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
||||||
<stop offset="0" stop-color="blue" stop-opacity="1" />
|
<stop offset="0" stop-color="blue" stop-opacity="1" />
|
||||||
@@ -13,37 +13,6 @@
|
|||||||
<filter id="drop-shadow">
|
<filter id="drop-shadow">
|
||||||
<feDropShadow dx="1" dy="1" stdDeviation="0"></feDropShadow>
|
<feDropShadow dx="1" dy="1" stdDeviation="0"></feDropShadow>
|
||||||
</filter>
|
</filter>
|
||||||
<g id="faction_icon">
|
|
||||||
<circle cx="1" cy="1" r="20" fill="black" filter="url(#drop-shadow)" />
|
|
||||||
<circle cx="0" cy="0" r="20" fill="url(#grad2)" />
|
|
||||||
</g>
|
|
||||||
<g class="svg_resource_icon" onclick="console.warn('unknown interaction')" id="d0">
|
|
||||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
|
||||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">3</text>
|
|
||||||
</g>
|
|
||||||
<g id="d1">
|
|
||||||
<text x="0" y="-0.0" font-size="13.333333333333334" text-anchor="middle" fill="black" font-family="Helvetica"></text>
|
|
||||||
</g>
|
|
||||||
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '0' } ) );" id="d2">
|
|
||||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
|
||||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">3</text>
|
|
||||||
</g>
|
|
||||||
<g id="d3">
|
|
||||||
<use xlink:href="#d1" x="137.0" y="70.66666666666667" />
|
|
||||||
<use xlink:href="#d2" x="137.0" y="40.0" />
|
|
||||||
</g>
|
|
||||||
<g id="d4">
|
|
||||||
<text x="0" y="-0.0" font-size="14" text-anchor="middle" fill="black" font-family="Helvetica">stack_next_action_bought</text>
|
|
||||||
</g>
|
|
||||||
<g id="d5">
|
|
||||||
<circle cx="30" cy="27.5" r="15" fill="url(#grad2)" filter="url(#drop-shadow)" />
|
|
||||||
<use xlink:href="#d4" x="137.0" y="31.0" />
|
|
||||||
</g>
|
|
||||||
<g id="effects">
|
|
||||||
<path d="M10,80 L264,80" stroke="black" stroke-width="1" />
|
|
||||||
<use xlink:href="#d3" x="0" y="0" />
|
|
||||||
<use xlink:href="#d5" x="0" y="80" />
|
|
||||||
</g>
|
|
||||||
</defs>
|
</defs>
|
||||||
<use xlink:href="#drop-shadow" />
|
<use xlink:href="#drop-shadow" />
|
||||||
<g id="background">
|
<g id="background">
|
||||||
@@ -54,9 +23,40 @@
|
|||||||
<text x="149.0" y="36" font-size="19" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">bribe</text>
|
<text x="149.0" y="36" font-size="19" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">bribe</text>
|
||||||
<text x="149.0" y="53" font-size="13" text-anchor="middle" fill="black" font-family="Helvetica">Action</text>
|
<text x="149.0" y="53" font-size="13" text-anchor="middle" fill="black" font-family="Helvetica">Action</text>
|
||||||
</g>
|
</g>
|
||||||
<use xlink:href="#faction_icon" x="36" y="37" />
|
<g transform="translate(36,37)">
|
||||||
<use xlink:href="#d0" x="260" y="36" />
|
<g id="faction_icon">
|
||||||
|
<circle cx="1" cy="1" r="20" fill="black" filter="url(#drop-shadow)" />
|
||||||
|
<circle cx="0" cy="0" r="20" fill="url(#grad2)" />
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(260,36)">
|
||||||
|
<g class="svg_resource_icon" onclick="console.warn('unknown interaction')">
|
||||||
|
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
||||||
|
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">3</text>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
<rect x="0" y="65" width="298" height="200" />
|
<rect x="0" y="65" width="298" height="200" />
|
||||||
<image x="0" y="65" width="298" height="200" xlink:href="../../img/missing.png" />
|
<image x="0" y="65" width="298" height="200" xlink:href="../../img/missing.png" />
|
||||||
<use xlink:href="#effects" x="12" y="265" />
|
<g transform="translate(12,265)">
|
||||||
|
<path d="M10,80 L264,80" stroke="black" stroke-width="1" />
|
||||||
|
<g>
|
||||||
|
<g transform="translate(137.0,70.66666666666667)">
|
||||||
|
<text x="0" y="-0.0" font-size="13.333333333333334" text-anchor="middle" fill="black" font-family="Helvetica"></text>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(137.0,40.0)" v-bind:class="{used:used_effects_indexes.includes(0)}">
|
||||||
|
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '0' } ) );">
|
||||||
|
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
||||||
|
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">3</text>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(0,80)">
|
||||||
|
<g>
|
||||||
|
<circle cx="30" cy="27.5" r="15" fill="url(#grad2)" filter="url(#drop-shadow)" />
|
||||||
|
<g transform="translate(137.0,31.0)">
|
||||||
|
<text x="0" y="-0.0" font-size="14" text-anchor="middle" fill="black" font-family="Helvetica">stack_next_action_bought</text>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
</svg>
|
</svg>
|
||||||
|
Before Width: | Height: | Size: 2.9 KiB After Width: | Height: | Size: 2.9 KiB |
@@ -1,6 +1,6 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||||
width="298" height="417" viewBox="0 0 298 417" id="card17">
|
width="298" height="417" viewBox="0 0 298 417" id="card17" class="card" xmlns:v-bind="https://heron.legonzaur.fr">
|
||||||
<defs>
|
<defs>
|
||||||
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
||||||
<stop offset="0" stop-color="blue" stop-opacity="1" />
|
<stop offset="0" stop-color="blue" stop-opacity="1" />
|
||||||
@@ -13,37 +13,6 @@
|
|||||||
<filter id="drop-shadow">
|
<filter id="drop-shadow">
|
||||||
<feDropShadow dx="1" dy="1" stdDeviation="0"></feDropShadow>
|
<feDropShadow dx="1" dy="1" stdDeviation="0"></feDropShadow>
|
||||||
</filter>
|
</filter>
|
||||||
<g id="faction_icon">
|
|
||||||
<circle cx="1" cy="1" r="20" fill="black" filter="url(#drop-shadow)" />
|
|
||||||
<circle cx="0" cy="0" r="20" fill="url(#grad2)" />
|
|
||||||
</g>
|
|
||||||
<g class="svg_resource_icon" onclick="console.warn('unknown interaction')" id="d0">
|
|
||||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
|
||||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">3</text>
|
|
||||||
</g>
|
|
||||||
<g id="d1">
|
|
||||||
<text x="0" y="-0.0" font-size="13.333333333333334" text-anchor="middle" fill="black" font-family="Helvetica">Piochez une carte.</text>
|
|
||||||
</g>
|
|
||||||
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '0' } ) );" id="d2">
|
|
||||||
<circle cx="0" cy="0" r="20" fill="red" x="0" y="0" />
|
|
||||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">1</text>
|
|
||||||
</g>
|
|
||||||
<g id="d3">
|
|
||||||
<use xlink:href="#d1" x="137.0" y="70.66666666666667" />
|
|
||||||
<use xlink:href="#d2" x="137.0" y="33.0" />
|
|
||||||
</g>
|
|
||||||
<g id="d4">
|
|
||||||
<text x="0" y="-0.0" font-size="14" text-anchor="middle" fill="black" font-family="Helvetica">Assomez le champion ciblé.</text>
|
|
||||||
</g>
|
|
||||||
<g id="d5">
|
|
||||||
<circle cx="30" cy="27.5" r="15" fill="url(#grad2)" filter="url(#drop-shadow)" />
|
|
||||||
<use xlink:href="#d4" x="137.0" y="31.0" />
|
|
||||||
</g>
|
|
||||||
<g id="effects">
|
|
||||||
<path d="M10,80 L264,80" stroke="black" stroke-width="1" />
|
|
||||||
<use xlink:href="#d3" x="0" y="0" />
|
|
||||||
<use xlink:href="#d5" x="0" y="80" />
|
|
||||||
</g>
|
|
||||||
</defs>
|
</defs>
|
||||||
<use xlink:href="#drop-shadow" />
|
<use xlink:href="#drop-shadow" />
|
||||||
<g id="background">
|
<g id="background">
|
||||||
@@ -54,9 +23,40 @@
|
|||||||
<text x="149.0" y="36" font-size="19" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">death threat</text>
|
<text x="149.0" y="36" font-size="19" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">death threat</text>
|
||||||
<text x="149.0" y="53" font-size="13" text-anchor="middle" fill="black" font-family="Helvetica">Action</text>
|
<text x="149.0" y="53" font-size="13" text-anchor="middle" fill="black" font-family="Helvetica">Action</text>
|
||||||
</g>
|
</g>
|
||||||
<use xlink:href="#faction_icon" x="36" y="37" />
|
<g transform="translate(36,37)">
|
||||||
<use xlink:href="#d0" x="260" y="36" />
|
<g id="faction_icon">
|
||||||
|
<circle cx="1" cy="1" r="20" fill="black" filter="url(#drop-shadow)" />
|
||||||
|
<circle cx="0" cy="0" r="20" fill="url(#grad2)" />
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(260,36)">
|
||||||
|
<g class="svg_resource_icon" onclick="console.warn('unknown interaction')">
|
||||||
|
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
||||||
|
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">3</text>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
<rect x="0" y="65" width="298" height="200" />
|
<rect x="0" y="65" width="298" height="200" />
|
||||||
<image x="0" y="65" width="298" height="200" xlink:href="../../img/missing.png" />
|
<image x="0" y="65" width="298" height="200" xlink:href="../../img/missing.png" />
|
||||||
<use xlink:href="#effects" x="12" y="265" />
|
<g transform="translate(12,265)">
|
||||||
|
<path d="M10,80 L264,80" stroke="black" stroke-width="1" />
|
||||||
|
<g>
|
||||||
|
<g transform="translate(137.0,70.66666666666667)">
|
||||||
|
<text x="0" y="-0.0" font-size="13.333333333333334" text-anchor="middle" fill="black" font-family="Helvetica">Piochez une carte.</text>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(137.0,33.0)" v-bind:class="{used:used_effects_indexes.includes(0)}">
|
||||||
|
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '0' } ) );">
|
||||||
|
<circle cx="0" cy="0" r="20" fill="red" x="0" y="0" />
|
||||||
|
<text x="0" y="9" font-size="24" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">1</text>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(0,80)">
|
||||||
|
<g>
|
||||||
|
<circle cx="30" cy="27.5" r="15" fill="url(#grad2)" filter="url(#drop-shadow)" />
|
||||||
|
<g transform="translate(137.0,31.0)">
|
||||||
|
<text x="0" y="-0.0" font-size="14" text-anchor="middle" fill="black" font-family="Helvetica">Assomez le champion ciblé.</text>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
</svg>
|
</svg>
|
||||||
|
Before Width: | Height: | Size: 2.9 KiB After Width: | Height: | Size: 2.9 KiB |
@@ -1,6 +1,6 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||||
width="298" height="417" viewBox="0 0 298 417" id="card18">
|
width="298" height="417" viewBox="0 0 298 417" id="card18" class="card" xmlns:v-bind="https://heron.legonzaur.fr">
|
||||||
<defs>
|
<defs>
|
||||||
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
||||||
<stop offset="0" stop-color="blue" stop-opacity="1" />
|
<stop offset="0" stop-color="blue" stop-opacity="1" />
|
||||||
@@ -13,37 +13,6 @@
|
|||||||
<filter id="drop-shadow">
|
<filter id="drop-shadow">
|
||||||
<feDropShadow dx="1" dy="1" stdDeviation="0"></feDropShadow>
|
<feDropShadow dx="1" dy="1" stdDeviation="0"></feDropShadow>
|
||||||
</filter>
|
</filter>
|
||||||
<g id="faction_icon">
|
|
||||||
<circle cx="1" cy="1" r="20" fill="black" filter="url(#drop-shadow)" />
|
|
||||||
<circle cx="0" cy="0" r="20" fill="url(#grad2)" />
|
|
||||||
</g>
|
|
||||||
<g class="svg_resource_icon" onclick="console.warn('unknown interaction')" id="d0">
|
|
||||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
|
||||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">5</text>
|
|
||||||
</g>
|
|
||||||
<g id="d1">
|
|
||||||
<text x="0" y="-0.0" font-size="13.333333333333334" text-anchor="middle" fill="black" font-family="Helvetica">Piochez une carte.</text>
|
|
||||||
</g>
|
|
||||||
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '0' } ) );" id="d2">
|
|
||||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
|
||||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">2</text>
|
|
||||||
</g>
|
|
||||||
<g id="d3">
|
|
||||||
<use xlink:href="#d1" x="137.0" y="70.66666666666667" />
|
|
||||||
<use xlink:href="#d2" x="137.0" y="33.0" />
|
|
||||||
</g>
|
|
||||||
<g id="d4">
|
|
||||||
<text x="0" y="-11.0" font-size="11" text-anchor="middle" fill="black" font-family="Helvetica"><tspan x="0" dy="0em">Mettez la prochaine carte dont</tspan><tspan x="0" dy="1em">vous faites l'acquisition ce tour-ci</tspan><tspan x="0" dy="1em"> dans votre main.</tspan></text>
|
|
||||||
</g>
|
|
||||||
<g id="d5">
|
|
||||||
<circle cx="30" cy="27.5" r="15" fill="url(#grad2)" filter="url(#drop-shadow)" />
|
|
||||||
<use xlink:href="#d4" x="137.0" y="31.0" />
|
|
||||||
</g>
|
|
||||||
<g id="effects">
|
|
||||||
<path d="M10,80 L264,80" stroke="black" stroke-width="1" />
|
|
||||||
<use xlink:href="#d3" x="0" y="0" />
|
|
||||||
<use xlink:href="#d5" x="0" y="80" />
|
|
||||||
</g>
|
|
||||||
</defs>
|
</defs>
|
||||||
<use xlink:href="#drop-shadow" />
|
<use xlink:href="#drop-shadow" />
|
||||||
<g id="background">
|
<g id="background">
|
||||||
@@ -54,9 +23,40 @@
|
|||||||
<text x="149.0" y="36" font-size="19" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">deception</text>
|
<text x="149.0" y="36" font-size="19" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">deception</text>
|
||||||
<text x="149.0" y="53" font-size="13" text-anchor="middle" fill="black" font-family="Helvetica">Action</text>
|
<text x="149.0" y="53" font-size="13" text-anchor="middle" fill="black" font-family="Helvetica">Action</text>
|
||||||
</g>
|
</g>
|
||||||
<use xlink:href="#faction_icon" x="36" y="37" />
|
<g transform="translate(36,37)">
|
||||||
<use xlink:href="#d0" x="260" y="36" />
|
<g id="faction_icon">
|
||||||
|
<circle cx="1" cy="1" r="20" fill="black" filter="url(#drop-shadow)" />
|
||||||
|
<circle cx="0" cy="0" r="20" fill="url(#grad2)" />
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(260,36)">
|
||||||
|
<g class="svg_resource_icon" onclick="console.warn('unknown interaction')">
|
||||||
|
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
||||||
|
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">5</text>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
<rect x="0" y="65" width="298" height="200" />
|
<rect x="0" y="65" width="298" height="200" />
|
||||||
<image x="0" y="65" width="298" height="200" xlink:href="../../img/missing.png" />
|
<image x="0" y="65" width="298" height="200" xlink:href="../../img/missing.png" />
|
||||||
<use xlink:href="#effects" x="12" y="265" />
|
<g transform="translate(12,265)">
|
||||||
|
<path d="M10,80 L264,80" stroke="black" stroke-width="1" />
|
||||||
|
<g>
|
||||||
|
<g transform="translate(137.0,70.66666666666667)">
|
||||||
|
<text x="0" y="-0.0" font-size="13.333333333333334" text-anchor="middle" fill="black" font-family="Helvetica">Piochez une carte.</text>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(137.0,33.0)" v-bind:class="{used:used_effects_indexes.includes(0)}">
|
||||||
|
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '0' } ) );">
|
||||||
|
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
||||||
|
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">2</text>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(0,80)">
|
||||||
|
<g>
|
||||||
|
<circle cx="30" cy="27.5" r="15" fill="url(#grad2)" filter="url(#drop-shadow)" />
|
||||||
|
<g transform="translate(137.0,31.0)">
|
||||||
|
<text x="0" y="-11.0" font-size="11" text-anchor="middle" fill="black" font-family="Helvetica"><tspan x="0" dy="0em">Mettez la prochaine carte dont</tspan><tspan x="0" dy="1em">vous faites l'acquisition ce tour-ci</tspan><tspan x="0" dy="1em"> dans votre main.</tspan></text>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
</svg>
|
</svg>
|
||||||
|
Before Width: | Height: | Size: 3.1 KiB After Width: | Height: | Size: 3.0 KiB |
@@ -1,6 +1,6 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||||
width="298" height="417" viewBox="0 0 298 417" id="card19">
|
width="298" height="417" viewBox="0 0 298 417" id="card19" class="card" xmlns:v-bind="https://heron.legonzaur.fr">
|
||||||
<defs>
|
<defs>
|
||||||
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
||||||
<stop offset="0" stop-color="blue" stop-opacity="1" />
|
<stop offset="0" stop-color="blue" stop-opacity="1" />
|
||||||
@@ -13,42 +13,6 @@
|
|||||||
<filter id="drop-shadow">
|
<filter id="drop-shadow">
|
||||||
<feDropShadow dx="1" dy="1" stdDeviation="0"></feDropShadow>
|
<feDropShadow dx="1" dy="1" stdDeviation="0"></feDropShadow>
|
||||||
</filter>
|
</filter>
|
||||||
<g id="faction_icon">
|
|
||||||
<circle cx="1" cy="1" r="20" fill="black" filter="url(#drop-shadow)" />
|
|
||||||
<circle cx="0" cy="0" r="20" fill="url(#grad2)" />
|
|
||||||
</g>
|
|
||||||
<g class="svg_resource_icon" onclick="console.warn('unknown interaction')" id="d0">
|
|
||||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
|
||||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">8</text>
|
|
||||||
</g>
|
|
||||||
<g id="d1">
|
|
||||||
<text x="0" y="-6.666666666666667" font-size="13.333333333333334" text-anchor="middle" fill="black" font-family="Helvetica"><tspan x="0" dy="0em">Assomez le champion ciblé. </tspan><tspan x="0" dy="1em">Piochez une carte.</tspan></text>
|
|
||||||
</g>
|
|
||||||
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '0' } ) );" id="d2">
|
|
||||||
<circle cx="0" cy="0" r="20" fill="red" x="0" y="0" />
|
|
||||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">8</text>
|
|
||||||
</g>
|
|
||||||
<g id="d3">
|
|
||||||
<use xlink:href="#d1" x="137.0" y="70.66666666666667" />
|
|
||||||
<use xlink:href="#d2" x="137.0" y="33.0" />
|
|
||||||
</g>
|
|
||||||
<g id="d4">
|
|
||||||
<text x="0" y="-0.0" font-size="11" text-anchor="middle" fill="black" font-family="Helvetica"></text>
|
|
||||||
</g>
|
|
||||||
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '3' } ) );" id="d5">
|
|
||||||
<circle cx="0" cy="0" r="18.333333333333332" fill="red" x="0" y="0" />
|
|
||||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">5</text>
|
|
||||||
</g>
|
|
||||||
<g id="d6">
|
|
||||||
<circle cx="30" cy="27.5" r="15" fill="black" filter="url(#drop-shadow)" />
|
|
||||||
<use xlink:href="#d4" x="137.0" y="45.666666666666664" />
|
|
||||||
<use xlink:href="#d5" x="137.0" y="27.5" />
|
|
||||||
</g>
|
|
||||||
<g id="effects">
|
|
||||||
<path d="M10,80 L264,80" stroke="black" stroke-width="1" />
|
|
||||||
<use xlink:href="#d3" x="0" y="0" />
|
|
||||||
<use xlink:href="#d6" x="0" y="80" />
|
|
||||||
</g>
|
|
||||||
</defs>
|
</defs>
|
||||||
<use xlink:href="#drop-shadow" />
|
<use xlink:href="#drop-shadow" />
|
||||||
<g id="background">
|
<g id="background">
|
||||||
@@ -59,9 +23,46 @@
|
|||||||
<text x="149.0" y="36" font-size="19" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">fire bomb</text>
|
<text x="149.0" y="36" font-size="19" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">fire bomb</text>
|
||||||
<text x="149.0" y="53" font-size="13" text-anchor="middle" fill="black" font-family="Helvetica">Action</text>
|
<text x="149.0" y="53" font-size="13" text-anchor="middle" fill="black" font-family="Helvetica">Action</text>
|
||||||
</g>
|
</g>
|
||||||
<use xlink:href="#faction_icon" x="36" y="37" />
|
<g transform="translate(36,37)">
|
||||||
<use xlink:href="#d0" x="260" y="36" />
|
<g id="faction_icon">
|
||||||
|
<circle cx="1" cy="1" r="20" fill="black" filter="url(#drop-shadow)" />
|
||||||
|
<circle cx="0" cy="0" r="20" fill="url(#grad2)" />
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(260,36)">
|
||||||
|
<g class="svg_resource_icon" onclick="console.warn('unknown interaction')">
|
||||||
|
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
||||||
|
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">8</text>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
<rect x="0" y="65" width="298" height="200" />
|
<rect x="0" y="65" width="298" height="200" />
|
||||||
<image x="0" y="65" width="298" height="200" xlink:href="../../img/missing.png" />
|
<image x="0" y="65" width="298" height="200" xlink:href="../../img/missing.png" />
|
||||||
<use xlink:href="#effects" x="12" y="265" />
|
<g transform="translate(12,265)">
|
||||||
|
<path d="M10,80 L264,80" stroke="black" stroke-width="1" />
|
||||||
|
<g>
|
||||||
|
<g transform="translate(137.0,70.66666666666667)">
|
||||||
|
<text x="0" y="-6.666666666666667" font-size="13.333333333333334" text-anchor="middle" fill="black" font-family="Helvetica"><tspan x="0" dy="0em">Assomez le champion ciblé. </tspan><tspan x="0" dy="1em">Piochez une carte.</tspan></text>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(137.0,33.0)" v-bind:class="{used:used_effects_indexes.includes(0)}">
|
||||||
|
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '0' } ) );">
|
||||||
|
<circle cx="0" cy="0" r="20" fill="red" x="0" y="0" />
|
||||||
|
<text x="0" y="9" font-size="24" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">8</text>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(0,80)">
|
||||||
|
<g>
|
||||||
|
<circle cx="30" cy="27.5" r="15" fill="black" filter="url(#drop-shadow)" />
|
||||||
|
<g transform="translate(137.0,45.666666666666664)">
|
||||||
|
<text x="0" y="-0.0" font-size="11" text-anchor="middle" fill="black" font-family="Helvetica"></text>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(137.0,27.5)" v-bind:class="{used:used_effects_indexes.includes(3)}">
|
||||||
|
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '3' } ) );">
|
||||||
|
<circle cx="0" cy="0" r="18.333333333333332" fill="red" x="0" y="0" />
|
||||||
|
<text x="0" y="9" font-size="24" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">5</text>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
</svg>
|
</svg>
|
||||||
|
Before Width: | Height: | Size: 3.4 KiB After Width: | Height: | Size: 3.4 KiB |
@@ -1,6 +1,6 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||||
width="298" height="417" viewBox="0 0 298 417" id="card20">
|
width="298" height="417" viewBox="0 0 298 417" id="card20" class="card" xmlns:v-bind="https://heron.legonzaur.fr">
|
||||||
<defs>
|
<defs>
|
||||||
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
||||||
<stop offset="0" stop-color="blue" stop-opacity="1" />
|
<stop offset="0" stop-color="blue" stop-opacity="1" />
|
||||||
@@ -13,37 +13,6 @@
|
|||||||
<filter id="drop-shadow">
|
<filter id="drop-shadow">
|
||||||
<feDropShadow dx="1" dy="1" stdDeviation="0"></feDropShadow>
|
<feDropShadow dx="1" dy="1" stdDeviation="0"></feDropShadow>
|
||||||
</filter>
|
</filter>
|
||||||
<g id="faction_icon">
|
|
||||||
<circle cx="1" cy="1" r="20" fill="black" filter="url(#drop-shadow)" />
|
|
||||||
<circle cx="0" cy="0" r="20" fill="url(#grad2)" />
|
|
||||||
</g>
|
|
||||||
<g class="svg_resource_icon" onclick="console.warn('unknown interaction')" id="d0">
|
|
||||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
|
||||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">4</text>
|
|
||||||
</g>
|
|
||||||
<g id="d1">
|
|
||||||
<text x="0" y="-0.0" font-size="13.333333333333334" text-anchor="middle" fill="black" font-family="Helvetica"></text>
|
|
||||||
</g>
|
|
||||||
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '0' } ) );" id="d2">
|
|
||||||
<circle cx="0" cy="0" r="20" fill="red" x="0" y="0" />
|
|
||||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">7</text>
|
|
||||||
</g>
|
|
||||||
<g id="d3">
|
|
||||||
<use xlink:href="#d1" x="137.0" y="70.66666666666667" />
|
|
||||||
<use xlink:href="#d2" x="137.0" y="40.0" />
|
|
||||||
</g>
|
|
||||||
<g id="d4">
|
|
||||||
<text x="0" y="-0.0" font-size="14" text-anchor="middle" fill="black" font-family="Helvetica">Assomez le champion ciblé.</text>
|
|
||||||
</g>
|
|
||||||
<g id="d5">
|
|
||||||
<circle cx="30" cy="27.5" r="15" fill="url(#grad2)" filter="url(#drop-shadow)" />
|
|
||||||
<use xlink:href="#d4" x="137.0" y="31.0" />
|
|
||||||
</g>
|
|
||||||
<g id="effects">
|
|
||||||
<path d="M10,80 L264,80" stroke="black" stroke-width="1" />
|
|
||||||
<use xlink:href="#d3" x="0" y="0" />
|
|
||||||
<use xlink:href="#d5" x="0" y="80" />
|
|
||||||
</g>
|
|
||||||
</defs>
|
</defs>
|
||||||
<use xlink:href="#drop-shadow" />
|
<use xlink:href="#drop-shadow" />
|
||||||
<g id="background">
|
<g id="background">
|
||||||
@@ -54,9 +23,40 @@
|
|||||||
<text x="149.0" y="36" font-size="19" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">tit job</text>
|
<text x="149.0" y="36" font-size="19" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">tit job</text>
|
||||||
<text x="149.0" y="53" font-size="13" text-anchor="middle" fill="black" font-family="Helvetica">Action</text>
|
<text x="149.0" y="53" font-size="13" text-anchor="middle" fill="black" font-family="Helvetica">Action</text>
|
||||||
</g>
|
</g>
|
||||||
<use xlink:href="#faction_icon" x="36" y="37" />
|
<g transform="translate(36,37)">
|
||||||
<use xlink:href="#d0" x="260" y="36" />
|
<g id="faction_icon">
|
||||||
|
<circle cx="1" cy="1" r="20" fill="black" filter="url(#drop-shadow)" />
|
||||||
|
<circle cx="0" cy="0" r="20" fill="url(#grad2)" />
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(260,36)">
|
||||||
|
<g class="svg_resource_icon" onclick="console.warn('unknown interaction')">
|
||||||
|
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
||||||
|
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">4</text>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
<rect x="0" y="65" width="298" height="200" />
|
<rect x="0" y="65" width="298" height="200" />
|
||||||
<image x="0" y="65" width="298" height="200" xlink:href="../../img/missing.png" />
|
<image x="0" y="65" width="298" height="200" xlink:href="../../img/missing.png" />
|
||||||
<use xlink:href="#effects" x="12" y="265" />
|
<g transform="translate(12,265)">
|
||||||
|
<path d="M10,80 L264,80" stroke="black" stroke-width="1" />
|
||||||
|
<g>
|
||||||
|
<g transform="translate(137.0,70.66666666666667)">
|
||||||
|
<text x="0" y="-0.0" font-size="13.333333333333334" text-anchor="middle" fill="black" font-family="Helvetica"></text>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(137.0,40.0)" v-bind:class="{used:used_effects_indexes.includes(0)}">
|
||||||
|
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '0' } ) );">
|
||||||
|
<circle cx="0" cy="0" r="20" fill="red" x="0" y="0" />
|
||||||
|
<text x="0" y="9" font-size="24" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">7</text>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(0,80)">
|
||||||
|
<g>
|
||||||
|
<circle cx="30" cy="27.5" r="15" fill="url(#grad2)" filter="url(#drop-shadow)" />
|
||||||
|
<g transform="translate(137.0,31.0)">
|
||||||
|
<text x="0" y="-0.0" font-size="14" text-anchor="middle" fill="black" font-family="Helvetica">Assomez le champion ciblé.</text>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
</svg>
|
</svg>
|
||||||
|
Before Width: | Height: | Size: 2.9 KiB After Width: | Height: | Size: 2.9 KiB |
@@ -1,6 +1,6 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||||
width="298" height="417" viewBox="0 0 298 417" id="card21">
|
width="298" height="417" viewBox="0 0 298 417" id="card21" class="card" xmlns:v-bind="https://heron.legonzaur.fr">
|
||||||
<defs>
|
<defs>
|
||||||
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
||||||
<stop offset="0" stop-color="blue" stop-opacity="1" />
|
<stop offset="0" stop-color="blue" stop-opacity="1" />
|
||||||
@@ -13,42 +13,6 @@
|
|||||||
<filter id="drop-shadow">
|
<filter id="drop-shadow">
|
||||||
<feDropShadow dx="1" dy="1" stdDeviation="0"></feDropShadow>
|
<feDropShadow dx="1" dy="1" stdDeviation="0"></feDropShadow>
|
||||||
</filter>
|
</filter>
|
||||||
<g id="faction_icon">
|
|
||||||
<circle cx="1" cy="1" r="20" fill="black" filter="url(#drop-shadow)" />
|
|
||||||
<circle cx="0" cy="0" r="20" fill="url(#grad2)" />
|
|
||||||
</g>
|
|
||||||
<g class="svg_resource_icon" onclick="console.warn('unknown interaction')" id="d0">
|
|
||||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
|
||||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">2</text>
|
|
||||||
</g>
|
|
||||||
<g id="d1">
|
|
||||||
<text x="0" y="-0.0" font-size="13.333333333333334" text-anchor="middle" fill="black" font-family="Helvetica"></text>
|
|
||||||
</g>
|
|
||||||
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '0' } ) );" id="d2">
|
|
||||||
<circle cx="0" cy="0" r="20" fill="red" x="0" y="0" />
|
|
||||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">5</text>
|
|
||||||
</g>
|
|
||||||
<g id="d3">
|
|
||||||
<use xlink:href="#d1" x="137.0" y="70.66666666666667" />
|
|
||||||
<use xlink:href="#d2" x="137.0" y="40.0" />
|
|
||||||
</g>
|
|
||||||
<g id="d4">
|
|
||||||
<text x="0" y="-0.0" font-size="11" text-anchor="middle" fill="black" font-family="Helvetica"></text>
|
|
||||||
</g>
|
|
||||||
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '1' } ) );" id="d5">
|
|
||||||
<circle cx="0" cy="0" r="18.333333333333332" fill="yellow" x="0" y="0" />
|
|
||||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">2</text>
|
|
||||||
</g>
|
|
||||||
<g id="d6">
|
|
||||||
<circle cx="30" cy="27.5" r="15" fill="url(#grad2)" filter="url(#drop-shadow)" />
|
|
||||||
<use xlink:href="#d4" x="137.0" y="45.666666666666664" />
|
|
||||||
<use xlink:href="#d5" x="137.0" y="27.5" />
|
|
||||||
</g>
|
|
||||||
<g id="effects">
|
|
||||||
<path d="M10,80 L264,80" stroke="black" stroke-width="1" />
|
|
||||||
<use xlink:href="#d3" x="0" y="0" />
|
|
||||||
<use xlink:href="#d6" x="0" y="80" />
|
|
||||||
</g>
|
|
||||||
</defs>
|
</defs>
|
||||||
<use xlink:href="#drop-shadow" />
|
<use xlink:href="#drop-shadow" />
|
||||||
<g id="background">
|
<g id="background">
|
||||||
@@ -59,9 +23,46 @@
|
|||||||
<text x="149.0" y="36" font-size="19" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">intimidation</text>
|
<text x="149.0" y="36" font-size="19" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">intimidation</text>
|
||||||
<text x="149.0" y="53" font-size="13" text-anchor="middle" fill="black" font-family="Helvetica">Action</text>
|
<text x="149.0" y="53" font-size="13" text-anchor="middle" fill="black" font-family="Helvetica">Action</text>
|
||||||
</g>
|
</g>
|
||||||
<use xlink:href="#faction_icon" x="36" y="37" />
|
<g transform="translate(36,37)">
|
||||||
<use xlink:href="#d0" x="260" y="36" />
|
<g id="faction_icon">
|
||||||
|
<circle cx="1" cy="1" r="20" fill="black" filter="url(#drop-shadow)" />
|
||||||
|
<circle cx="0" cy="0" r="20" fill="url(#grad2)" />
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(260,36)">
|
||||||
|
<g class="svg_resource_icon" onclick="console.warn('unknown interaction')">
|
||||||
|
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
||||||
|
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">2</text>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
<rect x="0" y="65" width="298" height="200" />
|
<rect x="0" y="65" width="298" height="200" />
|
||||||
<image x="0" y="65" width="298" height="200" xlink:href="../../img/missing.png" />
|
<image x="0" y="65" width="298" height="200" xlink:href="../../img/missing.png" />
|
||||||
<use xlink:href="#effects" x="12" y="265" />
|
<g transform="translate(12,265)">
|
||||||
|
<path d="M10,80 L264,80" stroke="black" stroke-width="1" />
|
||||||
|
<g>
|
||||||
|
<g transform="translate(137.0,70.66666666666667)">
|
||||||
|
<text x="0" y="-0.0" font-size="13.333333333333334" text-anchor="middle" fill="black" font-family="Helvetica"></text>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(137.0,40.0)" v-bind:class="{used:used_effects_indexes.includes(0)}">
|
||||||
|
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '0' } ) );">
|
||||||
|
<circle cx="0" cy="0" r="20" fill="red" x="0" y="0" />
|
||||||
|
<text x="0" y="9" font-size="24" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">5</text>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(0,80)">
|
||||||
|
<g>
|
||||||
|
<circle cx="30" cy="27.5" r="15" fill="url(#grad2)" filter="url(#drop-shadow)" />
|
||||||
|
<g transform="translate(137.0,45.666666666666664)">
|
||||||
|
<text x="0" y="-0.0" font-size="11" text-anchor="middle" fill="black" font-family="Helvetica"></text>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(137.0,27.5)" v-bind:class="{used:used_effects_indexes.includes(1)}">
|
||||||
|
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '1' } ) );">
|
||||||
|
<circle cx="0" cy="0" r="18.333333333333332" fill="yellow" x="0" y="0" />
|
||||||
|
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">2</text>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
</svg>
|
</svg>
|
||||||
|
Before Width: | Height: | Size: 3.3 KiB After Width: | Height: | Size: 3.3 KiB |
@@ -1,6 +1,6 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||||
width="298" height="417" viewBox="0 0 298 417" id="card22">
|
width="298" height="417" viewBox="0 0 298 417" id="card22" class="card" xmlns:v-bind="https://heron.legonzaur.fr">
|
||||||
<defs>
|
<defs>
|
||||||
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
||||||
<stop offset="0" stop-color="blue" stop-opacity="1" />
|
<stop offset="0" stop-color="blue" stop-opacity="1" />
|
||||||
@@ -13,51 +13,6 @@
|
|||||||
<filter id="drop-shadow">
|
<filter id="drop-shadow">
|
||||||
<feDropShadow dx="1" dy="1" stdDeviation="0"></feDropShadow>
|
<feDropShadow dx="1" dy="1" stdDeviation="0"></feDropShadow>
|
||||||
</filter>
|
</filter>
|
||||||
<g id="faction_icon">
|
|
||||||
<circle cx="1" cy="1" r="20" fill="black" filter="url(#drop-shadow)" />
|
|
||||||
<circle cx="0" cy="0" r="20" fill="url(#grad2)" />
|
|
||||||
</g>
|
|
||||||
<g class="svg_resource_icon" onclick="console.warn('unknown interaction')" id="d0">
|
|
||||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
|
||||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">5</text>
|
|
||||||
</g>
|
|
||||||
<g id="d1">
|
|
||||||
<text x="0" y="-0.0" font-size="13.333333333333334" text-anchor="middle" fill="black" font-family="Helvetica"></text>
|
|
||||||
</g>
|
|
||||||
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '0' } ) );" id="d2">
|
|
||||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
|
||||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">3</text>
|
|
||||||
</g>
|
|
||||||
<g id="d3">
|
|
||||||
<circle cx="30" cy="40.0" r="15" fill="gray" filter="url(#drop-shadow)" />
|
|
||||||
<use xlink:href="#d1" x="137.0" y="70.66666666666667" />
|
|
||||||
<use xlink:href="#d2" x="137.0" y="40.0" />
|
|
||||||
</g>
|
|
||||||
<g id="d4">
|
|
||||||
<text x="0" y="-0.0" font-size="11" text-anchor="middle" fill="black" font-family="Helvetica"></text>
|
|
||||||
</g>
|
|
||||||
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '1' } ) );" id="d5">
|
|
||||||
<circle cx="0" cy="0" r="18.333333333333332" fill="red" x="0" y="0" />
|
|
||||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">4</text>
|
|
||||||
</g>
|
|
||||||
<g id="d6">
|
|
||||||
<circle cx="30" cy="27.5" r="15" fill="url(#grad2)" filter="url(#drop-shadow)" />
|
|
||||||
<use xlink:href="#d4" x="137.0" y="45.666666666666664" />
|
|
||||||
<use xlink:href="#d5" x="137.0" y="27.5" />
|
|
||||||
</g>
|
|
||||||
<g id="effects">
|
|
||||||
<path d="M10,80 L264,80" stroke="black" stroke-width="1" />
|
|
||||||
<use xlink:href="#d3" x="0" y="0" />
|
|
||||||
<use xlink:href="#d6" x="0" y="80" />
|
|
||||||
</g>
|
|
||||||
<path d="M-2.9999999999999982,-2.0 L-29.6295824562643,-21.347524157501468 L-19.45798706418925,-52.652475842498525 L13.45798706418924,-52.65247584249853 L23.629582456264302,-21.34752415750148 Z" stroke-width="2" id="d7" />
|
|
||||||
<text x="-3" y="-20" font-size="28px" font-weight="bold" font-family="Helvetica" text-anchor="middle" id="d8">3</text>
|
|
||||||
<g id="champion_shield">
|
|
||||||
<use xlink:href="#d7" x="0" y="0" fill="black" stroke="lightgrey" />
|
|
||||||
<rect x="-28" y="-72" width="49" height="17" fill="black" stroke="lightgrey" stroke-width="2" />
|
|
||||||
<text x="-3" y="-59" font-size="12px" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">Garde</text>
|
|
||||||
<use xlink:href="#d8" x="0" y="0" fill="white" />
|
|
||||||
</g>
|
|
||||||
</defs>
|
</defs>
|
||||||
<use xlink:href="#drop-shadow" />
|
<use xlink:href="#drop-shadow" />
|
||||||
<g id="background">
|
<g id="background">
|
||||||
@@ -68,10 +23,53 @@
|
|||||||
<text x="149.0" y="36" font-size="19" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">myros, guild mage</text>
|
<text x="149.0" y="36" font-size="19" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">myros, guild mage</text>
|
||||||
<text x="149.0" y="53" font-size="13" text-anchor="middle" fill="black" font-family="Helvetica">Champion</text>
|
<text x="149.0" y="53" font-size="13" text-anchor="middle" fill="black" font-family="Helvetica">Champion</text>
|
||||||
</g>
|
</g>
|
||||||
<use xlink:href="#faction_icon" x="36" y="37" />
|
<g transform="translate(36,37)">
|
||||||
<use xlink:href="#d0" x="260" y="36" />
|
<g id="faction_icon">
|
||||||
|
<circle cx="1" cy="1" r="20" fill="black" filter="url(#drop-shadow)" />
|
||||||
|
<circle cx="0" cy="0" r="20" fill="url(#grad2)" />
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(260,36)">
|
||||||
|
<g class="svg_resource_icon" onclick="console.warn('unknown interaction')">
|
||||||
|
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
||||||
|
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">5</text>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
<rect x="0" y="65" width="298" height="200" />
|
<rect x="0" y="65" width="298" height="200" />
|
||||||
<image x="0" y="65" width="298" height="200" xlink:href="../../img/missing.png" />
|
<image x="0" y="65" width="298" height="200" xlink:href="../../img/missing.png" />
|
||||||
<use xlink:href="#effects" x="12" y="265" />
|
<g transform="translate(12,265)">
|
||||||
<use xlink:href="#champion_shield" x="268" y="417" />
|
<path d="M10,80 L264,80" stroke="black" stroke-width="1" />
|
||||||
|
<g>
|
||||||
|
<circle cx="30" cy="40.0" r="15" fill="gray" filter="url(#drop-shadow)" />
|
||||||
|
<g transform="translate(137.0,70.66666666666667)">
|
||||||
|
<text x="0" y="-0.0" font-size="13.333333333333334" text-anchor="middle" fill="black" font-family="Helvetica"></text>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(137.0,40.0)" v-bind:class="{used:used_effects_indexes.includes(0)}">
|
||||||
|
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '0' } ) );">
|
||||||
|
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
||||||
|
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">3</text>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(0,80)">
|
||||||
|
<g>
|
||||||
|
<circle cx="30" cy="27.5" r="15" fill="url(#grad2)" filter="url(#drop-shadow)" />
|
||||||
|
<g transform="translate(137.0,45.666666666666664)">
|
||||||
|
<text x="0" y="-0.0" font-size="11" text-anchor="middle" fill="black" font-family="Helvetica"></text>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(137.0,27.5)" v-bind:class="{used:used_effects_indexes.includes(1)}">
|
||||||
|
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '1' } ) );">
|
||||||
|
<circle cx="0" cy="0" r="18.333333333333332" fill="red" x="0" y="0" />
|
||||||
|
<text x="0" y="9" font-size="24" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">4</text>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(268,417)">
|
||||||
|
<path d="M-2.9999999999999982,-2.0 L-29.6295824562643,-21.347524157501468 L-19.45798706418925,-52.652475842498525 L13.45798706418924,-52.65247584249853 L23.629582456264302,-21.34752415750148 Z" fill="black" stroke="lightgrey" stroke-width="2" />
|
||||||
|
<rect x="-28" y="-72" width="49" height="17" fill="black" stroke="lightgrey" stroke-width="2" />
|
||||||
|
<text x="-3" y="-59" font-size="12px" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">Garde</text>
|
||||||
|
<text x="-3" y="-20" font-size="28px" font-weight="bold" font-family="Helvetica" text-anchor="middle" fill="white">3</text>
|
||||||
|
</g>
|
||||||
</svg>
|
</svg>
|
||||||
|
Before Width: | Height: | Size: 4.1 KiB After Width: | Height: | Size: 4.0 KiB |
@@ -1,6 +1,6 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||||
width="298" height="417" viewBox="0 0 298 417" id="card23">
|
width="298" height="417" viewBox="0 0 298 417" id="card23" class="card" xmlns:v-bind="https://heron.legonzaur.fr">
|
||||||
<defs>
|
<defs>
|
||||||
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
||||||
<stop offset="0" stop-color="blue" stop-opacity="1" />
|
<stop offset="0" stop-color="blue" stop-opacity="1" />
|
||||||
@@ -13,46 +13,6 @@
|
|||||||
<filter id="drop-shadow">
|
<filter id="drop-shadow">
|
||||||
<feDropShadow dx="1" dy="1" stdDeviation="0"></feDropShadow>
|
<feDropShadow dx="1" dy="1" stdDeviation="0"></feDropShadow>
|
||||||
</filter>
|
</filter>
|
||||||
<g id="faction_icon">
|
|
||||||
<circle cx="1" cy="1" r="20" fill="black" filter="url(#drop-shadow)" />
|
|
||||||
<circle cx="0" cy="0" r="20" fill="url(#grad2)" />
|
|
||||||
</g>
|
|
||||||
<g class="svg_resource_icon" onclick="console.warn('unknown interaction')" id="d0">
|
|
||||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
|
||||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">5</text>
|
|
||||||
</g>
|
|
||||||
<g id="d1">
|
|
||||||
<text x="0" y="-0.0" font-size="13.333333333333334" text-anchor="middle" fill="black" font-family="Helvetica"></text>
|
|
||||||
</g>
|
|
||||||
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '0' } ) );" id="d2">
|
|
||||||
<circle cx="0" cy="0" r="20" fill="red" x="0" y="0" />
|
|
||||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">3</text>
|
|
||||||
</g>
|
|
||||||
<g id="d3">
|
|
||||||
<circle cx="30" cy="40.0" r="15" fill="gray" filter="url(#drop-shadow)" />
|
|
||||||
<use xlink:href="#d1" x="137.0" y="70.66666666666667" />
|
|
||||||
<use xlink:href="#d2" x="137.0" y="40.0" />
|
|
||||||
</g>
|
|
||||||
<g id="d4">
|
|
||||||
<text x="0" y="-0.0" font-size="14" text-anchor="middle" fill="black" font-family="Helvetica">Piochez une carte.</text>
|
|
||||||
</g>
|
|
||||||
<g id="d5">
|
|
||||||
<circle cx="30" cy="27.5" r="15" fill="url(#grad2)" filter="url(#drop-shadow)" />
|
|
||||||
<use xlink:href="#d4" x="137.0" y="31.0" />
|
|
||||||
</g>
|
|
||||||
<g id="effects">
|
|
||||||
<path d="M10,80 L264,80" stroke="black" stroke-width="1" />
|
|
||||||
<use xlink:href="#d3" x="0" y="0" />
|
|
||||||
<use xlink:href="#d5" x="0" y="80" />
|
|
||||||
</g>
|
|
||||||
<path d="M-2.9999999999999982,-2.0 L-29.6295824562643,-21.347524157501468 L-19.45798706418925,-52.652475842498525 L13.45798706418924,-52.65247584249853 L23.629582456264302,-21.34752415750148 Z" stroke-width="2" id="d6" />
|
|
||||||
<text x="-3" y="-20" font-size="28px" font-weight="bold" font-family="Helvetica" text-anchor="middle" id="d7">5</text>
|
|
||||||
<g id="champion_shield">
|
|
||||||
<use xlink:href="#d6" x="0" y="0" fill="black" stroke="lightgrey" />
|
|
||||||
<rect x="-28" y="-72" width="49" height="17" fill="black" stroke="lightgrey" stroke-width="2" />
|
|
||||||
<text x="-3" y="-59" font-size="12px" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">Garde</text>
|
|
||||||
<use xlink:href="#d7" x="0" y="0" fill="white" />
|
|
||||||
</g>
|
|
||||||
</defs>
|
</defs>
|
||||||
<use xlink:href="#drop-shadow" />
|
<use xlink:href="#drop-shadow" />
|
||||||
<g id="background">
|
<g id="background">
|
||||||
@@ -63,10 +23,47 @@
|
|||||||
<text x="149.0" y="36" font-size="19" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">parov, the enforcer</text>
|
<text x="149.0" y="36" font-size="19" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">parov, the enforcer</text>
|
||||||
<text x="149.0" y="53" font-size="13" text-anchor="middle" fill="black" font-family="Helvetica">Champion</text>
|
<text x="149.0" y="53" font-size="13" text-anchor="middle" fill="black" font-family="Helvetica">Champion</text>
|
||||||
</g>
|
</g>
|
||||||
<use xlink:href="#faction_icon" x="36" y="37" />
|
<g transform="translate(36,37)">
|
||||||
<use xlink:href="#d0" x="260" y="36" />
|
<g id="faction_icon">
|
||||||
|
<circle cx="1" cy="1" r="20" fill="black" filter="url(#drop-shadow)" />
|
||||||
|
<circle cx="0" cy="0" r="20" fill="url(#grad2)" />
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(260,36)">
|
||||||
|
<g class="svg_resource_icon" onclick="console.warn('unknown interaction')">
|
||||||
|
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
||||||
|
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">5</text>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
<rect x="0" y="65" width="298" height="200" />
|
<rect x="0" y="65" width="298" height="200" />
|
||||||
<image x="0" y="65" width="298" height="200" xlink:href="../../img/missing.png" />
|
<image x="0" y="65" width="298" height="200" xlink:href="../../img/missing.png" />
|
||||||
<use xlink:href="#effects" x="12" y="265" />
|
<g transform="translate(12,265)">
|
||||||
<use xlink:href="#champion_shield" x="268" y="417" />
|
<path d="M10,80 L264,80" stroke="black" stroke-width="1" />
|
||||||
|
<g>
|
||||||
|
<circle cx="30" cy="40.0" r="15" fill="gray" filter="url(#drop-shadow)" />
|
||||||
|
<g transform="translate(137.0,70.66666666666667)">
|
||||||
|
<text x="0" y="-0.0" font-size="13.333333333333334" text-anchor="middle" fill="black" font-family="Helvetica"></text>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(137.0,40.0)" v-bind:class="{used:used_effects_indexes.includes(0)}">
|
||||||
|
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '0' } ) );">
|
||||||
|
<circle cx="0" cy="0" r="20" fill="red" x="0" y="0" />
|
||||||
|
<text x="0" y="9" font-size="24" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">3</text>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(0,80)">
|
||||||
|
<g>
|
||||||
|
<circle cx="30" cy="27.5" r="15" fill="url(#grad2)" filter="url(#drop-shadow)" />
|
||||||
|
<g transform="translate(137.0,31.0)">
|
||||||
|
<text x="0" y="-0.0" font-size="14" text-anchor="middle" fill="black" font-family="Helvetica">Piochez une carte.</text>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(268,417)">
|
||||||
|
<path d="M-2.9999999999999982,-2.0 L-29.6295824562643,-21.347524157501468 L-19.45798706418925,-52.652475842498525 L13.45798706418924,-52.65247584249853 L23.629582456264302,-21.34752415750148 Z" fill="black" stroke="lightgrey" stroke-width="2" />
|
||||||
|
<rect x="-28" y="-72" width="49" height="17" fill="black" stroke="lightgrey" stroke-width="2" />
|
||||||
|
<text x="-3" y="-59" font-size="12px" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">Garde</text>
|
||||||
|
<text x="-3" y="-20" font-size="28px" font-weight="bold" font-family="Helvetica" text-anchor="middle" fill="white">5</text>
|
||||||
|
</g>
|
||||||
</svg>
|
</svg>
|
||||||
|
Before Width: | Height: | Size: 3.7 KiB After Width: | Height: | Size: 3.6 KiB |
@@ -1,6 +1,6 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||||
width="298" height="417" viewBox="0 0 298 417" id="card24">
|
width="298" height="417" viewBox="0 0 298 417" id="card24" class="card" xmlns:v-bind="https://heron.legonzaur.fr">
|
||||||
<defs>
|
<defs>
|
||||||
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
||||||
<stop offset="0" stop-color="blue" stop-opacity="1" />
|
<stop offset="0" stop-color="blue" stop-opacity="1" />
|
||||||
@@ -13,42 +13,6 @@
|
|||||||
<filter id="drop-shadow">
|
<filter id="drop-shadow">
|
||||||
<feDropShadow dx="1" dy="1" stdDeviation="0"></feDropShadow>
|
<feDropShadow dx="1" dy="1" stdDeviation="0"></feDropShadow>
|
||||||
</filter>
|
</filter>
|
||||||
<g id="faction_icon">
|
|
||||||
<circle cx="1" cy="1" r="20" fill="black" filter="url(#drop-shadow)" />
|
|
||||||
<circle cx="0" cy="0" r="20" fill="url(#grad2)" />
|
|
||||||
</g>
|
|
||||||
<g class="svg_resource_icon" onclick="console.warn('unknown interaction')" id="d0">
|
|
||||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
|
||||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">1</text>
|
|
||||||
</g>
|
|
||||||
<g id="d1">
|
|
||||||
<text x="0" y="-0.0" font-size="13.333333333333334" text-anchor="middle" fill="black" font-family="Helvetica"></text>
|
|
||||||
</g>
|
|
||||||
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '0' } ) );" id="d2">
|
|
||||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
|
||||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">2</text>
|
|
||||||
</g>
|
|
||||||
<g id="d3">
|
|
||||||
<use xlink:href="#d1" x="137.0" y="70.66666666666667" />
|
|
||||||
<use xlink:href="#d2" x="137.0" y="40.0" />
|
|
||||||
</g>
|
|
||||||
<g id="d4">
|
|
||||||
<text x="0" y="-0.0" font-size="11" text-anchor="middle" fill="black" font-family="Helvetica"></text>
|
|
||||||
</g>
|
|
||||||
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '1' } ) );" id="d5">
|
|
||||||
<circle cx="0" cy="0" r="18.333333333333332" fill="red" x="0" y="0" />
|
|
||||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">4</text>
|
|
||||||
</g>
|
|
||||||
<g id="d6">
|
|
||||||
<circle cx="30" cy="27.5" r="15" fill="url(#grad2)" filter="url(#drop-shadow)" />
|
|
||||||
<use xlink:href="#d4" x="137.0" y="45.666666666666664" />
|
|
||||||
<use xlink:href="#d5" x="137.0" y="27.5" />
|
|
||||||
</g>
|
|
||||||
<g id="effects">
|
|
||||||
<path d="M10,80 L264,80" stroke="black" stroke-width="1" />
|
|
||||||
<use xlink:href="#d3" x="0" y="0" />
|
|
||||||
<use xlink:href="#d6" x="0" y="80" />
|
|
||||||
</g>
|
|
||||||
</defs>
|
</defs>
|
||||||
<use xlink:href="#drop-shadow" />
|
<use xlink:href="#drop-shadow" />
|
||||||
<g id="background">
|
<g id="background">
|
||||||
@@ -59,9 +23,46 @@
|
|||||||
<text x="149.0" y="36" font-size="19" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">profit</text>
|
<text x="149.0" y="36" font-size="19" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">profit</text>
|
||||||
<text x="149.0" y="53" font-size="13" text-anchor="middle" fill="black" font-family="Helvetica">Action</text>
|
<text x="149.0" y="53" font-size="13" text-anchor="middle" fill="black" font-family="Helvetica">Action</text>
|
||||||
</g>
|
</g>
|
||||||
<use xlink:href="#faction_icon" x="36" y="37" />
|
<g transform="translate(36,37)">
|
||||||
<use xlink:href="#d0" x="260" y="36" />
|
<g id="faction_icon">
|
||||||
|
<circle cx="1" cy="1" r="20" fill="black" filter="url(#drop-shadow)" />
|
||||||
|
<circle cx="0" cy="0" r="20" fill="url(#grad2)" />
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(260,36)">
|
||||||
|
<g class="svg_resource_icon" onclick="console.warn('unknown interaction')">
|
||||||
|
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
||||||
|
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">1</text>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
<rect x="0" y="65" width="298" height="200" />
|
<rect x="0" y="65" width="298" height="200" />
|
||||||
<image x="0" y="65" width="298" height="200" xlink:href="../../img/missing.png" />
|
<image x="0" y="65" width="298" height="200" xlink:href="../../img/missing.png" />
|
||||||
<use xlink:href="#effects" x="12" y="265" />
|
<g transform="translate(12,265)">
|
||||||
|
<path d="M10,80 L264,80" stroke="black" stroke-width="1" />
|
||||||
|
<g>
|
||||||
|
<g transform="translate(137.0,70.66666666666667)">
|
||||||
|
<text x="0" y="-0.0" font-size="13.333333333333334" text-anchor="middle" fill="black" font-family="Helvetica"></text>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(137.0,40.0)" v-bind:class="{used:used_effects_indexes.includes(0)}">
|
||||||
|
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '0' } ) );">
|
||||||
|
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
||||||
|
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">2</text>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(0,80)">
|
||||||
|
<g>
|
||||||
|
<circle cx="30" cy="27.5" r="15" fill="url(#grad2)" filter="url(#drop-shadow)" />
|
||||||
|
<g transform="translate(137.0,45.666666666666664)">
|
||||||
|
<text x="0" y="-0.0" font-size="11" text-anchor="middle" fill="black" font-family="Helvetica"></text>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(137.0,27.5)" v-bind:class="{used:used_effects_indexes.includes(1)}">
|
||||||
|
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '1' } ) );">
|
||||||
|
<circle cx="0" cy="0" r="18.333333333333332" fill="red" x="0" y="0" />
|
||||||
|
<text x="0" y="9" font-size="24" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">4</text>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
</svg>
|
</svg>
|
||||||
|
Before Width: | Height: | Size: 3.3 KiB After Width: | Height: | Size: 3.3 KiB |
@@ -1,6 +1,6 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||||
width="298" height="417" viewBox="0 0 298 417" id="card25">
|
width="298" height="417" viewBox="0 0 298 417" id="card25" class="card" xmlns:v-bind="https://heron.legonzaur.fr">
|
||||||
<defs>
|
<defs>
|
||||||
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
||||||
<stop offset="0" stop-color="blue" stop-opacity="1" />
|
<stop offset="0" stop-color="blue" stop-opacity="1" />
|
||||||
@@ -13,35 +13,6 @@
|
|||||||
<filter id="drop-shadow">
|
<filter id="drop-shadow">
|
||||||
<feDropShadow dx="1" dy="1" stdDeviation="0"></feDropShadow>
|
<feDropShadow dx="1" dy="1" stdDeviation="0"></feDropShadow>
|
||||||
</filter>
|
</filter>
|
||||||
<g id="faction_icon">
|
|
||||||
<circle cx="1" cy="1" r="20" fill="black" filter="url(#drop-shadow)" />
|
|
||||||
<circle cx="0" cy="0" r="20" fill="url(#grad2)" />
|
|
||||||
</g>
|
|
||||||
<g class="svg_resource_icon" onclick="console.warn('unknown interaction')" id="d0">
|
|
||||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
|
||||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">7</text>
|
|
||||||
</g>
|
|
||||||
<g id="d1">
|
|
||||||
<text x="0" y="-0.0" font-size="14" text-anchor="middle" fill="black" font-family="Helvetica">Assomez le champion ciblé.</text>
|
|
||||||
</g>
|
|
||||||
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '0' } ) );" id="d2">
|
|
||||||
<circle cx="0" cy="0" r="20" fill="red" x="0" y="0" />
|
|
||||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">4</text>
|
|
||||||
</g>
|
|
||||||
<g id="d3">
|
|
||||||
<circle cx="30" cy="67.5" r="15" fill="gray" filter="url(#drop-shadow)" />
|
|
||||||
<use xlink:href="#d1" x="137.0" y="101.5" />
|
|
||||||
<use xlink:href="#d2" x="137.0" y="60.5" />
|
|
||||||
</g>
|
|
||||||
<g id="effects">
|
|
||||||
<use xlink:href="#d3" x="0" y="0" />
|
|
||||||
</g>
|
|
||||||
<path d="M-2.9999999999999982,-2.0 L-29.6295824562643,-21.347524157501468 L-19.45798706418925,-52.652475842498525 L13.45798706418924,-52.65247584249853 L23.629582456264302,-21.34752415750148 Z" stroke-width="2" id="d4" />
|
|
||||||
<text x="-3" y="-20" font-size="28px" font-weight="bold" font-family="Helvetica" text-anchor="middle" id="d5">7</text>
|
|
||||||
<g id="champion_shield">
|
|
||||||
<use xlink:href="#d4" x="0" y="0" fill="darkgrey" stroke="#eee" />
|
|
||||||
<use xlink:href="#d5" x="0" y="0" fill="black" />
|
|
||||||
</g>
|
|
||||||
</defs>
|
</defs>
|
||||||
<use xlink:href="#drop-shadow" />
|
<use xlink:href="#drop-shadow" />
|
||||||
<g id="background">
|
<g id="background">
|
||||||
@@ -52,10 +23,36 @@
|
|||||||
<text x="149.0" y="36" font-size="16" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">rake, master assassin</text>
|
<text x="149.0" y="36" font-size="16" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">rake, master assassin</text>
|
||||||
<text x="149.0" y="53" font-size="13" text-anchor="middle" fill="black" font-family="Helvetica">Champion</text>
|
<text x="149.0" y="53" font-size="13" text-anchor="middle" fill="black" font-family="Helvetica">Champion</text>
|
||||||
</g>
|
</g>
|
||||||
<use xlink:href="#faction_icon" x="36" y="37" />
|
<g transform="translate(36,37)">
|
||||||
<use xlink:href="#d0" x="260" y="36" />
|
<g id="faction_icon">
|
||||||
|
<circle cx="1" cy="1" r="20" fill="black" filter="url(#drop-shadow)" />
|
||||||
|
<circle cx="0" cy="0" r="20" fill="url(#grad2)" />
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(260,36)">
|
||||||
|
<g class="svg_resource_icon" onclick="console.warn('unknown interaction')">
|
||||||
|
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
||||||
|
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">7</text>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
<rect x="0" y="65" width="298" height="200" />
|
<rect x="0" y="65" width="298" height="200" />
|
||||||
<image x="0" y="65" width="298" height="200" xlink:href="../../img/missing.png" />
|
<image x="0" y="65" width="298" height="200" xlink:href="../../img/missing.png" />
|
||||||
<use xlink:href="#effects" x="12" y="265" />
|
<g transform="translate(12,265)">
|
||||||
<use xlink:href="#champion_shield" x="268" y="417" />
|
<g>
|
||||||
|
<circle cx="30" cy="67.5" r="15" fill="gray" filter="url(#drop-shadow)" />
|
||||||
|
<g transform="translate(137.0,101.5)">
|
||||||
|
<text x="0" y="-0.0" font-size="14" text-anchor="middle" fill="black" font-family="Helvetica">Assomez le champion ciblé.</text>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(137.0,60.5)" v-bind:class="{used:used_effects_indexes.includes(0)}">
|
||||||
|
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '0' } ) );">
|
||||||
|
<circle cx="0" cy="0" r="20" fill="red" x="0" y="0" />
|
||||||
|
<text x="0" y="9" font-size="24" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">4</text>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(268,417)">
|
||||||
|
<path d="M-2.9999999999999982,-2.0 L-29.6295824562643,-21.347524157501468 L-19.45798706418925,-52.652475842498525 L13.45798706418924,-52.65247584249853 L23.629582456264302,-21.34752415750148 Z" fill="darkgrey" stroke="#eee" stroke-width="2" />
|
||||||
|
<text x="-3" y="-20" font-size="28px" font-weight="bold" font-family="Helvetica" text-anchor="middle" fill="black">7</text>
|
||||||
|
</g>
|
||||||
</svg>
|
</svg>
|
||||||
|
Before Width: | Height: | Size: 3.1 KiB After Width: | Height: | Size: 3.0 KiB |
@@ -1,6 +1,6 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||||
width="298" height="417" viewBox="0 0 298 417" id="card26">
|
width="298" height="417" viewBox="0 0 298 417" id="card26" class="card" xmlns:v-bind="https://heron.legonzaur.fr">
|
||||||
<defs>
|
<defs>
|
||||||
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
||||||
<stop offset="0" stop-color="blue" stop-opacity="1" />
|
<stop offset="0" stop-color="blue" stop-opacity="1" />
|
||||||
@@ -13,44 +13,6 @@
|
|||||||
<filter id="drop-shadow">
|
<filter id="drop-shadow">
|
||||||
<feDropShadow dx="1" dy="1" stdDeviation="0"></feDropShadow>
|
<feDropShadow dx="1" dy="1" stdDeviation="0"></feDropShadow>
|
||||||
</filter>
|
</filter>
|
||||||
<g id="faction_icon">
|
|
||||||
<circle cx="1" cy="1" r="20" fill="black" filter="url(#drop-shadow)" />
|
|
||||||
<circle cx="0" cy="0" r="20" fill="url(#grad2)" />
|
|
||||||
</g>
|
|
||||||
<g class="svg_resource_icon" onclick="console.warn('unknown interaction')" id="d0">
|
|
||||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
|
||||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">4</text>
|
|
||||||
</g>
|
|
||||||
<g id="d1">
|
|
||||||
<text x="0" y="-0.0" font-size="13.333333333333334" text-anchor="middle" fill="black" font-family="Helvetica"></text>
|
|
||||||
</g>
|
|
||||||
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '0' } ) );" id="d2">
|
|
||||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
|
||||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">2</text>
|
|
||||||
</g>
|
|
||||||
<g id="d3">
|
|
||||||
<circle cx="30" cy="40.0" r="15" fill="gray" filter="url(#drop-shadow)" />
|
|
||||||
<use xlink:href="#d1" x="137.0" y="70.66666666666667" />
|
|
||||||
<use xlink:href="#d2" x="137.0" y="40.0" />
|
|
||||||
</g>
|
|
||||||
<g id="d4">
|
|
||||||
<text x="0" y="-11.0" font-size="11" text-anchor="middle" fill="black" font-family="Helvetica"><tspan x="0" dy="0em">Mettez la prochaine carte dont</tspan><tspan x="0" dy="1em">vous faites l'acquisition ce tour-ci</tspan><tspan x="0" dy="1em">au dessus de votre pioche.</tspan></text>
|
|
||||||
</g>
|
|
||||||
<g id="d5">
|
|
||||||
<circle cx="30" cy="27.5" r="15" fill="url(#grad2)" filter="url(#drop-shadow)" />
|
|
||||||
<use xlink:href="#d4" x="137.0" y="31.0" />
|
|
||||||
</g>
|
|
||||||
<g id="effects">
|
|
||||||
<path d="M10,80 L264,80" stroke="black" stroke-width="1" />
|
|
||||||
<use xlink:href="#d3" x="0" y="0" />
|
|
||||||
<use xlink:href="#d5" x="0" y="80" />
|
|
||||||
</g>
|
|
||||||
<path d="M-2.9999999999999982,-2.0 L-29.6295824562643,-21.347524157501468 L-19.45798706418925,-52.652475842498525 L13.45798706418924,-52.65247584249853 L23.629582456264302,-21.34752415750148 Z" stroke-width="2" id="d6" />
|
|
||||||
<text x="-3" y="-20" font-size="28px" font-weight="bold" font-family="Helvetica" text-anchor="middle" id="d7">5</text>
|
|
||||||
<g id="champion_shield">
|
|
||||||
<use xlink:href="#d6" x="0" y="0" fill="darkgrey" stroke="#eee" />
|
|
||||||
<use xlink:href="#d7" x="0" y="0" fill="black" />
|
|
||||||
</g>
|
|
||||||
</defs>
|
</defs>
|
||||||
<use xlink:href="#drop-shadow" />
|
<use xlink:href="#drop-shadow" />
|
||||||
<g id="background">
|
<g id="background">
|
||||||
@@ -61,10 +23,45 @@
|
|||||||
<text x="149.0" y="36" font-size="19" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">rasmus, the smuggler</text>
|
<text x="149.0" y="36" font-size="19" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">rasmus, the smuggler</text>
|
||||||
<text x="149.0" y="53" font-size="13" text-anchor="middle" fill="black" font-family="Helvetica">Champion</text>
|
<text x="149.0" y="53" font-size="13" text-anchor="middle" fill="black" font-family="Helvetica">Champion</text>
|
||||||
</g>
|
</g>
|
||||||
<use xlink:href="#faction_icon" x="36" y="37" />
|
<g transform="translate(36,37)">
|
||||||
<use xlink:href="#d0" x="260" y="36" />
|
<g id="faction_icon">
|
||||||
|
<circle cx="1" cy="1" r="20" fill="black" filter="url(#drop-shadow)" />
|
||||||
|
<circle cx="0" cy="0" r="20" fill="url(#grad2)" />
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(260,36)">
|
||||||
|
<g class="svg_resource_icon" onclick="console.warn('unknown interaction')">
|
||||||
|
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
||||||
|
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">4</text>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
<rect x="0" y="65" width="298" height="200" />
|
<rect x="0" y="65" width="298" height="200" />
|
||||||
<image x="0" y="65" width="298" height="200" xlink:href="../../img/missing.png" />
|
<image x="0" y="65" width="298" height="200" xlink:href="../../img/missing.png" />
|
||||||
<use xlink:href="#effects" x="12" y="265" />
|
<g transform="translate(12,265)">
|
||||||
<use xlink:href="#champion_shield" x="268" y="417" />
|
<path d="M10,80 L264,80" stroke="black" stroke-width="1" />
|
||||||
|
<g>
|
||||||
|
<circle cx="30" cy="40.0" r="15" fill="gray" filter="url(#drop-shadow)" />
|
||||||
|
<g transform="translate(137.0,70.66666666666667)">
|
||||||
|
<text x="0" y="-0.0" font-size="13.333333333333334" text-anchor="middle" fill="black" font-family="Helvetica"></text>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(137.0,40.0)" v-bind:class="{used:used_effects_indexes.includes(0)}">
|
||||||
|
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '0' } ) );">
|
||||||
|
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
||||||
|
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">2</text>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(0,80)">
|
||||||
|
<g>
|
||||||
|
<circle cx="30" cy="27.5" r="15" fill="url(#grad2)" filter="url(#drop-shadow)" />
|
||||||
|
<g transform="translate(137.0,31.0)">
|
||||||
|
<text x="0" y="-11.0" font-size="11" text-anchor="middle" fill="black" font-family="Helvetica"><tspan x="0" dy="0em">Mettez la prochaine carte dont</tspan><tspan x="0" dy="1em">vous faites l'acquisition ce tour-ci</tspan><tspan x="0" dy="1em">au dessus de votre pioche.</tspan></text>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(268,417)">
|
||||||
|
<path d="M-2.9999999999999982,-2.0 L-29.6295824562643,-21.347524157501468 L-19.45798706418925,-52.652475842498525 L13.45798706418924,-52.65247584249853 L23.629582456264302,-21.34752415750148 Z" fill="darkgrey" stroke="#eee" stroke-width="2" />
|
||||||
|
<text x="-3" y="-20" font-size="28px" font-weight="bold" font-family="Helvetica" text-anchor="middle" fill="black">5</text>
|
||||||
|
</g>
|
||||||
</svg>
|
</svg>
|
||||||
|
Before Width: | Height: | Size: 3.7 KiB After Width: | Height: | Size: 3.5 KiB |
@@ -1,6 +1,6 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||||
width="298" height="417" viewBox="0 0 298 417" id="card27">
|
width="298" height="417" viewBox="0 0 298 417" id="card27" class="card" xmlns:v-bind="https://heron.legonzaur.fr">
|
||||||
<defs>
|
<defs>
|
||||||
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
||||||
<stop offset="0" stop-color="blue" stop-opacity="1" />
|
<stop offset="0" stop-color="blue" stop-opacity="1" />
|
||||||
@@ -13,28 +13,6 @@
|
|||||||
<filter id="drop-shadow">
|
<filter id="drop-shadow">
|
||||||
<feDropShadow dx="1" dy="1" stdDeviation="0"></feDropShadow>
|
<feDropShadow dx="1" dy="1" stdDeviation="0"></feDropShadow>
|
||||||
</filter>
|
</filter>
|
||||||
<g id="faction_icon">
|
|
||||||
<circle cx="1" cy="1" r="20" fill="black" filter="url(#drop-shadow)" />
|
|
||||||
<circle cx="0" cy="0" r="20" fill="url(#grad2)" />
|
|
||||||
</g>
|
|
||||||
<g class="svg_resource_icon" onclick="console.warn('unknown interaction')" id="d0">
|
|
||||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
|
||||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">6</text>
|
|
||||||
</g>
|
|
||||||
<g id="d1">
|
|
||||||
<text x="0" y="-0.0" font-size="14" text-anchor="middle" fill="black" font-family="Helvetica">restack_discarded_card</text>
|
|
||||||
</g>
|
|
||||||
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '0' } ) );" id="d2">
|
|
||||||
<circle cx="0" cy="0" r="20" fill="red" x="0" y="0" />
|
|
||||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">6</text>
|
|
||||||
</g>
|
|
||||||
<g id="d3">
|
|
||||||
<use xlink:href="#d1" x="137.0" y="101.5" />
|
|
||||||
<use xlink:href="#d2" x="137.0" y="60.5" />
|
|
||||||
</g>
|
|
||||||
<g id="effects">
|
|
||||||
<use xlink:href="#d3" x="0" y="0" />
|
|
||||||
</g>
|
|
||||||
</defs>
|
</defs>
|
||||||
<use xlink:href="#drop-shadow" />
|
<use xlink:href="#drop-shadow" />
|
||||||
<g id="background">
|
<g id="background">
|
||||||
@@ -45,9 +23,31 @@
|
|||||||
<text x="149.0" y="36" font-size="19" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">smash and grab</text>
|
<text x="149.0" y="36" font-size="19" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">smash and grab</text>
|
||||||
<text x="149.0" y="53" font-size="13" text-anchor="middle" fill="black" font-family="Helvetica">Action</text>
|
<text x="149.0" y="53" font-size="13" text-anchor="middle" fill="black" font-family="Helvetica">Action</text>
|
||||||
</g>
|
</g>
|
||||||
<use xlink:href="#faction_icon" x="36" y="37" />
|
<g transform="translate(36,37)">
|
||||||
<use xlink:href="#d0" x="260" y="36" />
|
<g id="faction_icon">
|
||||||
|
<circle cx="1" cy="1" r="20" fill="black" filter="url(#drop-shadow)" />
|
||||||
|
<circle cx="0" cy="0" r="20" fill="url(#grad2)" />
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(260,36)">
|
||||||
|
<g class="svg_resource_icon" onclick="console.warn('unknown interaction')">
|
||||||
|
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
||||||
|
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">6</text>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
<rect x="0" y="65" width="298" height="200" />
|
<rect x="0" y="65" width="298" height="200" />
|
||||||
<image x="0" y="65" width="298" height="200" xlink:href="../../img/missing.png" />
|
<image x="0" y="65" width="298" height="200" xlink:href="../../img/missing.png" />
|
||||||
<use xlink:href="#effects" x="12" y="265" />
|
<g transform="translate(12,265)">
|
||||||
|
<g>
|
||||||
|
<g transform="translate(137.0,101.5)">
|
||||||
|
<text x="0" y="-0.0" font-size="14" text-anchor="middle" fill="black" font-family="Helvetica">restack_discarded_card</text>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(137.0,60.5)" v-bind:class="{used:used_effects_indexes.includes(0)}">
|
||||||
|
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '0' } ) );">
|
||||||
|
<circle cx="0" cy="0" r="20" fill="red" x="0" y="0" />
|
||||||
|
<text x="0" y="9" font-size="24" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">6</text>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
</svg>
|
</svg>
|
||||||
|
Before Width: | Height: | Size: 2.5 KiB After Width: | Height: | Size: 2.5 KiB |
@@ -1,6 +1,6 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||||
width="298" height="417" viewBox="0 0 298 417" id="card28">
|
width="298" height="417" viewBox="0 0 298 417" id="card28" class="card" xmlns:v-bind="https://heron.legonzaur.fr">
|
||||||
<defs>
|
<defs>
|
||||||
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
||||||
<stop offset="0" stop-color="blue" stop-opacity="1" />
|
<stop offset="0" stop-color="blue" stop-opacity="1" />
|
||||||
@@ -13,40 +13,6 @@
|
|||||||
<filter id="drop-shadow">
|
<filter id="drop-shadow">
|
||||||
<feDropShadow dx="1" dy="1" stdDeviation="0"></feDropShadow>
|
<feDropShadow dx="1" dy="1" stdDeviation="0"></feDropShadow>
|
||||||
</filter>
|
</filter>
|
||||||
<g id="faction_icon">
|
|
||||||
<circle cx="1" cy="1" r="20" fill="black" filter="url(#drop-shadow)" />
|
|
||||||
<circle cx="0" cy="0" r="20" fill="url(#grad2)" />
|
|
||||||
</g>
|
|
||||||
<g class="svg_resource_icon" onclick="console.warn('unknown interaction')" id="d0">
|
|
||||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
|
||||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">3</text>
|
|
||||||
</g>
|
|
||||||
<g id="d1">
|
|
||||||
<text x="0" y="-0.0" font-size="14" text-anchor="middle" fill="black" font-family="Helvetica"></text>
|
|
||||||
</g>
|
|
||||||
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '0' } ) );" id="d2">
|
|
||||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
|
||||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">1</text>
|
|
||||||
</g>
|
|
||||||
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '1' } ) );" id="d3">
|
|
||||||
<circle cx="0" cy="0" r="20" fill="red" x="0" y="0" />
|
|
||||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">2</text>
|
|
||||||
</g>
|
|
||||||
<g id="d4">
|
|
||||||
<circle cx="30" cy="67.5" r="15" fill="gray" filter="url(#drop-shadow)" />
|
|
||||||
<use xlink:href="#d1" x="137.0" y="101.5" />
|
|
||||||
<use xlink:href="#d2" x="107.0" y="67.5" />
|
|
||||||
<use xlink:href="#d3" x="167.0" y="67.5" />
|
|
||||||
</g>
|
|
||||||
<g id="effects">
|
|
||||||
<use xlink:href="#d4" x="0" y="0" />
|
|
||||||
</g>
|
|
||||||
<path d="M-2.9999999999999982,-2.0 L-29.6295824562643,-21.347524157501468 L-19.45798706418925,-52.652475842498525 L13.45798706418924,-52.65247584249853 L23.629582456264302,-21.34752415750148 Z" stroke-width="2" id="d5" />
|
|
||||||
<text x="-3" y="-20" font-size="28px" font-weight="bold" font-family="Helvetica" text-anchor="middle" id="d6">4</text>
|
|
||||||
<g id="champion_shield">
|
|
||||||
<use xlink:href="#d5" x="0" y="0" fill="darkgrey" stroke="#eee" />
|
|
||||||
<use xlink:href="#d6" x="0" y="0" fill="black" />
|
|
||||||
</g>
|
|
||||||
</defs>
|
</defs>
|
||||||
<use xlink:href="#drop-shadow" />
|
<use xlink:href="#drop-shadow" />
|
||||||
<g id="background">
|
<g id="background">
|
||||||
@@ -57,10 +23,42 @@
|
|||||||
<text x="149.0" y="36" font-size="19" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">Street Thug</text>
|
<text x="149.0" y="36" font-size="19" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">Street Thug</text>
|
||||||
<text x="149.0" y="53" font-size="13" text-anchor="middle" fill="black" font-family="Helvetica">Champion</text>
|
<text x="149.0" y="53" font-size="13" text-anchor="middle" fill="black" font-family="Helvetica">Champion</text>
|
||||||
</g>
|
</g>
|
||||||
<use xlink:href="#faction_icon" x="36" y="37" />
|
<g transform="translate(36,37)">
|
||||||
<use xlink:href="#d0" x="260" y="36" />
|
<g id="faction_icon">
|
||||||
|
<circle cx="1" cy="1" r="20" fill="black" filter="url(#drop-shadow)" />
|
||||||
|
<circle cx="0" cy="0" r="20" fill="url(#grad2)" />
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(260,36)">
|
||||||
|
<g class="svg_resource_icon" onclick="console.warn('unknown interaction')">
|
||||||
|
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
||||||
|
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">3</text>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
<rect x="0" y="65" width="298" height="200" />
|
<rect x="0" y="65" width="298" height="200" />
|
||||||
<image x="0" y="65" width="298" height="200" xlink:href="../../img/missing.png" />
|
<image x="0" y="65" width="298" height="200" xlink:href="../../img/missing.png" />
|
||||||
<use xlink:href="#effects" x="12" y="265" />
|
<g transform="translate(12,265)">
|
||||||
<use xlink:href="#champion_shield" x="268" y="417" />
|
<g>
|
||||||
|
<circle cx="30" cy="67.5" r="15" fill="gray" filter="url(#drop-shadow)" />
|
||||||
|
<g transform="translate(137.0,101.5)">
|
||||||
|
<text x="0" y="-0.0" font-size="14" text-anchor="middle" fill="black" font-family="Helvetica"></text>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(107.0,67.5)" v-bind:class="{used:used_effects_indexes.includes(0)}">
|
||||||
|
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '0' } ) );">
|
||||||
|
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
||||||
|
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">1</text>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(167.0,67.5)" v-bind:class="{used:used_effects_indexes.includes(1)}">
|
||||||
|
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '1' } ) );">
|
||||||
|
<circle cx="0" cy="0" r="20" fill="red" x="0" y="0" />
|
||||||
|
<text x="0" y="9" font-size="24" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">2</text>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(268,417)">
|
||||||
|
<path d="M-2.9999999999999982,-2.0 L-29.6295824562643,-21.347524157501468 L-19.45798706418925,-52.652475842498525 L13.45798706418924,-52.65247584249853 L23.629582456264302,-21.34752415750148 Z" fill="darkgrey" stroke="#eee" stroke-width="2" />
|
||||||
|
<text x="-3" y="-20" font-size="28px" font-weight="bold" font-family="Helvetica" text-anchor="middle" fill="black">4</text>
|
||||||
|
</g>
|
||||||
</svg>
|
</svg>
|
||||||
|
Before Width: | Height: | Size: 3.5 KiB After Width: | Height: | Size: 3.4 KiB |
@@ -1,6 +1,6 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||||
width="298" height="417" viewBox="0 0 298 417" id="card29">
|
width="298" height="417" viewBox="0 0 298 417" id="card29" class="card" xmlns:v-bind="https://heron.legonzaur.fr">
|
||||||
<defs>
|
<defs>
|
||||||
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
||||||
<stop offset="0" stop-color="red" stop-opacity="1" />
|
<stop offset="0" stop-color="red" stop-opacity="1" />
|
||||||
@@ -13,54 +13,6 @@
|
|||||||
<filter id="drop-shadow">
|
<filter id="drop-shadow">
|
||||||
<feDropShadow dx="1" dy="1" stdDeviation="0"></feDropShadow>
|
<feDropShadow dx="1" dy="1" stdDeviation="0"></feDropShadow>
|
||||||
</filter>
|
</filter>
|
||||||
<g id="faction_icon">
|
|
||||||
<circle cx="1" cy="1" r="20" fill="black" filter="url(#drop-shadow)" />
|
|
||||||
<circle cx="0" cy="0" r="20" fill="url(#grad2)" />
|
|
||||||
</g>
|
|
||||||
<g class="svg_resource_icon" onclick="console.warn('unknown interaction')" id="d0">
|
|
||||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
|
||||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">3</text>
|
|
||||||
</g>
|
|
||||||
<g id="d1">
|
|
||||||
<text x="0" y="-0.0" font-size="13.333333333333334" text-anchor="middle" fill="black" font-family="Helvetica"></text>
|
|
||||||
</g>
|
|
||||||
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '0' } ) );" id="d2">
|
|
||||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
|
||||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">1</text>
|
|
||||||
</g>
|
|
||||||
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '1' } ) );" id="d3">
|
|
||||||
<circle cx="0" cy="0" r="20" fill="red" x="0" y="0" />
|
|
||||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">1</text>
|
|
||||||
</g>
|
|
||||||
<g id="d4">
|
|
||||||
<circle cx="30" cy="40.0" r="15" fill="gray" filter="url(#drop-shadow)" />
|
|
||||||
<use xlink:href="#d1" x="137.0" y="70.66666666666667" />
|
|
||||||
<use xlink:href="#d2" x="107.0" y="40.0" />
|
|
||||||
<use xlink:href="#d3" x="167.0" y="40.0" />
|
|
||||||
</g>
|
|
||||||
<g id="d5">
|
|
||||||
<text x="0" y="-0.0" font-size="11" text-anchor="middle" fill="black" font-family="Helvetica"></text>
|
|
||||||
</g>
|
|
||||||
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '2' } ) );" id="d6">
|
|
||||||
<circle cx="0" cy="0" r="18.333333333333332" fill="red" x="0" y="0" />
|
|
||||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">4</text>
|
|
||||||
</g>
|
|
||||||
<g id="d7">
|
|
||||||
<circle cx="30" cy="27.5" r="15" fill="url(#grad2)" filter="url(#drop-shadow)" />
|
|
||||||
<use xlink:href="#d5" x="137.0" y="45.666666666666664" />
|
|
||||||
<use xlink:href="#d6" x="137.0" y="27.5" />
|
|
||||||
</g>
|
|
||||||
<g id="effects">
|
|
||||||
<path d="M10,80 L264,80" stroke="black" stroke-width="1" />
|
|
||||||
<use xlink:href="#d4" x="0" y="0" />
|
|
||||||
<use xlink:href="#d7" x="0" y="80" />
|
|
||||||
</g>
|
|
||||||
<path d="M-2.9999999999999982,-2.0 L-29.6295824562643,-21.347524157501468 L-19.45798706418925,-52.652475842498525 L13.45798706418924,-52.65247584249853 L23.629582456264302,-21.34752415750148 Z" stroke-width="2" id="d8" />
|
|
||||||
<text x="-3" y="-20" font-size="28px" font-weight="bold" font-family="Helvetica" text-anchor="middle" id="d9">4</text>
|
|
||||||
<g id="champion_shield">
|
|
||||||
<use xlink:href="#d8" x="0" y="0" fill="darkgrey" stroke="#eee" />
|
|
||||||
<use xlink:href="#d9" x="0" y="0" fill="black" />
|
|
||||||
</g>
|
|
||||||
</defs>
|
</defs>
|
||||||
<use xlink:href="#drop-shadow" />
|
<use xlink:href="#drop-shadow" />
|
||||||
<g id="background">
|
<g id="background">
|
||||||
@@ -71,10 +23,57 @@
|
|||||||
<text x="149.0" y="36" font-size="19" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">Ass Priest</text>
|
<text x="149.0" y="36" font-size="19" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">Ass Priest</text>
|
||||||
<text x="149.0" y="53" font-size="13" text-anchor="middle" fill="black" font-family="Helvetica">Champion</text>
|
<text x="149.0" y="53" font-size="13" text-anchor="middle" fill="black" font-family="Helvetica">Champion</text>
|
||||||
</g>
|
</g>
|
||||||
<use xlink:href="#faction_icon" x="36" y="37" />
|
<g transform="translate(36,37)">
|
||||||
<use xlink:href="#d0" x="260" y="36" />
|
<g id="faction_icon">
|
||||||
|
<circle cx="1" cy="1" r="20" fill="black" filter="url(#drop-shadow)" />
|
||||||
|
<circle cx="0" cy="0" r="20" fill="url(#grad2)" />
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(260,36)">
|
||||||
|
<g class="svg_resource_icon" onclick="console.warn('unknown interaction')">
|
||||||
|
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
||||||
|
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">3</text>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
<rect x="0" y="65" width="298" height="200" />
|
<rect x="0" y="65" width="298" height="200" />
|
||||||
<image x="0" y="65" width="298" height="200" xlink:href="../../img/missing.png" />
|
<image x="0" y="65" width="298" height="200" xlink:href="../../img/missing.png" />
|
||||||
<use xlink:href="#effects" x="12" y="265" />
|
<g transform="translate(12,265)">
|
||||||
<use xlink:href="#champion_shield" x="268" y="417" />
|
<path d="M10,80 L264,80" stroke="black" stroke-width="1" />
|
||||||
|
<g>
|
||||||
|
<circle cx="30" cy="40.0" r="15" fill="gray" filter="url(#drop-shadow)" />
|
||||||
|
<g transform="translate(137.0,70.66666666666667)">
|
||||||
|
<text x="0" y="-0.0" font-size="13.333333333333334" text-anchor="middle" fill="black" font-family="Helvetica"></text>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(107.0,40.0)" v-bind:class="{used:used_effects_indexes.includes(0)}">
|
||||||
|
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '0' } ) );">
|
||||||
|
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
||||||
|
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">1</text>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(167.0,40.0)" v-bind:class="{used:used_effects_indexes.includes(1)}">
|
||||||
|
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '1' } ) );">
|
||||||
|
<circle cx="0" cy="0" r="20" fill="red" x="0" y="0" />
|
||||||
|
<text x="0" y="9" font-size="24" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">1</text>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(0,80)">
|
||||||
|
<g>
|
||||||
|
<circle cx="30" cy="27.5" r="15" fill="url(#grad2)" filter="url(#drop-shadow)" />
|
||||||
|
<g transform="translate(137.0,45.666666666666664)">
|
||||||
|
<text x="0" y="-0.0" font-size="11" text-anchor="middle" fill="black" font-family="Helvetica"></text>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(137.0,27.5)" v-bind:class="{used:used_effects_indexes.includes(2)}">
|
||||||
|
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '2' } ) );">
|
||||||
|
<circle cx="0" cy="0" r="18.333333333333332" fill="red" x="0" y="0" />
|
||||||
|
<text x="0" y="9" font-size="24" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">4</text>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(268,417)">
|
||||||
|
<path d="M-2.9999999999999982,-2.0 L-29.6295824562643,-21.347524157501468 L-19.45798706418925,-52.652475842498525 L13.45798706418924,-52.65247584249853 L23.629582456264302,-21.34752415750148 Z" fill="darkgrey" stroke="#eee" stroke-width="2" />
|
||||||
|
<text x="-3" y="-20" font-size="28px" font-weight="bold" font-family="Helvetica" text-anchor="middle" fill="black">4</text>
|
||||||
|
</g>
|
||||||
</svg>
|
</svg>
|
||||||
|
Before Width: | Height: | Size: 4.2 KiB After Width: | Height: | Size: 4.2 KiB |
@@ -1,6 +1,6 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||||
width="298" height="417" viewBox="0 0 298 417" id="card30">
|
width="298" height="417" viewBox="0 0 298 417" id="card30" class="card" xmlns:v-bind="https://heron.legonzaur.fr">
|
||||||
<defs>
|
<defs>
|
||||||
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
||||||
<stop offset="0" stop-color="red" stop-opacity="1" />
|
<stop offset="0" stop-color="red" stop-opacity="1" />
|
||||||
@@ -13,37 +13,6 @@
|
|||||||
<filter id="drop-shadow">
|
<filter id="drop-shadow">
|
||||||
<feDropShadow dx="1" dy="1" stdDeviation="0"></feDropShadow>
|
<feDropShadow dx="1" dy="1" stdDeviation="0"></feDropShadow>
|
||||||
</filter>
|
</filter>
|
||||||
<g id="faction_icon">
|
|
||||||
<circle cx="1" cy="1" r="20" fill="black" filter="url(#drop-shadow)" />
|
|
||||||
<circle cx="0" cy="0" r="20" fill="url(#grad2)" />
|
|
||||||
</g>
|
|
||||||
<g class="svg_resource_icon" onclick="console.warn('unknown interaction')" id="d0">
|
|
||||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
|
||||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">4</text>
|
|
||||||
</g>
|
|
||||||
<g id="d1">
|
|
||||||
<text x="0" y="-0.0" font-size="13.333333333333334" text-anchor="middle" fill="black" font-family="Helvetica"></text>
|
|
||||||
</g>
|
|
||||||
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '0' } ) );" id="d2">
|
|
||||||
<circle cx="0" cy="0" r="20" fill="red" x="0" y="0" />
|
|
||||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">7</text>
|
|
||||||
</g>
|
|
||||||
<g id="d3">
|
|
||||||
<use xlink:href="#d1" x="137.0" y="70.66666666666667" />
|
|
||||||
<use xlink:href="#d2" x="137.0" y="40.0" />
|
|
||||||
</g>
|
|
||||||
<g id="d4">
|
|
||||||
<text x="0" y="-0.0" font-size="14" text-anchor="middle" fill="black" font-family="Helvetica">Piochez une carte.</text>
|
|
||||||
</g>
|
|
||||||
<g id="d5">
|
|
||||||
<circle cx="30" cy="27.5" r="15" fill="url(#grad2)" filter="url(#drop-shadow)" />
|
|
||||||
<use xlink:href="#d4" x="137.0" y="31.0" />
|
|
||||||
</g>
|
|
||||||
<g id="effects">
|
|
||||||
<path d="M10,80 L264,80" stroke="black" stroke-width="1" />
|
|
||||||
<use xlink:href="#d3" x="0" y="0" />
|
|
||||||
<use xlink:href="#d5" x="0" y="80" />
|
|
||||||
</g>
|
|
||||||
</defs>
|
</defs>
|
||||||
<use xlink:href="#drop-shadow" />
|
<use xlink:href="#drop-shadow" />
|
||||||
<g id="background">
|
<g id="background">
|
||||||
@@ -54,9 +23,40 @@
|
|||||||
<text x="149.0" y="36" font-size="19" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">dark energy</text>
|
<text x="149.0" y="36" font-size="19" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">dark energy</text>
|
||||||
<text x="149.0" y="53" font-size="13" text-anchor="middle" fill="black" font-family="Helvetica">Action</text>
|
<text x="149.0" y="53" font-size="13" text-anchor="middle" fill="black" font-family="Helvetica">Action</text>
|
||||||
</g>
|
</g>
|
||||||
<use xlink:href="#faction_icon" x="36" y="37" />
|
<g transform="translate(36,37)">
|
||||||
<use xlink:href="#d0" x="260" y="36" />
|
<g id="faction_icon">
|
||||||
|
<circle cx="1" cy="1" r="20" fill="black" filter="url(#drop-shadow)" />
|
||||||
|
<circle cx="0" cy="0" r="20" fill="url(#grad2)" />
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(260,36)">
|
||||||
|
<g class="svg_resource_icon" onclick="console.warn('unknown interaction')">
|
||||||
|
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
||||||
|
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">4</text>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
<rect x="0" y="65" width="298" height="200" />
|
<rect x="0" y="65" width="298" height="200" />
|
||||||
<image x="0" y="65" width="298" height="200" xlink:href="../../img/missing.png" />
|
<image x="0" y="65" width="298" height="200" xlink:href="../../img/missing.png" />
|
||||||
<use xlink:href="#effects" x="12" y="265" />
|
<g transform="translate(12,265)">
|
||||||
|
<path d="M10,80 L264,80" stroke="black" stroke-width="1" />
|
||||||
|
<g>
|
||||||
|
<g transform="translate(137.0,70.66666666666667)">
|
||||||
|
<text x="0" y="-0.0" font-size="13.333333333333334" text-anchor="middle" fill="black" font-family="Helvetica"></text>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(137.0,40.0)" v-bind:class="{used:used_effects_indexes.includes(0)}">
|
||||||
|
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '0' } ) );">
|
||||||
|
<circle cx="0" cy="0" r="20" fill="red" x="0" y="0" />
|
||||||
|
<text x="0" y="9" font-size="24" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">7</text>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(0,80)">
|
||||||
|
<g>
|
||||||
|
<circle cx="30" cy="27.5" r="15" fill="url(#grad2)" filter="url(#drop-shadow)" />
|
||||||
|
<g transform="translate(137.0,31.0)">
|
||||||
|
<text x="0" y="-0.0" font-size="14" text-anchor="middle" fill="black" font-family="Helvetica">Piochez une carte.</text>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
</svg>
|
</svg>
|
||||||
|
Before Width: | Height: | Size: 2.9 KiB After Width: | Height: | Size: 2.9 KiB |
@@ -1,6 +1,6 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||||
width="298" height="417" viewBox="0 0 298 417" id="card31">
|
width="298" height="417" viewBox="0 0 298 417" id="card31" class="card" xmlns:v-bind="https://heron.legonzaur.fr">
|
||||||
<defs>
|
<defs>
|
||||||
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
||||||
<stop offset="0" stop-color="red" stop-opacity="1" />
|
<stop offset="0" stop-color="red" stop-opacity="1" />
|
||||||
@@ -13,42 +13,6 @@
|
|||||||
<filter id="drop-shadow">
|
<filter id="drop-shadow">
|
||||||
<feDropShadow dx="1" dy="1" stdDeviation="0"></feDropShadow>
|
<feDropShadow dx="1" dy="1" stdDeviation="0"></feDropShadow>
|
||||||
</filter>
|
</filter>
|
||||||
<g id="faction_icon">
|
|
||||||
<circle cx="1" cy="1" r="20" fill="black" filter="url(#drop-shadow)" />
|
|
||||||
<circle cx="0" cy="0" r="20" fill="url(#grad2)" />
|
|
||||||
</g>
|
|
||||||
<g class="svg_resource_icon" onclick="console.warn('unknown interaction')" id="d0">
|
|
||||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
|
||||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">5</text>
|
|
||||||
</g>
|
|
||||||
<g id="d1">
|
|
||||||
<text x="0" y="-5.5" font-size="11" text-anchor="middle" fill="black" font-family="Helvetica"><tspan x="0" dy="0em">Vous pouvez sacrifier une carte</tspan><tspan x="0" dy="1em">de votre main ou de votre défausse.</tspan></text>
|
|
||||||
</g>
|
|
||||||
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '0' } ) );" id="d2">
|
|
||||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
|
||||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">3</text>
|
|
||||||
</g>
|
|
||||||
<g id="d3">
|
|
||||||
<use xlink:href="#d1" x="137.0" y="70.66666666666667" />
|
|
||||||
<use xlink:href="#d2" x="137.0" y="33.0" />
|
|
||||||
</g>
|
|
||||||
<g id="d4">
|
|
||||||
<text x="0" y="-0.0" font-size="11" text-anchor="middle" fill="black" font-family="Helvetica"></text>
|
|
||||||
</g>
|
|
||||||
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '2' } ) );" id="d5">
|
|
||||||
<circle cx="0" cy="0" r="18.333333333333332" fill="red" x="0" y="0" />
|
|
||||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">6</text>
|
|
||||||
</g>
|
|
||||||
<g id="d6">
|
|
||||||
<circle cx="30" cy="27.5" r="15" fill="url(#grad2)" filter="url(#drop-shadow)" />
|
|
||||||
<use xlink:href="#d4" x="137.0" y="45.666666666666664" />
|
|
||||||
<use xlink:href="#d5" x="137.0" y="27.5" />
|
|
||||||
</g>
|
|
||||||
<g id="effects">
|
|
||||||
<path d="M10,80 L264,80" stroke="black" stroke-width="1" />
|
|
||||||
<use xlink:href="#d3" x="0" y="0" />
|
|
||||||
<use xlink:href="#d6" x="0" y="80" />
|
|
||||||
</g>
|
|
||||||
</defs>
|
</defs>
|
||||||
<use xlink:href="#drop-shadow" />
|
<use xlink:href="#drop-shadow" />
|
||||||
<g id="background">
|
<g id="background">
|
||||||
@@ -59,9 +23,46 @@
|
|||||||
<text x="149.0" y="36" font-size="19" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">dark reward</text>
|
<text x="149.0" y="36" font-size="19" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">dark reward</text>
|
||||||
<text x="149.0" y="53" font-size="13" text-anchor="middle" fill="black" font-family="Helvetica">Action</text>
|
<text x="149.0" y="53" font-size="13" text-anchor="middle" fill="black" font-family="Helvetica">Action</text>
|
||||||
</g>
|
</g>
|
||||||
<use xlink:href="#faction_icon" x="36" y="37" />
|
<g transform="translate(36,37)">
|
||||||
<use xlink:href="#d0" x="260" y="36" />
|
<g id="faction_icon">
|
||||||
|
<circle cx="1" cy="1" r="20" fill="black" filter="url(#drop-shadow)" />
|
||||||
|
<circle cx="0" cy="0" r="20" fill="url(#grad2)" />
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(260,36)">
|
||||||
|
<g class="svg_resource_icon" onclick="console.warn('unknown interaction')">
|
||||||
|
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
||||||
|
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">5</text>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
<rect x="0" y="65" width="298" height="200" />
|
<rect x="0" y="65" width="298" height="200" />
|
||||||
<image x="0" y="65" width="298" height="200" xlink:href="../../img/missing.png" />
|
<image x="0" y="65" width="298" height="200" xlink:href="../../img/missing.png" />
|
||||||
<use xlink:href="#effects" x="12" y="265" />
|
<g transform="translate(12,265)">
|
||||||
|
<path d="M10,80 L264,80" stroke="black" stroke-width="1" />
|
||||||
|
<g>
|
||||||
|
<g transform="translate(137.0,70.66666666666667)">
|
||||||
|
<text x="0" y="-5.5" font-size="11" text-anchor="middle" fill="black" font-family="Helvetica"><tspan x="0" dy="0em">Vous pouvez sacrifier une carte</tspan><tspan x="0" dy="1em">de votre main ou de votre défausse.</tspan></text>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(137.0,33.0)" v-bind:class="{used:used_effects_indexes.includes(0)}">
|
||||||
|
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '0' } ) );">
|
||||||
|
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
||||||
|
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">3</text>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(0,80)">
|
||||||
|
<g>
|
||||||
|
<circle cx="30" cy="27.5" r="15" fill="url(#grad2)" filter="url(#drop-shadow)" />
|
||||||
|
<g transform="translate(137.0,45.666666666666664)">
|
||||||
|
<text x="0" y="-0.0" font-size="11" text-anchor="middle" fill="black" font-family="Helvetica"></text>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(137.0,27.5)" v-bind:class="{used:used_effects_indexes.includes(2)}">
|
||||||
|
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '2' } ) );">
|
||||||
|
<circle cx="0" cy="0" r="18.333333333333332" fill="red" x="0" y="0" />
|
||||||
|
<text x="0" y="9" font-size="24" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">6</text>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
</svg>
|
</svg>
|
||||||
|
Before Width: | Height: | Size: 3.4 KiB After Width: | Height: | Size: 3.4 KiB |
@@ -1,6 +1,6 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||||
width="298" height="417" viewBox="0 0 298 417" id="card32">
|
width="298" height="417" viewBox="0 0 298 417" id="card32" class="card" xmlns:v-bind="https://heron.legonzaur.fr">
|
||||||
<defs>
|
<defs>
|
||||||
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
||||||
<stop offset="0" stop-color="red" stop-opacity="1" />
|
<stop offset="0" stop-color="red" stop-opacity="1" />
|
||||||
@@ -13,37 +13,6 @@
|
|||||||
<filter id="drop-shadow">
|
<filter id="drop-shadow">
|
||||||
<feDropShadow dx="1" dy="1" stdDeviation="0"></feDropShadow>
|
<feDropShadow dx="1" dy="1" stdDeviation="0"></feDropShadow>
|
||||||
</filter>
|
</filter>
|
||||||
<g id="faction_icon">
|
|
||||||
<circle cx="1" cy="1" r="20" fill="black" filter="url(#drop-shadow)" />
|
|
||||||
<circle cx="0" cy="0" r="20" fill="url(#grad2)" />
|
|
||||||
</g>
|
|
||||||
<g class="svg_resource_icon" onclick="console.warn('unknown interaction')" id="d0">
|
|
||||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
|
||||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">2</text>
|
|
||||||
</g>
|
|
||||||
<g id="d1">
|
|
||||||
<text x="0" y="-0.0" font-size="14" text-anchor="middle" fill="black" font-family="Helvetica"></text>
|
|
||||||
</g>
|
|
||||||
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '0' } ) );" id="d2">
|
|
||||||
<circle cx="0" cy="0" r="20" fill="red" x="0" y="0" />
|
|
||||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">2</text>
|
|
||||||
</g>
|
|
||||||
<g id="d3">
|
|
||||||
<circle cx="30" cy="67.5" r="15" fill="gray" filter="url(#drop-shadow)" />
|
|
||||||
<use xlink:href="#d1" x="137.0" y="101.5" />
|
|
||||||
<use xlink:href="#d2" x="137.0" y="67.5" />
|
|
||||||
</g>
|
|
||||||
<g id="effects">
|
|
||||||
<use xlink:href="#d3" x="0" y="0" />
|
|
||||||
</g>
|
|
||||||
<path d="M-2.9999999999999982,-2.0 L-29.6295824562643,-21.347524157501468 L-19.45798706418925,-52.652475842498525 L13.45798706418924,-52.65247584249853 L23.629582456264302,-21.34752415750148 Z" stroke-width="2" id="d4" />
|
|
||||||
<text x="-3" y="-20" font-size="28px" font-weight="bold" font-family="Helvetica" text-anchor="middle" id="d5">3</text>
|
|
||||||
<g id="champion_shield">
|
|
||||||
<use xlink:href="#d4" x="0" y="0" fill="black" stroke="lightgrey" />
|
|
||||||
<rect x="-28" y="-72" width="49" height="17" fill="black" stroke="lightgrey" stroke-width="2" />
|
|
||||||
<text x="-3" y="-59" font-size="12px" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">Garde</text>
|
|
||||||
<use xlink:href="#d5" x="0" y="0" fill="white" />
|
|
||||||
</g>
|
|
||||||
</defs>
|
</defs>
|
||||||
<use xlink:href="#drop-shadow" />
|
<use xlink:href="#drop-shadow" />
|
||||||
<g id="background">
|
<g id="background">
|
||||||
@@ -54,10 +23,38 @@
|
|||||||
<text x="149.0" y="36" font-size="19" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">death cultist</text>
|
<text x="149.0" y="36" font-size="19" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">death cultist</text>
|
||||||
<text x="149.0" y="53" font-size="13" text-anchor="middle" fill="black" font-family="Helvetica">Champion</text>
|
<text x="149.0" y="53" font-size="13" text-anchor="middle" fill="black" font-family="Helvetica">Champion</text>
|
||||||
</g>
|
</g>
|
||||||
<use xlink:href="#faction_icon" x="36" y="37" />
|
<g transform="translate(36,37)">
|
||||||
<use xlink:href="#d0" x="260" y="36" />
|
<g id="faction_icon">
|
||||||
|
<circle cx="1" cy="1" r="20" fill="black" filter="url(#drop-shadow)" />
|
||||||
|
<circle cx="0" cy="0" r="20" fill="url(#grad2)" />
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(260,36)">
|
||||||
|
<g class="svg_resource_icon" onclick="console.warn('unknown interaction')">
|
||||||
|
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
||||||
|
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">2</text>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
<rect x="0" y="65" width="298" height="200" />
|
<rect x="0" y="65" width="298" height="200" />
|
||||||
<image x="0" y="65" width="298" height="200" xlink:href="../../img/missing.png" />
|
<image x="0" y="65" width="298" height="200" xlink:href="../../img/missing.png" />
|
||||||
<use xlink:href="#effects" x="12" y="265" />
|
<g transform="translate(12,265)">
|
||||||
<use xlink:href="#champion_shield" x="268" y="417" />
|
<g>
|
||||||
|
<circle cx="30" cy="67.5" r="15" fill="gray" filter="url(#drop-shadow)" />
|
||||||
|
<g transform="translate(137.0,101.5)">
|
||||||
|
<text x="0" y="-0.0" font-size="14" text-anchor="middle" fill="black" font-family="Helvetica"></text>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(137.0,67.5)" v-bind:class="{used:used_effects_indexes.includes(0)}">
|
||||||
|
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '0' } ) );">
|
||||||
|
<circle cx="0" cy="0" r="20" fill="red" x="0" y="0" />
|
||||||
|
<text x="0" y="9" font-size="24" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">2</text>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(268,417)">
|
||||||
|
<path d="M-2.9999999999999982,-2.0 L-29.6295824562643,-21.347524157501468 L-19.45798706418925,-52.652475842498525 L13.45798706418924,-52.65247584249853 L23.629582456264302,-21.34752415750148 Z" fill="black" stroke="lightgrey" stroke-width="2" />
|
||||||
|
<rect x="-28" y="-72" width="49" height="17" fill="black" stroke="lightgrey" stroke-width="2" />
|
||||||
|
<text x="-3" y="-59" font-size="12px" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">Garde</text>
|
||||||
|
<text x="-3" y="-20" font-size="28px" font-weight="bold" font-family="Helvetica" text-anchor="middle" fill="white">3</text>
|
||||||
|
</g>
|
||||||
</svg>
|
</svg>
|
||||||
|
Before Width: | Height: | Size: 3.3 KiB After Width: | Height: | Size: 3.2 KiB |
@@ -1,6 +1,6 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||||
width="298" height="417" viewBox="0 0 298 417" id="card33">
|
width="298" height="417" viewBox="0 0 298 417" id="card33" class="card" xmlns:v-bind="https://heron.legonzaur.fr">
|
||||||
<defs>
|
<defs>
|
||||||
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
||||||
<stop offset="0" stop-color="red" stop-opacity="1" />
|
<stop offset="0" stop-color="red" stop-opacity="1" />
|
||||||
@@ -13,42 +13,6 @@
|
|||||||
<filter id="drop-shadow">
|
<filter id="drop-shadow">
|
||||||
<feDropShadow dx="1" dy="1" stdDeviation="0"></feDropShadow>
|
<feDropShadow dx="1" dy="1" stdDeviation="0"></feDropShadow>
|
||||||
</filter>
|
</filter>
|
||||||
<g id="faction_icon">
|
|
||||||
<circle cx="1" cy="1" r="20" fill="black" filter="url(#drop-shadow)" />
|
|
||||||
<circle cx="0" cy="0" r="20" fill="url(#grad2)" />
|
|
||||||
</g>
|
|
||||||
<g class="svg_resource_icon" onclick="console.warn('unknown interaction')" id="d0">
|
|
||||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
|
||||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">1</text>
|
|
||||||
</g>
|
|
||||||
<g id="d1">
|
|
||||||
<text x="0" y="-5.5" font-size="11" text-anchor="middle" fill="black" font-family="Helvetica"><tspan x="0" dy="0em">Vous pouvez sacrifier une carte</tspan><tspan x="0" dy="1em">de votre main ou de votre défausse.</tspan></text>
|
|
||||||
</g>
|
|
||||||
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '0' } ) );" id="d2">
|
|
||||||
<circle cx="0" cy="0" r="20" fill="red" x="0" y="0" />
|
|
||||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">2</text>
|
|
||||||
</g>
|
|
||||||
<g id="d3">
|
|
||||||
<use xlink:href="#d1" x="137.0" y="70.66666666666667" />
|
|
||||||
<use xlink:href="#d2" x="137.0" y="33.0" />
|
|
||||||
</g>
|
|
||||||
<g id="d4">
|
|
||||||
<text x="0" y="-0.0" font-size="11" text-anchor="middle" fill="black" font-family="Helvetica"></text>
|
|
||||||
</g>
|
|
||||||
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '2' } ) );" id="d5">
|
|
||||||
<circle cx="0" cy="0" r="18.333333333333332" fill="red" x="0" y="0" />
|
|
||||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">2</text>
|
|
||||||
</g>
|
|
||||||
<g id="d6">
|
|
||||||
<circle cx="30" cy="27.5" r="15" fill="url(#grad2)" filter="url(#drop-shadow)" />
|
|
||||||
<use xlink:href="#d4" x="137.0" y="45.666666666666664" />
|
|
||||||
<use xlink:href="#d5" x="137.0" y="27.5" />
|
|
||||||
</g>
|
|
||||||
<g id="effects">
|
|
||||||
<path d="M10,80 L264,80" stroke="black" stroke-width="1" />
|
|
||||||
<use xlink:href="#d3" x="0" y="0" />
|
|
||||||
<use xlink:href="#d6" x="0" y="80" />
|
|
||||||
</g>
|
|
||||||
</defs>
|
</defs>
|
||||||
<use xlink:href="#drop-shadow" />
|
<use xlink:href="#drop-shadow" />
|
||||||
<g id="background">
|
<g id="background">
|
||||||
@@ -59,9 +23,46 @@
|
|||||||
<text x="149.0" y="36" font-size="19" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">death touch</text>
|
<text x="149.0" y="36" font-size="19" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">death touch</text>
|
||||||
<text x="149.0" y="53" font-size="13" text-anchor="middle" fill="black" font-family="Helvetica">Action</text>
|
<text x="149.0" y="53" font-size="13" text-anchor="middle" fill="black" font-family="Helvetica">Action</text>
|
||||||
</g>
|
</g>
|
||||||
<use xlink:href="#faction_icon" x="36" y="37" />
|
<g transform="translate(36,37)">
|
||||||
<use xlink:href="#d0" x="260" y="36" />
|
<g id="faction_icon">
|
||||||
|
<circle cx="1" cy="1" r="20" fill="black" filter="url(#drop-shadow)" />
|
||||||
|
<circle cx="0" cy="0" r="20" fill="url(#grad2)" />
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(260,36)">
|
||||||
|
<g class="svg_resource_icon" onclick="console.warn('unknown interaction')">
|
||||||
|
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
||||||
|
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">1</text>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
<rect x="0" y="65" width="298" height="200" />
|
<rect x="0" y="65" width="298" height="200" />
|
||||||
<image x="0" y="65" width="298" height="200" xlink:href="../../img/missing.png" />
|
<image x="0" y="65" width="298" height="200" xlink:href="../../img/missing.png" />
|
||||||
<use xlink:href="#effects" x="12" y="265" />
|
<g transform="translate(12,265)">
|
||||||
|
<path d="M10,80 L264,80" stroke="black" stroke-width="1" />
|
||||||
|
<g>
|
||||||
|
<g transform="translate(137.0,70.66666666666667)">
|
||||||
|
<text x="0" y="-5.5" font-size="11" text-anchor="middle" fill="black" font-family="Helvetica"><tspan x="0" dy="0em">Vous pouvez sacrifier une carte</tspan><tspan x="0" dy="1em">de votre main ou de votre défausse.</tspan></text>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(137.0,33.0)" v-bind:class="{used:used_effects_indexes.includes(0)}">
|
||||||
|
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '0' } ) );">
|
||||||
|
<circle cx="0" cy="0" r="20" fill="red" x="0" y="0" />
|
||||||
|
<text x="0" y="9" font-size="24" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">2</text>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(0,80)">
|
||||||
|
<g>
|
||||||
|
<circle cx="30" cy="27.5" r="15" fill="url(#grad2)" filter="url(#drop-shadow)" />
|
||||||
|
<g transform="translate(137.0,45.666666666666664)">
|
||||||
|
<text x="0" y="-0.0" font-size="11" text-anchor="middle" fill="black" font-family="Helvetica"></text>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(137.0,27.5)" v-bind:class="{used:used_effects_indexes.includes(2)}">
|
||||||
|
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '2' } ) );">
|
||||||
|
<circle cx="0" cy="0" r="18.333333333333332" fill="red" x="0" y="0" />
|
||||||
|
<text x="0" y="9" font-size="24" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">2</text>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
</svg>
|
</svg>
|
||||||
|
Before Width: | Height: | Size: 3.4 KiB After Width: | Height: | Size: 3.4 KiB |
@@ -1,6 +1,6 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||||
width="298" height="417" viewBox="0 0 298 417" id="card34">
|
width="298" height="417" viewBox="0 0 298 417" id="card34" class="card" xmlns:v-bind="https://heron.legonzaur.fr">
|
||||||
<defs>
|
<defs>
|
||||||
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
||||||
<stop offset="0" stop-color="red" stop-opacity="1" />
|
<stop offset="0" stop-color="red" stop-opacity="1" />
|
||||||
@@ -13,44 +13,6 @@
|
|||||||
<filter id="drop-shadow">
|
<filter id="drop-shadow">
|
||||||
<feDropShadow dx="1" dy="1" stdDeviation="0"></feDropShadow>
|
<feDropShadow dx="1" dy="1" stdDeviation="0"></feDropShadow>
|
||||||
</filter>
|
</filter>
|
||||||
<g id="faction_icon">
|
|
||||||
<circle cx="1" cy="1" r="20" fill="black" filter="url(#drop-shadow)" />
|
|
||||||
<circle cx="0" cy="0" r="20" fill="url(#grad2)" />
|
|
||||||
</g>
|
|
||||||
<g class="svg_resource_icon" onclick="console.warn('unknown interaction')" id="d0">
|
|
||||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
|
||||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">4</text>
|
|
||||||
</g>
|
|
||||||
<g id="d1">
|
|
||||||
<text x="0" y="-0.0" font-size="13.333333333333334" text-anchor="middle" fill="black" font-family="Helvetica"></text>
|
|
||||||
</g>
|
|
||||||
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '0' } ) );" id="d2">
|
|
||||||
<circle cx="0" cy="0" r="20" fill="red" x="0" y="0" />
|
|
||||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">3</text>
|
|
||||||
</g>
|
|
||||||
<g id="d3">
|
|
||||||
<circle cx="30" cy="40.0" r="15" fill="gray" filter="url(#drop-shadow)" />
|
|
||||||
<use xlink:href="#d1" x="137.0" y="70.66666666666667" />
|
|
||||||
<use xlink:href="#d2" x="137.0" y="40.0" />
|
|
||||||
</g>
|
|
||||||
<g id="d4">
|
|
||||||
<text x="0" y="-0.0" font-size="14" text-anchor="middle" fill="black" font-family="Helvetica">Piochez une carte.</text>
|
|
||||||
</g>
|
|
||||||
<g id="d5">
|
|
||||||
<circle cx="30" cy="27.5" r="15" fill="url(#grad2)" filter="url(#drop-shadow)" />
|
|
||||||
<use xlink:href="#d4" x="137.0" y="31.0" />
|
|
||||||
</g>
|
|
||||||
<g id="effects">
|
|
||||||
<path d="M10,80 L264,80" stroke="black" stroke-width="1" />
|
|
||||||
<use xlink:href="#d3" x="0" y="0" />
|
|
||||||
<use xlink:href="#d5" x="0" y="80" />
|
|
||||||
</g>
|
|
||||||
<path d="M-2.9999999999999982,-2.0 L-29.6295824562643,-21.347524157501468 L-19.45798706418925,-52.652475842498525 L13.45798706418924,-52.65247584249853 L23.629582456264302,-21.34752415750148 Z" stroke-width="2" id="d6" />
|
|
||||||
<text x="-3" y="-20" font-size="28px" font-weight="bold" font-family="Helvetica" text-anchor="middle" id="d7">4</text>
|
|
||||||
<g id="champion_shield">
|
|
||||||
<use xlink:href="#d6" x="0" y="0" fill="darkgrey" stroke="#eee" />
|
|
||||||
<use xlink:href="#d7" x="0" y="0" fill="black" />
|
|
||||||
</g>
|
|
||||||
</defs>
|
</defs>
|
||||||
<use xlink:href="#drop-shadow" />
|
<use xlink:href="#drop-shadow" />
|
||||||
<g id="background">
|
<g id="background">
|
||||||
@@ -61,10 +23,45 @@
|
|||||||
<text x="149.0" y="36" font-size="19" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">rayla, endweaver</text>
|
<text x="149.0" y="36" font-size="19" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">rayla, endweaver</text>
|
||||||
<text x="149.0" y="53" font-size="13" text-anchor="middle" fill="black" font-family="Helvetica">Champion</text>
|
<text x="149.0" y="53" font-size="13" text-anchor="middle" fill="black" font-family="Helvetica">Champion</text>
|
||||||
</g>
|
</g>
|
||||||
<use xlink:href="#faction_icon" x="36" y="37" />
|
<g transform="translate(36,37)">
|
||||||
<use xlink:href="#d0" x="260" y="36" />
|
<g id="faction_icon">
|
||||||
|
<circle cx="1" cy="1" r="20" fill="black" filter="url(#drop-shadow)" />
|
||||||
|
<circle cx="0" cy="0" r="20" fill="url(#grad2)" />
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(260,36)">
|
||||||
|
<g class="svg_resource_icon" onclick="console.warn('unknown interaction')">
|
||||||
|
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
||||||
|
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">4</text>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
<rect x="0" y="65" width="298" height="200" />
|
<rect x="0" y="65" width="298" height="200" />
|
||||||
<image x="0" y="65" width="298" height="200" xlink:href="../../img/missing.png" />
|
<image x="0" y="65" width="298" height="200" xlink:href="../../img/missing.png" />
|
||||||
<use xlink:href="#effects" x="12" y="265" />
|
<g transform="translate(12,265)">
|
||||||
<use xlink:href="#champion_shield" x="268" y="417" />
|
<path d="M10,80 L264,80" stroke="black" stroke-width="1" />
|
||||||
|
<g>
|
||||||
|
<circle cx="30" cy="40.0" r="15" fill="gray" filter="url(#drop-shadow)" />
|
||||||
|
<g transform="translate(137.0,70.66666666666667)">
|
||||||
|
<text x="0" y="-0.0" font-size="13.333333333333334" text-anchor="middle" fill="black" font-family="Helvetica"></text>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(137.0,40.0)" v-bind:class="{used:used_effects_indexes.includes(0)}">
|
||||||
|
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '0' } ) );">
|
||||||
|
<circle cx="0" cy="0" r="20" fill="red" x="0" y="0" />
|
||||||
|
<text x="0" y="9" font-size="24" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">3</text>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(0,80)">
|
||||||
|
<g>
|
||||||
|
<circle cx="30" cy="27.5" r="15" fill="url(#grad2)" filter="url(#drop-shadow)" />
|
||||||
|
<g transform="translate(137.0,31.0)">
|
||||||
|
<text x="0" y="-0.0" font-size="14" text-anchor="middle" fill="black" font-family="Helvetica">Piochez une carte.</text>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(268,417)">
|
||||||
|
<path d="M-2.9999999999999982,-2.0 L-29.6295824562643,-21.347524157501468 L-19.45798706418925,-52.652475842498525 L13.45798706418924,-52.65247584249853 L23.629582456264302,-21.34752415750148 Z" fill="darkgrey" stroke="#eee" stroke-width="2" />
|
||||||
|
<text x="-3" y="-20" font-size="28px" font-weight="bold" font-family="Helvetica" text-anchor="middle" fill="black">4</text>
|
||||||
|
</g>
|
||||||
</svg>
|
</svg>
|
||||||
|
Before Width: | Height: | Size: 3.5 KiB After Width: | Height: | Size: 3.3 KiB |
@@ -1,6 +1,6 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||||
width="298" height="417" viewBox="0 0 298 417" id="card35">
|
width="298" height="417" viewBox="0 0 298 417" id="card35" class="card" xmlns:v-bind="https://heron.legonzaur.fr">
|
||||||
<defs>
|
<defs>
|
||||||
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
||||||
<stop offset="0" stop-color="red" stop-opacity="1" />
|
<stop offset="0" stop-color="red" stop-opacity="1" />
|
||||||
@@ -13,42 +13,6 @@
|
|||||||
<filter id="drop-shadow">
|
<filter id="drop-shadow">
|
||||||
<feDropShadow dx="1" dy="1" stdDeviation="0"></feDropShadow>
|
<feDropShadow dx="1" dy="1" stdDeviation="0"></feDropShadow>
|
||||||
</filter>
|
</filter>
|
||||||
<g id="faction_icon">
|
|
||||||
<circle cx="1" cy="1" r="20" fill="black" filter="url(#drop-shadow)" />
|
|
||||||
<circle cx="0" cy="0" r="20" fill="url(#grad2)" />
|
|
||||||
</g>
|
|
||||||
<g class="svg_resource_icon" onclick="console.warn('unknown interaction')" id="d0">
|
|
||||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
|
||||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">2</text>
|
|
||||||
</g>
|
|
||||||
<g id="d1">
|
|
||||||
<text x="0" y="-0.0" font-size="13.333333333333334" text-anchor="middle" fill="black" font-family="Helvetica"></text>
|
|
||||||
</g>
|
|
||||||
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '0' } ) );" id="d2">
|
|
||||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
|
||||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">3</text>
|
|
||||||
</g>
|
|
||||||
<g id="d3">
|
|
||||||
<use xlink:href="#d1" x="137.0" y="70.66666666666667" />
|
|
||||||
<use xlink:href="#d2" x="137.0" y="40.0" />
|
|
||||||
</g>
|
|
||||||
<g id="d4">
|
|
||||||
<text x="0" y="-0.0" font-size="11" text-anchor="middle" fill="black" font-family="Helvetica"></text>
|
|
||||||
</g>
|
|
||||||
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '1' } ) );" id="d5">
|
|
||||||
<circle cx="0" cy="0" r="18.333333333333332" fill="red" x="0" y="0" />
|
|
||||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">3</text>
|
|
||||||
</g>
|
|
||||||
<g id="d6">
|
|
||||||
<circle cx="30" cy="27.5" r="15" fill="black" filter="url(#drop-shadow)" />
|
|
||||||
<use xlink:href="#d4" x="137.0" y="45.666666666666664" />
|
|
||||||
<use xlink:href="#d5" x="137.0" y="27.5" />
|
|
||||||
</g>
|
|
||||||
<g id="effects">
|
|
||||||
<path d="M10,80 L264,80" stroke="black" stroke-width="1" />
|
|
||||||
<use xlink:href="#d3" x="0" y="0" />
|
|
||||||
<use xlink:href="#d6" x="0" y="80" />
|
|
||||||
</g>
|
|
||||||
</defs>
|
</defs>
|
||||||
<use xlink:href="#drop-shadow" />
|
<use xlink:href="#drop-shadow" />
|
||||||
<g id="background">
|
<g id="background">
|
||||||
@@ -59,9 +23,46 @@
|
|||||||
<text x="149.0" y="36" font-size="19" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">influence</text>
|
<text x="149.0" y="36" font-size="19" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">influence</text>
|
||||||
<text x="149.0" y="53" font-size="13" text-anchor="middle" fill="black" font-family="Helvetica">Action</text>
|
<text x="149.0" y="53" font-size="13" text-anchor="middle" fill="black" font-family="Helvetica">Action</text>
|
||||||
</g>
|
</g>
|
||||||
<use xlink:href="#faction_icon" x="36" y="37" />
|
<g transform="translate(36,37)">
|
||||||
<use xlink:href="#d0" x="260" y="36" />
|
<g id="faction_icon">
|
||||||
|
<circle cx="1" cy="1" r="20" fill="black" filter="url(#drop-shadow)" />
|
||||||
|
<circle cx="0" cy="0" r="20" fill="url(#grad2)" />
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(260,36)">
|
||||||
|
<g class="svg_resource_icon" onclick="console.warn('unknown interaction')">
|
||||||
|
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
||||||
|
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">2</text>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
<rect x="0" y="65" width="298" height="200" />
|
<rect x="0" y="65" width="298" height="200" />
|
||||||
<image x="0" y="65" width="298" height="200" xlink:href="../../img/missing.png" />
|
<image x="0" y="65" width="298" height="200" xlink:href="../../img/missing.png" />
|
||||||
<use xlink:href="#effects" x="12" y="265" />
|
<g transform="translate(12,265)">
|
||||||
|
<path d="M10,80 L264,80" stroke="black" stroke-width="1" />
|
||||||
|
<g>
|
||||||
|
<g transform="translate(137.0,70.66666666666667)">
|
||||||
|
<text x="0" y="-0.0" font-size="13.333333333333334" text-anchor="middle" fill="black" font-family="Helvetica"></text>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(137.0,40.0)" v-bind:class="{used:used_effects_indexes.includes(0)}">
|
||||||
|
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '0' } ) );">
|
||||||
|
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
||||||
|
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">3</text>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(0,80)">
|
||||||
|
<g>
|
||||||
|
<circle cx="30" cy="27.5" r="15" fill="black" filter="url(#drop-shadow)" />
|
||||||
|
<g transform="translate(137.0,45.666666666666664)">
|
||||||
|
<text x="0" y="-0.0" font-size="11" text-anchor="middle" fill="black" font-family="Helvetica"></text>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(137.0,27.5)" v-bind:class="{used:used_effects_indexes.includes(1)}">
|
||||||
|
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '1' } ) );">
|
||||||
|
<circle cx="0" cy="0" r="18.333333333333332" fill="red" x="0" y="0" />
|
||||||
|
<text x="0" y="9" font-size="24" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">3</text>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
</svg>
|
</svg>
|
||||||
|
Before Width: | Height: | Size: 3.3 KiB After Width: | Height: | Size: 3.3 KiB |
@@ -1,6 +1,6 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||||
width="298" height="417" viewBox="0 0 298 417" id="card36">
|
width="298" height="417" viewBox="0 0 298 417" id="card36" class="card" xmlns:v-bind="https://heron.legonzaur.fr">
|
||||||
<defs>
|
<defs>
|
||||||
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
||||||
<stop offset="0" stop-color="red" stop-opacity="1" />
|
<stop offset="0" stop-color="red" stop-opacity="1" />
|
||||||
@@ -13,35 +13,6 @@
|
|||||||
<filter id="drop-shadow">
|
<filter id="drop-shadow">
|
||||||
<feDropShadow dx="1" dy="1" stdDeviation="0"></feDropShadow>
|
<feDropShadow dx="1" dy="1" stdDeviation="0"></feDropShadow>
|
||||||
</filter>
|
</filter>
|
||||||
<g id="faction_icon">
|
|
||||||
<circle cx="1" cy="1" r="20" fill="black" filter="url(#drop-shadow)" />
|
|
||||||
<circle cx="0" cy="0" r="20" fill="url(#grad2)" />
|
|
||||||
</g>
|
|
||||||
<g class="svg_resource_icon" onclick="console.warn('unknown interaction')" id="d0">
|
|
||||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
|
||||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">7</text>
|
|
||||||
</g>
|
|
||||||
<g id="d1">
|
|
||||||
<text x="0" y="-5.5" font-size="11" text-anchor="middle" fill="black" font-family="Helvetica"><tspan x="0" dy="0em">Vous pouvez sacrifier une carte</tspan><tspan x="0" dy="1em">de votre main ou de votre défausse.</tspan></text>
|
|
||||||
</g>
|
|
||||||
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '0' } ) );" id="d2">
|
|
||||||
<circle cx="0" cy="0" r="20" fill="red" x="0" y="0" />
|
|
||||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">3</text>
|
|
||||||
</g>
|
|
||||||
<g id="d3">
|
|
||||||
<circle cx="30" cy="67.5" r="15" fill="gray" filter="url(#drop-shadow)" />
|
|
||||||
<use xlink:href="#d1" x="137.0" y="101.5" />
|
|
||||||
<use xlink:href="#d2" x="137.0" y="60.5" />
|
|
||||||
</g>
|
|
||||||
<g id="effects">
|
|
||||||
<use xlink:href="#d3" x="0" y="0" />
|
|
||||||
</g>
|
|
||||||
<path d="M-2.9999999999999982,-2.0 L-29.6295824562643,-21.347524157501468 L-19.45798706418925,-52.652475842498525 L13.45798706418924,-52.65247584249853 L23.629582456264302,-21.34752415750148 Z" stroke-width="2" id="d4" />
|
|
||||||
<text x="-3" y="-20" font-size="28px" font-weight="bold" font-family="Helvetica" text-anchor="middle" id="d5">6</text>
|
|
||||||
<g id="champion_shield">
|
|
||||||
<use xlink:href="#d4" x="0" y="0" fill="darkgrey" stroke="#eee" />
|
|
||||||
<use xlink:href="#d5" x="0" y="0" fill="black" />
|
|
||||||
</g>
|
|
||||||
</defs>
|
</defs>
|
||||||
<use xlink:href="#drop-shadow" />
|
<use xlink:href="#drop-shadow" />
|
||||||
<g id="background">
|
<g id="background">
|
||||||
@@ -52,10 +23,36 @@
|
|||||||
<text x="149.0" y="36" font-size="16" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">krythos, master vampire</text>
|
<text x="149.0" y="36" font-size="16" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">krythos, master vampire</text>
|
||||||
<text x="149.0" y="53" font-size="13" text-anchor="middle" fill="black" font-family="Helvetica">Champion</text>
|
<text x="149.0" y="53" font-size="13" text-anchor="middle" fill="black" font-family="Helvetica">Champion</text>
|
||||||
</g>
|
</g>
|
||||||
<use xlink:href="#faction_icon" x="36" y="37" />
|
<g transform="translate(36,37)">
|
||||||
<use xlink:href="#d0" x="260" y="36" />
|
<g id="faction_icon">
|
||||||
|
<circle cx="1" cy="1" r="20" fill="black" filter="url(#drop-shadow)" />
|
||||||
|
<circle cx="0" cy="0" r="20" fill="url(#grad2)" />
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(260,36)">
|
||||||
|
<g class="svg_resource_icon" onclick="console.warn('unknown interaction')">
|
||||||
|
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
||||||
|
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">7</text>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
<rect x="0" y="65" width="298" height="200" />
|
<rect x="0" y="65" width="298" height="200" />
|
||||||
<image x="0" y="65" width="298" height="200" xlink:href="../../img/missing.png" />
|
<image x="0" y="65" width="298" height="200" xlink:href="../../img/missing.png" />
|
||||||
<use xlink:href="#effects" x="12" y="265" />
|
<g transform="translate(12,265)">
|
||||||
<use xlink:href="#champion_shield" x="268" y="417" />
|
<g>
|
||||||
|
<circle cx="30" cy="67.5" r="15" fill="gray" filter="url(#drop-shadow)" />
|
||||||
|
<g transform="translate(137.0,101.5)">
|
||||||
|
<text x="0" y="-5.5" font-size="11" text-anchor="middle" fill="black" font-family="Helvetica"><tspan x="0" dy="0em">Vous pouvez sacrifier une carte</tspan><tspan x="0" dy="1em">de votre main ou de votre défausse.</tspan></text>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(137.0,60.5)" v-bind:class="{used:used_effects_indexes.includes(0)}">
|
||||||
|
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '0' } ) );">
|
||||||
|
<circle cx="0" cy="0" r="20" fill="red" x="0" y="0" />
|
||||||
|
<text x="0" y="9" font-size="24" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">3</text>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(268,417)">
|
||||||
|
<path d="M-2.9999999999999982,-2.0 L-29.6295824562643,-21.347524157501468 L-19.45798706418925,-52.652475842498525 L13.45798706418924,-52.65247584249853 L23.629582456264302,-21.34752415750148 Z" fill="darkgrey" stroke="#eee" stroke-width="2" />
|
||||||
|
<text x="-3" y="-20" font-size="28px" font-weight="bold" font-family="Helvetica" text-anchor="middle" fill="black">6</text>
|
||||||
|
</g>
|
||||||
</svg>
|
</svg>
|
||||||
|
Before Width: | Height: | Size: 3.2 KiB After Width: | Height: | Size: 3.1 KiB |
@@ -1,6 +1,6 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||||
width="298" height="417" viewBox="0 0 298 417" id="card37">
|
width="298" height="417" viewBox="0 0 298 417" id="card37" class="card" xmlns:v-bind="https://heron.legonzaur.fr">
|
||||||
<defs>
|
<defs>
|
||||||
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
||||||
<stop offset="0" stop-color="red" stop-opacity="1" />
|
<stop offset="0" stop-color="red" stop-opacity="1" />
|
||||||
@@ -13,37 +13,6 @@
|
|||||||
<filter id="drop-shadow">
|
<filter id="drop-shadow">
|
||||||
<feDropShadow dx="1" dy="1" stdDeviation="0"></feDropShadow>
|
<feDropShadow dx="1" dy="1" stdDeviation="0"></feDropShadow>
|
||||||
</filter>
|
</filter>
|
||||||
<g id="faction_icon">
|
|
||||||
<circle cx="1" cy="1" r="20" fill="black" filter="url(#drop-shadow)" />
|
|
||||||
<circle cx="0" cy="0" r="20" fill="url(#grad2)" />
|
|
||||||
</g>
|
|
||||||
<g class="svg_resource_icon" onclick="console.warn('unknown interaction')" id="d0">
|
|
||||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
|
||||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">6</text>
|
|
||||||
</g>
|
|
||||||
<g id="d1">
|
|
||||||
<text x="0" y="-5.5" font-size="11" text-anchor="middle" fill="black" font-family="Helvetica"><tspan x="0" dy="0em">Vous pouvez sacrifier une carte</tspan><tspan x="0" dy="1em">de votre main ou de votre défausse.</tspan></text>
|
|
||||||
</g>
|
|
||||||
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '0' } ) );" id="d2">
|
|
||||||
<circle cx="0" cy="0" r="20" fill="red" x="0" y="0" />
|
|
||||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">8</text>
|
|
||||||
</g>
|
|
||||||
<g id="d3">
|
|
||||||
<use xlink:href="#d1" x="137.0" y="70.66666666666667" />
|
|
||||||
<use xlink:href="#d2" x="137.0" y="33.0" />
|
|
||||||
</g>
|
|
||||||
<g id="d4">
|
|
||||||
<text x="0" y="-0.0" font-size="14" text-anchor="middle" fill="black" font-family="Helvetica">Piochez une carte.</text>
|
|
||||||
</g>
|
|
||||||
<g id="d5">
|
|
||||||
<circle cx="30" cy="27.5" r="15" fill="url(#grad2)" filter="url(#drop-shadow)" />
|
|
||||||
<use xlink:href="#d4" x="137.0" y="31.0" />
|
|
||||||
</g>
|
|
||||||
<g id="effects">
|
|
||||||
<path d="M10,80 L264,80" stroke="black" stroke-width="1" />
|
|
||||||
<use xlink:href="#d3" x="0" y="0" />
|
|
||||||
<use xlink:href="#d5" x="0" y="80" />
|
|
||||||
</g>
|
|
||||||
</defs>
|
</defs>
|
||||||
<use xlink:href="#drop-shadow" />
|
<use xlink:href="#drop-shadow" />
|
||||||
<g id="background">
|
<g id="background">
|
||||||
@@ -54,9 +23,40 @@
|
|||||||
<text x="149.0" y="36" font-size="19" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">life drain</text>
|
<text x="149.0" y="36" font-size="19" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">life drain</text>
|
||||||
<text x="149.0" y="53" font-size="13" text-anchor="middle" fill="black" font-family="Helvetica">Action</text>
|
<text x="149.0" y="53" font-size="13" text-anchor="middle" fill="black" font-family="Helvetica">Action</text>
|
||||||
</g>
|
</g>
|
||||||
<use xlink:href="#faction_icon" x="36" y="37" />
|
<g transform="translate(36,37)">
|
||||||
<use xlink:href="#d0" x="260" y="36" />
|
<g id="faction_icon">
|
||||||
|
<circle cx="1" cy="1" r="20" fill="black" filter="url(#drop-shadow)" />
|
||||||
|
<circle cx="0" cy="0" r="20" fill="url(#grad2)" />
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(260,36)">
|
||||||
|
<g class="svg_resource_icon" onclick="console.warn('unknown interaction')">
|
||||||
|
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
||||||
|
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">6</text>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
<rect x="0" y="65" width="298" height="200" />
|
<rect x="0" y="65" width="298" height="200" />
|
||||||
<image x="0" y="65" width="298" height="200" xlink:href="../../img/missing.png" />
|
<image x="0" y="65" width="298" height="200" xlink:href="../../img/missing.png" />
|
||||||
<use xlink:href="#effects" x="12" y="265" />
|
<g transform="translate(12,265)">
|
||||||
|
<path d="M10,80 L264,80" stroke="black" stroke-width="1" />
|
||||||
|
<g>
|
||||||
|
<g transform="translate(137.0,70.66666666666667)">
|
||||||
|
<text x="0" y="-5.5" font-size="11" text-anchor="middle" fill="black" font-family="Helvetica"><tspan x="0" dy="0em">Vous pouvez sacrifier une carte</tspan><tspan x="0" dy="1em">de votre main ou de votre défausse.</tspan></text>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(137.0,33.0)" v-bind:class="{used:used_effects_indexes.includes(0)}">
|
||||||
|
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '0' } ) );">
|
||||||
|
<circle cx="0" cy="0" r="20" fill="red" x="0" y="0" />
|
||||||
|
<text x="0" y="9" font-size="24" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">8</text>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(0,80)">
|
||||||
|
<g>
|
||||||
|
<circle cx="30" cy="27.5" r="15" fill="url(#grad2)" filter="url(#drop-shadow)" />
|
||||||
|
<g transform="translate(137.0,31.0)">
|
||||||
|
<text x="0" y="-0.0" font-size="14" text-anchor="middle" fill="black" font-family="Helvetica">Piochez une carte.</text>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
</svg>
|
</svg>
|
||||||
|
Before Width: | Height: | Size: 3.0 KiB After Width: | Height: | Size: 3.0 KiB |
@@ -1,6 +1,6 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||||
width="298" height="417" viewBox="0 0 298 417" id="card38">
|
width="298" height="417" viewBox="0 0 298 417" id="card38" class="card" xmlns:v-bind="https://heron.legonzaur.fr">
|
||||||
<defs>
|
<defs>
|
||||||
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
||||||
<stop offset="0" stop-color="red" stop-opacity="1" />
|
<stop offset="0" stop-color="red" stop-opacity="1" />
|
||||||
@@ -13,37 +13,6 @@
|
|||||||
<filter id="drop-shadow">
|
<filter id="drop-shadow">
|
||||||
<feDropShadow dx="1" dy="1" stdDeviation="0"></feDropShadow>
|
<feDropShadow dx="1" dy="1" stdDeviation="0"></feDropShadow>
|
||||||
</filter>
|
</filter>
|
||||||
<g id="faction_icon">
|
|
||||||
<circle cx="1" cy="1" r="20" fill="black" filter="url(#drop-shadow)" />
|
|
||||||
<circle cx="0" cy="0" r="20" fill="url(#grad2)" />
|
|
||||||
</g>
|
|
||||||
<g class="svg_resource_icon" onclick="console.warn('unknown interaction')" id="d0">
|
|
||||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
|
||||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">6</text>
|
|
||||||
</g>
|
|
||||||
<g id="d1">
|
|
||||||
<text x="0" y="-5.5" font-size="11" text-anchor="middle" fill="black" font-family="Helvetica"><tspan x="0" dy="0em">Vous pouvez sacrifier une carte</tspan><tspan x="0" dy="1em">de votre main ou de votre défausse.</tspan></text>
|
|
||||||
</g>
|
|
||||||
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '0' } ) );" id="d2">
|
|
||||||
<circle cx="0" cy="0" r="20" fill="red" x="0" y="0" />
|
|
||||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">2</text>
|
|
||||||
</g>
|
|
||||||
<g id="d3">
|
|
||||||
<circle cx="30" cy="67.5" r="15" fill="gray" filter="url(#drop-shadow)" />
|
|
||||||
<use xlink:href="#d1" x="137.0" y="101.5" />
|
|
||||||
<use xlink:href="#d2" x="137.0" y="60.5" />
|
|
||||||
</g>
|
|
||||||
<g id="effects">
|
|
||||||
<use xlink:href="#d3" x="0" y="0" />
|
|
||||||
</g>
|
|
||||||
<path d="M-2.9999999999999982,-2.0 L-29.6295824562643,-21.347524157501468 L-19.45798706418925,-52.652475842498525 L13.45798706418924,-52.65247584249853 L23.629582456264302,-21.34752415750148 Z" stroke-width="2" id="d4" />
|
|
||||||
<text x="-3" y="-20" font-size="28px" font-weight="bold" font-family="Helvetica" text-anchor="middle" id="d5">5</text>
|
|
||||||
<g id="champion_shield">
|
|
||||||
<use xlink:href="#d4" x="0" y="0" fill="black" stroke="lightgrey" />
|
|
||||||
<rect x="-28" y="-72" width="49" height="17" fill="black" stroke="lightgrey" stroke-width="2" />
|
|
||||||
<text x="-3" y="-59" font-size="12px" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">Garde</text>
|
|
||||||
<use xlink:href="#d5" x="0" y="0" fill="white" />
|
|
||||||
</g>
|
|
||||||
</defs>
|
</defs>
|
||||||
<use xlink:href="#drop-shadow" />
|
<use xlink:href="#drop-shadow" />
|
||||||
<g id="background">
|
<g id="background">
|
||||||
@@ -54,10 +23,38 @@
|
|||||||
<text x="149.0" y="36" font-size="19" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">Lys, the Unseen</text>
|
<text x="149.0" y="36" font-size="19" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">Lys, the Unseen</text>
|
||||||
<text x="149.0" y="53" font-size="13" text-anchor="middle" fill="black" font-family="Helvetica">Champion</text>
|
<text x="149.0" y="53" font-size="13" text-anchor="middle" fill="black" font-family="Helvetica">Champion</text>
|
||||||
</g>
|
</g>
|
||||||
<use xlink:href="#faction_icon" x="36" y="37" />
|
<g transform="translate(36,37)">
|
||||||
<use xlink:href="#d0" x="260" y="36" />
|
<g id="faction_icon">
|
||||||
|
<circle cx="1" cy="1" r="20" fill="black" filter="url(#drop-shadow)" />
|
||||||
|
<circle cx="0" cy="0" r="20" fill="url(#grad2)" />
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(260,36)">
|
||||||
|
<g class="svg_resource_icon" onclick="console.warn('unknown interaction')">
|
||||||
|
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
||||||
|
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">6</text>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
<rect x="0" y="65" width="298" height="200" />
|
<rect x="0" y="65" width="298" height="200" />
|
||||||
<image x="0" y="65" width="298" height="200" xlink:href="../../img/missing.png" />
|
<image x="0" y="65" width="298" height="200" xlink:href="../../img/missing.png" />
|
||||||
<use xlink:href="#effects" x="12" y="265" />
|
<g transform="translate(12,265)">
|
||||||
<use xlink:href="#champion_shield" x="268" y="417" />
|
<g>
|
||||||
|
<circle cx="30" cy="67.5" r="15" fill="gray" filter="url(#drop-shadow)" />
|
||||||
|
<g transform="translate(137.0,101.5)">
|
||||||
|
<text x="0" y="-5.5" font-size="11" text-anchor="middle" fill="black" font-family="Helvetica"><tspan x="0" dy="0em">Vous pouvez sacrifier une carte</tspan><tspan x="0" dy="1em">de votre main ou de votre défausse.</tspan></text>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(137.0,60.5)" v-bind:class="{used:used_effects_indexes.includes(0)}">
|
||||||
|
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '0' } ) );">
|
||||||
|
<circle cx="0" cy="0" r="20" fill="red" x="0" y="0" />
|
||||||
|
<text x="0" y="9" font-size="24" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">2</text>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(268,417)">
|
||||||
|
<path d="M-2.9999999999999982,-2.0 L-29.6295824562643,-21.347524157501468 L-19.45798706418925,-52.652475842498525 L13.45798706418924,-52.65247584249853 L23.629582456264302,-21.34752415750148 Z" fill="black" stroke="lightgrey" stroke-width="2" />
|
||||||
|
<rect x="-28" y="-72" width="49" height="17" fill="black" stroke="lightgrey" stroke-width="2" />
|
||||||
|
<text x="-3" y="-59" font-size="12px" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">Garde</text>
|
||||||
|
<text x="-3" y="-20" font-size="28px" font-weight="bold" font-family="Helvetica" text-anchor="middle" fill="white">5</text>
|
||||||
|
</g>
|
||||||
</svg>
|
</svg>
|
||||||
|
Before Width: | Height: | Size: 3.4 KiB After Width: | Height: | Size: 3.3 KiB |
@@ -1,6 +1,6 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||||
width="298" height="417" viewBox="0 0 298 417" id="card39">
|
width="298" height="417" viewBox="0 0 298 417" id="card39" class="card" xmlns:v-bind="https://heron.legonzaur.fr">
|
||||||
<defs>
|
<defs>
|
||||||
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
||||||
<stop offset="0" stop-color="red" stop-opacity="1" />
|
<stop offset="0" stop-color="red" stop-opacity="1" />
|
||||||
@@ -13,42 +13,6 @@
|
|||||||
<filter id="drop-shadow">
|
<filter id="drop-shadow">
|
||||||
<feDropShadow dx="1" dy="1" stdDeviation="0"></feDropShadow>
|
<feDropShadow dx="1" dy="1" stdDeviation="0"></feDropShadow>
|
||||||
</filter>
|
</filter>
|
||||||
<g id="faction_icon">
|
|
||||||
<circle cx="1" cy="1" r="20" fill="black" filter="url(#drop-shadow)" />
|
|
||||||
<circle cx="0" cy="0" r="20" fill="url(#grad2)" />
|
|
||||||
</g>
|
|
||||||
<g class="svg_resource_icon" onclick="console.warn('unknown interaction')" id="d0">
|
|
||||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
|
||||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">3</text>
|
|
||||||
</g>
|
|
||||||
<g id="d1">
|
|
||||||
<text x="0" y="-5.5" font-size="11" text-anchor="middle" fill="black" font-family="Helvetica"><tspan x="0" dy="0em">Vous pouvez sacrifier une carte</tspan><tspan x="0" dy="1em">de votre main ou de votre défausse.</tspan></text>
|
|
||||||
</g>
|
|
||||||
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '0' } ) );" id="d2">
|
|
||||||
<circle cx="0" cy="0" r="20" fill="red" x="0" y="0" />
|
|
||||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">4</text>
|
|
||||||
</g>
|
|
||||||
<g id="d3">
|
|
||||||
<use xlink:href="#d1" x="137.0" y="70.66666666666667" />
|
|
||||||
<use xlink:href="#d2" x="137.0" y="33.0" />
|
|
||||||
</g>
|
|
||||||
<g id="d4">
|
|
||||||
<text x="0" y="-0.0" font-size="11" text-anchor="middle" fill="black" font-family="Helvetica"></text>
|
|
||||||
</g>
|
|
||||||
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '2' } ) );" id="d5">
|
|
||||||
<circle cx="0" cy="0" r="18.333333333333332" fill="red" x="0" y="0" />
|
|
||||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">3</text>
|
|
||||||
</g>
|
|
||||||
<g id="d6">
|
|
||||||
<circle cx="30" cy="27.5" r="15" fill="url(#grad2)" filter="url(#drop-shadow)" />
|
|
||||||
<use xlink:href="#d4" x="137.0" y="45.666666666666664" />
|
|
||||||
<use xlink:href="#d5" x="137.0" y="27.5" />
|
|
||||||
</g>
|
|
||||||
<g id="effects">
|
|
||||||
<path d="M10,80 L264,80" stroke="black" stroke-width="1" />
|
|
||||||
<use xlink:href="#d3" x="0" y="0" />
|
|
||||||
<use xlink:href="#d6" x="0" y="80" />
|
|
||||||
</g>
|
|
||||||
</defs>
|
</defs>
|
||||||
<use xlink:href="#drop-shadow" />
|
<use xlink:href="#drop-shadow" />
|
||||||
<g id="background">
|
<g id="background">
|
||||||
@@ -59,9 +23,46 @@
|
|||||||
<text x="149.0" y="36" font-size="19" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">the rot</text>
|
<text x="149.0" y="36" font-size="19" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">the rot</text>
|
||||||
<text x="149.0" y="53" font-size="13" text-anchor="middle" fill="black" font-family="Helvetica">Action</text>
|
<text x="149.0" y="53" font-size="13" text-anchor="middle" fill="black" font-family="Helvetica">Action</text>
|
||||||
</g>
|
</g>
|
||||||
<use xlink:href="#faction_icon" x="36" y="37" />
|
<g transform="translate(36,37)">
|
||||||
<use xlink:href="#d0" x="260" y="36" />
|
<g id="faction_icon">
|
||||||
|
<circle cx="1" cy="1" r="20" fill="black" filter="url(#drop-shadow)" />
|
||||||
|
<circle cx="0" cy="0" r="20" fill="url(#grad2)" />
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(260,36)">
|
||||||
|
<g class="svg_resource_icon" onclick="console.warn('unknown interaction')">
|
||||||
|
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
||||||
|
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">3</text>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
<rect x="0" y="65" width="298" height="200" />
|
<rect x="0" y="65" width="298" height="200" />
|
||||||
<image x="0" y="65" width="298" height="200" xlink:href="../../img/missing.png" />
|
<image x="0" y="65" width="298" height="200" xlink:href="../../img/missing.png" />
|
||||||
<use xlink:href="#effects" x="12" y="265" />
|
<g transform="translate(12,265)">
|
||||||
|
<path d="M10,80 L264,80" stroke="black" stroke-width="1" />
|
||||||
|
<g>
|
||||||
|
<g transform="translate(137.0,70.66666666666667)">
|
||||||
|
<text x="0" y="-5.5" font-size="11" text-anchor="middle" fill="black" font-family="Helvetica"><tspan x="0" dy="0em">Vous pouvez sacrifier une carte</tspan><tspan x="0" dy="1em">de votre main ou de votre défausse.</tspan></text>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(137.0,33.0)" v-bind:class="{used:used_effects_indexes.includes(0)}">
|
||||||
|
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '0' } ) );">
|
||||||
|
<circle cx="0" cy="0" r="20" fill="red" x="0" y="0" />
|
||||||
|
<text x="0" y="9" font-size="24" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">4</text>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(0,80)">
|
||||||
|
<g>
|
||||||
|
<circle cx="30" cy="27.5" r="15" fill="url(#grad2)" filter="url(#drop-shadow)" />
|
||||||
|
<g transform="translate(137.0,45.666666666666664)">
|
||||||
|
<text x="0" y="-0.0" font-size="11" text-anchor="middle" fill="black" font-family="Helvetica"></text>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(137.0,27.5)" v-bind:class="{used:used_effects_indexes.includes(2)}">
|
||||||
|
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '2' } ) );">
|
||||||
|
<circle cx="0" cy="0" r="18.333333333333332" fill="red" x="0" y="0" />
|
||||||
|
<text x="0" y="9" font-size="24" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">3</text>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
</svg>
|
</svg>
|
||||||
|
Before Width: | Height: | Size: 3.4 KiB After Width: | Height: | Size: 3.4 KiB |
@@ -1,6 +1,6 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||||
width="298" height="417" viewBox="0 0 298 417" id="card40">
|
width="298" height="417" viewBox="0 0 298 417" id="card40" class="card" xmlns:v-bind="https://heron.legonzaur.fr">
|
||||||
<defs>
|
<defs>
|
||||||
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
||||||
<stop offset="0" stop-color="red" stop-opacity="1" />
|
<stop offset="0" stop-color="red" stop-opacity="1" />
|
||||||
@@ -13,46 +13,6 @@
|
|||||||
<filter id="drop-shadow">
|
<filter id="drop-shadow">
|
||||||
<feDropShadow dx="1" dy="1" stdDeviation="0"></feDropShadow>
|
<feDropShadow dx="1" dy="1" stdDeviation="0"></feDropShadow>
|
||||||
</filter>
|
</filter>
|
||||||
<g id="faction_icon">
|
|
||||||
<circle cx="1" cy="1" r="20" fill="black" filter="url(#drop-shadow)" />
|
|
||||||
<circle cx="0" cy="0" r="20" fill="url(#grad2)" />
|
|
||||||
</g>
|
|
||||||
<g class="svg_resource_icon" onclick="console.warn('unknown interaction')" id="d0">
|
|
||||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
|
||||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">8</text>
|
|
||||||
</g>
|
|
||||||
<g id="d1">
|
|
||||||
<text x="0" y="-5.5" font-size="11" text-anchor="middle" fill="black" font-family="Helvetica"><tspan x="0" dy="0em">Vous pouvez sacrifier jusqu'à deux</tspan><tspan x="0" dy="1em">cartes de votre main et/ou de votre défausse.</tspan></text>
|
|
||||||
</g>
|
|
||||||
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '0' } ) );" id="d2">
|
|
||||||
<circle cx="0" cy="0" r="20" fill="red" x="0" y="0" />
|
|
||||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">4</text>
|
|
||||||
</g>
|
|
||||||
<g id="d3">
|
|
||||||
<circle cx="30" cy="40.0" r="15" fill="gray" filter="url(#drop-shadow)" />
|
|
||||||
<use xlink:href="#d1" x="137.0" y="70.66666666666667" />
|
|
||||||
<use xlink:href="#d2" x="137.0" y="33.0" />
|
|
||||||
</g>
|
|
||||||
<g id="d4">
|
|
||||||
<text x="0" y="-0.0" font-size="14" text-anchor="middle" fill="black" font-family="Helvetica">Piochez une carte.</text>
|
|
||||||
</g>
|
|
||||||
<g id="d5">
|
|
||||||
<circle cx="30" cy="27.5" r="15" fill="url(#grad2)" filter="url(#drop-shadow)" />
|
|
||||||
<use xlink:href="#d4" x="137.0" y="31.0" />
|
|
||||||
</g>
|
|
||||||
<g id="effects">
|
|
||||||
<path d="M10,80 L264,80" stroke="black" stroke-width="1" />
|
|
||||||
<use xlink:href="#d3" x="0" y="0" />
|
|
||||||
<use xlink:href="#d5" x="0" y="80" />
|
|
||||||
</g>
|
|
||||||
<path d="M-2.9999999999999982,-2.0 L-29.6295824562643,-21.347524157501468 L-19.45798706418925,-52.652475842498525 L13.45798706418924,-52.65247584249853 L23.629582456264302,-21.34752415750148 Z" stroke-width="2" id="d6" />
|
|
||||||
<text x="-3" y="-20" font-size="28px" font-weight="bold" font-family="Helvetica" text-anchor="middle" id="d7">6</text>
|
|
||||||
<g id="champion_shield">
|
|
||||||
<use xlink:href="#d6" x="0" y="0" fill="black" stroke="lightgrey" />
|
|
||||||
<rect x="-28" y="-72" width="49" height="17" fill="black" stroke="lightgrey" stroke-width="2" />
|
|
||||||
<text x="-3" y="-59" font-size="12px" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">Garde</text>
|
|
||||||
<use xlink:href="#d7" x="0" y="0" fill="white" />
|
|
||||||
</g>
|
|
||||||
</defs>
|
</defs>
|
||||||
<use xlink:href="#drop-shadow" />
|
<use xlink:href="#drop-shadow" />
|
||||||
<g id="background">
|
<g id="background">
|
||||||
@@ -63,10 +23,47 @@
|
|||||||
<text x="149.0" y="36" font-size="16" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">tyrannor, the devourer</text>
|
<text x="149.0" y="36" font-size="16" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">tyrannor, the devourer</text>
|
||||||
<text x="149.0" y="53" font-size="13" text-anchor="middle" fill="black" font-family="Helvetica">Champion</text>
|
<text x="149.0" y="53" font-size="13" text-anchor="middle" fill="black" font-family="Helvetica">Champion</text>
|
||||||
</g>
|
</g>
|
||||||
<use xlink:href="#faction_icon" x="36" y="37" />
|
<g transform="translate(36,37)">
|
||||||
<use xlink:href="#d0" x="260" y="36" />
|
<g id="faction_icon">
|
||||||
|
<circle cx="1" cy="1" r="20" fill="black" filter="url(#drop-shadow)" />
|
||||||
|
<circle cx="0" cy="0" r="20" fill="url(#grad2)" />
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(260,36)">
|
||||||
|
<g class="svg_resource_icon" onclick="console.warn('unknown interaction')">
|
||||||
|
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
||||||
|
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">8</text>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
<rect x="0" y="65" width="298" height="200" />
|
<rect x="0" y="65" width="298" height="200" />
|
||||||
<image x="0" y="65" width="298" height="200" xlink:href="../../img/missing.png" />
|
<image x="0" y="65" width="298" height="200" xlink:href="../../img/missing.png" />
|
||||||
<use xlink:href="#effects" x="12" y="265" />
|
<g transform="translate(12,265)">
|
||||||
<use xlink:href="#champion_shield" x="268" y="417" />
|
<path d="M10,80 L264,80" stroke="black" stroke-width="1" />
|
||||||
|
<g>
|
||||||
|
<circle cx="30" cy="40.0" r="15" fill="gray" filter="url(#drop-shadow)" />
|
||||||
|
<g transform="translate(137.0,70.66666666666667)">
|
||||||
|
<text x="0" y="-5.5" font-size="11" text-anchor="middle" fill="black" font-family="Helvetica"><tspan x="0" dy="0em">Vous pouvez sacrifier jusqu'à deux</tspan><tspan x="0" dy="1em">cartes de votre main et/ou de votre défausse.</tspan></text>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(137.0,33.0)" v-bind:class="{used:used_effects_indexes.includes(0)}">
|
||||||
|
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '0' } ) );">
|
||||||
|
<circle cx="0" cy="0" r="20" fill="red" x="0" y="0" />
|
||||||
|
<text x="0" y="9" font-size="24" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">4</text>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(0,80)">
|
||||||
|
<g>
|
||||||
|
<circle cx="30" cy="27.5" r="15" fill="url(#grad2)" filter="url(#drop-shadow)" />
|
||||||
|
<g transform="translate(137.0,31.0)">
|
||||||
|
<text x="0" y="-0.0" font-size="14" text-anchor="middle" fill="black" font-family="Helvetica">Piochez une carte.</text>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(268,417)">
|
||||||
|
<path d="M-2.9999999999999982,-2.0 L-29.6295824562643,-21.347524157501468 L-19.45798706418925,-52.652475842498525 L13.45798706418924,-52.65247584249853 L23.629582456264302,-21.34752415750148 Z" fill="black" stroke="lightgrey" stroke-width="2" />
|
||||||
|
<rect x="-28" y="-72" width="49" height="17" fill="black" stroke="lightgrey" stroke-width="2" />
|
||||||
|
<text x="-3" y="-59" font-size="12px" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">Garde</text>
|
||||||
|
<text x="-3" y="-20" font-size="28px" font-weight="bold" font-family="Helvetica" text-anchor="middle" fill="white">6</text>
|
||||||
|
</g>
|
||||||
</svg>
|
</svg>
|
||||||
|
Before Width: | Height: | Size: 3.8 KiB After Width: | Height: | Size: 3.7 KiB |
@@ -1,6 +1,6 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||||
width="298" height="417" viewBox="0 0 298 417" id="card41">
|
width="298" height="417" viewBox="0 0 298 417" id="card41" class="card" xmlns:v-bind="https://heron.legonzaur.fr">
|
||||||
<defs>
|
<defs>
|
||||||
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
||||||
<stop offset="0" stop-color="red" stop-opacity="1" />
|
<stop offset="0" stop-color="red" stop-opacity="1" />
|
||||||
@@ -13,39 +13,6 @@
|
|||||||
<filter id="drop-shadow">
|
<filter id="drop-shadow">
|
||||||
<feDropShadow dx="1" dy="1" stdDeviation="0"></feDropShadow>
|
<feDropShadow dx="1" dy="1" stdDeviation="0"></feDropShadow>
|
||||||
</filter>
|
</filter>
|
||||||
<g id="faction_icon">
|
|
||||||
<circle cx="1" cy="1" r="20" fill="black" filter="url(#drop-shadow)" />
|
|
||||||
<circle cx="0" cy="0" r="20" fill="url(#grad2)" />
|
|
||||||
</g>
|
|
||||||
<g class="svg_resource_icon" onclick="console.warn('unknown interaction')" id="d0">
|
|
||||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
|
||||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">5</text>
|
|
||||||
</g>
|
|
||||||
<g id="d1">
|
|
||||||
<text x="0" y="-5.5" font-size="11" text-anchor="middle" fill="black" font-family="Helvetica"><tspan x="0" dy="0em">Mettez un champion de votre défausse</tspan><tspan x="0" dy="1em">au dessus de votre pioche.</tspan></text>
|
|
||||||
</g>
|
|
||||||
<g id="d2">
|
|
||||||
<circle cx="30" cy="40.0" r="15" fill="gray" filter="url(#drop-shadow)" />
|
|
||||||
<use xlink:href="#d1" x="137.0" y="43.5" />
|
|
||||||
</g>
|
|
||||||
<g id="d3">
|
|
||||||
<text x="0" y="-0.0" font-size="14" text-anchor="middle" fill="black" font-family="Helvetica">Piochez une carte.</text>
|
|
||||||
</g>
|
|
||||||
<g id="d4">
|
|
||||||
<circle cx="30" cy="27.5" r="15" fill="url(#grad2)" filter="url(#drop-shadow)" />
|
|
||||||
<use xlink:href="#d3" x="137.0" y="31.0" />
|
|
||||||
</g>
|
|
||||||
<g id="effects">
|
|
||||||
<path d="M10,80 L264,80" stroke="black" stroke-width="1" />
|
|
||||||
<use xlink:href="#d2" x="0" y="0" />
|
|
||||||
<use xlink:href="#d4" x="0" y="80" />
|
|
||||||
</g>
|
|
||||||
<path d="M-2.9999999999999982,-2.0 L-29.6295824562643,-21.347524157501468 L-19.45798706418925,-52.652475842498525 L13.45798706418924,-52.65247584249853 L23.629582456264302,-21.34752415750148 Z" stroke-width="2" id="d5" />
|
|
||||||
<text x="-3" y="-20" font-size="28px" font-weight="bold" font-family="Helvetica" text-anchor="middle" id="d6">3</text>
|
|
||||||
<g id="champion_shield">
|
|
||||||
<use xlink:href="#d5" x="0" y="0" fill="darkgrey" stroke="#eee" />
|
|
||||||
<use xlink:href="#d6" x="0" y="0" fill="black" />
|
|
||||||
</g>
|
|
||||||
</defs>
|
</defs>
|
||||||
<use xlink:href="#drop-shadow" />
|
<use xlink:href="#drop-shadow" />
|
||||||
<g id="background">
|
<g id="background">
|
||||||
@@ -56,10 +23,39 @@
|
|||||||
<text x="149.0" y="36" font-size="16" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">varrick, the necromancer</text>
|
<text x="149.0" y="36" font-size="16" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">varrick, the necromancer</text>
|
||||||
<text x="149.0" y="53" font-size="13" text-anchor="middle" fill="black" font-family="Helvetica">Champion</text>
|
<text x="149.0" y="53" font-size="13" text-anchor="middle" fill="black" font-family="Helvetica">Champion</text>
|
||||||
</g>
|
</g>
|
||||||
<use xlink:href="#faction_icon" x="36" y="37" />
|
<g transform="translate(36,37)">
|
||||||
<use xlink:href="#d0" x="260" y="36" />
|
<g id="faction_icon">
|
||||||
|
<circle cx="1" cy="1" r="20" fill="black" filter="url(#drop-shadow)" />
|
||||||
|
<circle cx="0" cy="0" r="20" fill="url(#grad2)" />
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(260,36)">
|
||||||
|
<g class="svg_resource_icon" onclick="console.warn('unknown interaction')">
|
||||||
|
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
||||||
|
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">5</text>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
<rect x="0" y="65" width="298" height="200" />
|
<rect x="0" y="65" width="298" height="200" />
|
||||||
<image x="0" y="65" width="298" height="200" xlink:href="../../img/missing.png" />
|
<image x="0" y="65" width="298" height="200" xlink:href="../../img/missing.png" />
|
||||||
<use xlink:href="#effects" x="12" y="265" />
|
<g transform="translate(12,265)">
|
||||||
<use xlink:href="#champion_shield" x="268" y="417" />
|
<path d="M10,80 L264,80" stroke="black" stroke-width="1" />
|
||||||
|
<g>
|
||||||
|
<circle cx="30" cy="40.0" r="15" fill="gray" filter="url(#drop-shadow)" />
|
||||||
|
<g transform="translate(137.0,43.5)">
|
||||||
|
<text x="0" y="-5.5" font-size="11" text-anchor="middle" fill="black" font-family="Helvetica"><tspan x="0" dy="0em">Mettez un champion de votre défausse</tspan><tspan x="0" dy="1em">au dessus de votre pioche.</tspan></text>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(0,80)">
|
||||||
|
<g>
|
||||||
|
<circle cx="30" cy="27.5" r="15" fill="url(#grad2)" filter="url(#drop-shadow)" />
|
||||||
|
<g transform="translate(137.0,31.0)">
|
||||||
|
<text x="0" y="-0.0" font-size="14" text-anchor="middle" fill="black" font-family="Helvetica">Piochez une carte.</text>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(268,417)">
|
||||||
|
<path d="M-2.9999999999999982,-2.0 L-29.6295824562643,-21.347524157501468 L-19.45798706418925,-52.652475842498525 L13.45798706418924,-52.65247584249853 L23.629582456264302,-21.34752415750148 Z" fill="darkgrey" stroke="#eee" stroke-width="2" />
|
||||||
|
<text x="-3" y="-20" font-size="28px" font-weight="bold" font-family="Helvetica" text-anchor="middle" fill="black">3</text>
|
||||||
|
</g>
|
||||||
</svg>
|
</svg>
|
||||||
|
Before Width: | Height: | Size: 3.2 KiB After Width: | Height: | Size: 3.0 KiB |
@@ -1,6 +1,6 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||||
width="298" height="417" viewBox="0 0 298 417" id="card42">
|
width="298" height="417" viewBox="0 0 298 417" id="card42" class="card" xmlns:v-bind="https://heron.legonzaur.fr">
|
||||||
<defs>
|
<defs>
|
||||||
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
||||||
<stop offset="0" stop-color="green" stop-opacity="1" />
|
<stop offset="0" stop-color="green" stop-opacity="1" />
|
||||||
@@ -13,44 +13,6 @@
|
|||||||
<filter id="drop-shadow">
|
<filter id="drop-shadow">
|
||||||
<feDropShadow dx="1" dy="1" stdDeviation="0"></feDropShadow>
|
<feDropShadow dx="1" dy="1" stdDeviation="0"></feDropShadow>
|
||||||
</filter>
|
</filter>
|
||||||
<g id="faction_icon">
|
|
||||||
<circle cx="1" cy="1" r="20" fill="black" filter="url(#drop-shadow)" />
|
|
||||||
<circle cx="0" cy="0" r="20" fill="url(#grad2)" />
|
|
||||||
</g>
|
|
||||||
<g class="svg_resource_icon" onclick="console.warn('unknown interaction')" id="d0">
|
|
||||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
|
||||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">4</text>
|
|
||||||
</g>
|
|
||||||
<g id="d1">
|
|
||||||
<text x="0" y="-0.0" font-size="13.333333333333334" text-anchor="middle" fill="black" font-family="Helvetica"></text>
|
|
||||||
</g>
|
|
||||||
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '0' } ) );" id="d2">
|
|
||||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
|
||||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">2</text>
|
|
||||||
</g>
|
|
||||||
<g id="d3">
|
|
||||||
<circle cx="30" cy="40.0" r="15" fill="gray" filter="url(#drop-shadow)" />
|
|
||||||
<use xlink:href="#d1" x="137.0" y="70.66666666666667" />
|
|
||||||
<use xlink:href="#d2" x="137.0" y="40.0" />
|
|
||||||
</g>
|
|
||||||
<g id="d4">
|
|
||||||
<text x="0" y="-7.0" font-size="14" text-anchor="middle" fill="black" font-family="Helvetica"><tspan x="0" dy="0em">L'adversaire ciblé</tspan><tspan x="0" dy="1em">se défausse d'une carte.</tspan></text>
|
|
||||||
</g>
|
|
||||||
<g id="d5">
|
|
||||||
<circle cx="30" cy="27.5" r="15" fill="url(#grad2)" filter="url(#drop-shadow)" />
|
|
||||||
<use xlink:href="#d4" x="137.0" y="31.0" />
|
|
||||||
</g>
|
|
||||||
<g id="effects">
|
|
||||||
<path d="M10,80 L264,80" stroke="black" stroke-width="1" />
|
|
||||||
<use xlink:href="#d3" x="0" y="0" />
|
|
||||||
<use xlink:href="#d5" x="0" y="80" />
|
|
||||||
</g>
|
|
||||||
<path d="M-2.9999999999999982,-2.0 L-29.6295824562643,-21.347524157501468 L-19.45798706418925,-52.652475842498525 L13.45798706418924,-52.65247584249853 L23.629582456264302,-21.34752415750148 Z" stroke-width="2" id="d6" />
|
|
||||||
<text x="-3" y="-20" font-size="28px" font-weight="bold" font-family="Helvetica" text-anchor="middle" id="d7">6</text>
|
|
||||||
<g id="champion_shield">
|
|
||||||
<use xlink:href="#d6" x="0" y="0" fill="darkgrey" stroke="#eee" />
|
|
||||||
<use xlink:href="#d7" x="0" y="0" fill="black" />
|
|
||||||
</g>
|
|
||||||
</defs>
|
</defs>
|
||||||
<use xlink:href="#drop-shadow" />
|
<use xlink:href="#drop-shadow" />
|
||||||
<g id="background">
|
<g id="background">
|
||||||
@@ -61,10 +23,45 @@
|
|||||||
<text x="149.0" y="36" font-size="19" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">broelyn, loreweaver</text>
|
<text x="149.0" y="36" font-size="19" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">broelyn, loreweaver</text>
|
||||||
<text x="149.0" y="53" font-size="13" text-anchor="middle" fill="black" font-family="Helvetica">Champion</text>
|
<text x="149.0" y="53" font-size="13" text-anchor="middle" fill="black" font-family="Helvetica">Champion</text>
|
||||||
</g>
|
</g>
|
||||||
<use xlink:href="#faction_icon" x="36" y="37" />
|
<g transform="translate(36,37)">
|
||||||
<use xlink:href="#d0" x="260" y="36" />
|
<g id="faction_icon">
|
||||||
|
<circle cx="1" cy="1" r="20" fill="black" filter="url(#drop-shadow)" />
|
||||||
|
<circle cx="0" cy="0" r="20" fill="url(#grad2)" />
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(260,36)">
|
||||||
|
<g class="svg_resource_icon" onclick="console.warn('unknown interaction')">
|
||||||
|
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
||||||
|
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">4</text>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
<rect x="0" y="65" width="298" height="200" />
|
<rect x="0" y="65" width="298" height="200" />
|
||||||
<image x="0" y="65" width="298" height="200" xlink:href="../../img/missing.png" />
|
<image x="0" y="65" width="298" height="200" xlink:href="../../img/missing.png" />
|
||||||
<use xlink:href="#effects" x="12" y="265" />
|
<g transform="translate(12,265)">
|
||||||
<use xlink:href="#champion_shield" x="268" y="417" />
|
<path d="M10,80 L264,80" stroke="black" stroke-width="1" />
|
||||||
|
<g>
|
||||||
|
<circle cx="30" cy="40.0" r="15" fill="gray" filter="url(#drop-shadow)" />
|
||||||
|
<g transform="translate(137.0,70.66666666666667)">
|
||||||
|
<text x="0" y="-0.0" font-size="13.333333333333334" text-anchor="middle" fill="black" font-family="Helvetica"></text>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(137.0,40.0)" v-bind:class="{used:used_effects_indexes.includes(0)}">
|
||||||
|
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '0' } ) );">
|
||||||
|
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
||||||
|
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">2</text>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(0,80)">
|
||||||
|
<g>
|
||||||
|
<circle cx="30" cy="27.5" r="15" fill="url(#grad2)" filter="url(#drop-shadow)" />
|
||||||
|
<g transform="translate(137.0,31.0)">
|
||||||
|
<text x="0" y="-7.0" font-size="14" text-anchor="middle" fill="black" font-family="Helvetica"><tspan x="0" dy="0em">L'adversaire ciblé</tspan><tspan x="0" dy="1em">se défausse d'une carte.</tspan></text>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(268,417)">
|
||||||
|
<path d="M-2.9999999999999982,-2.0 L-29.6295824562643,-21.347524157501468 L-19.45798706418925,-52.652475842498525 L13.45798706418924,-52.65247584249853 L23.629582456264302,-21.34752415750148 Z" fill="darkgrey" stroke="#eee" stroke-width="2" />
|
||||||
|
<text x="-3" y="-20" font-size="28px" font-weight="bold" font-family="Helvetica" text-anchor="middle" fill="black">6</text>
|
||||||
|
</g>
|
||||||
</svg>
|
</svg>
|
||||||
|
Before Width: | Height: | Size: 3.6 KiB After Width: | Height: | Size: 3.4 KiB |
@@ -1,6 +1,6 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||||
width="298" height="417" viewBox="0 0 298 417" id="card43">
|
width="298" height="417" viewBox="0 0 298 417" id="card43" class="card" xmlns:v-bind="https://heron.legonzaur.fr">
|
||||||
<defs>
|
<defs>
|
||||||
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
||||||
<stop offset="0" stop-color="green" stop-opacity="1" />
|
<stop offset="0" stop-color="green" stop-opacity="1" />
|
||||||
@@ -13,44 +13,6 @@
|
|||||||
<filter id="drop-shadow">
|
<filter id="drop-shadow">
|
||||||
<feDropShadow dx="1" dy="1" stdDeviation="0"></feDropShadow>
|
<feDropShadow dx="1" dy="1" stdDeviation="0"></feDropShadow>
|
||||||
</filter>
|
</filter>
|
||||||
<g id="faction_icon">
|
|
||||||
<circle cx="1" cy="1" r="20" fill="black" filter="url(#drop-shadow)" />
|
|
||||||
<circle cx="0" cy="0" r="20" fill="url(#grad2)" />
|
|
||||||
</g>
|
|
||||||
<g class="svg_resource_icon" onclick="console.warn('unknown interaction')" id="d0">
|
|
||||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
|
||||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">6</text>
|
|
||||||
</g>
|
|
||||||
<g id="d1">
|
|
||||||
<text x="0" y="-0.0" font-size="13.333333333333334" text-anchor="middle" fill="black" font-family="Helvetica"></text>
|
|
||||||
</g>
|
|
||||||
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '0' } ) );" id="d2">
|
|
||||||
<circle cx="0" cy="0" r="20" fill="red" x="0" y="0" />
|
|
||||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">5</text>
|
|
||||||
</g>
|
|
||||||
<g id="d3">
|
|
||||||
<circle cx="30" cy="40.0" r="15" fill="gray" filter="url(#drop-shadow)" />
|
|
||||||
<use xlink:href="#d1" x="137.0" y="70.66666666666667" />
|
|
||||||
<use xlink:href="#d2" x="137.0" y="40.0" />
|
|
||||||
</g>
|
|
||||||
<g id="d4">
|
|
||||||
<text x="0" y="-0.0" font-size="14" text-anchor="middle" fill="black" font-family="Helvetica">Piochez une carte.</text>
|
|
||||||
</g>
|
|
||||||
<g id="d5">
|
|
||||||
<circle cx="30" cy="27.5" r="15" fill="url(#grad2)" filter="url(#drop-shadow)" />
|
|
||||||
<use xlink:href="#d4" x="137.0" y="31.0" />
|
|
||||||
</g>
|
|
||||||
<g id="effects">
|
|
||||||
<path d="M10,80 L264,80" stroke="black" stroke-width="1" />
|
|
||||||
<use xlink:href="#d3" x="0" y="0" />
|
|
||||||
<use xlink:href="#d5" x="0" y="80" />
|
|
||||||
</g>
|
|
||||||
<path d="M-2.9999999999999982,-2.0 L-29.6295824562643,-21.347524157501468 L-19.45798706418925,-52.652475842498525 L13.45798706418924,-52.65247584249853 L23.629582456264302,-21.34752415750148 Z" stroke-width="2" id="d6" />
|
|
||||||
<text x="-3" y="-20" font-size="28px" font-weight="bold" font-family="Helvetica" text-anchor="middle" id="d7">6</text>
|
|
||||||
<g id="champion_shield">
|
|
||||||
<use xlink:href="#d6" x="0" y="0" fill="darkgrey" stroke="#eee" />
|
|
||||||
<use xlink:href="#d7" x="0" y="0" fill="black" />
|
|
||||||
</g>
|
|
||||||
</defs>
|
</defs>
|
||||||
<use xlink:href="#drop-shadow" />
|
<use xlink:href="#drop-shadow" />
|
||||||
<g id="background">
|
<g id="background">
|
||||||
@@ -61,10 +23,45 @@
|
|||||||
<text x="149.0" y="36" font-size="19" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">cron, the berserker</text>
|
<text x="149.0" y="36" font-size="19" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">cron, the berserker</text>
|
||||||
<text x="149.0" y="53" font-size="13" text-anchor="middle" fill="black" font-family="Helvetica">Champion</text>
|
<text x="149.0" y="53" font-size="13" text-anchor="middle" fill="black" font-family="Helvetica">Champion</text>
|
||||||
</g>
|
</g>
|
||||||
<use xlink:href="#faction_icon" x="36" y="37" />
|
<g transform="translate(36,37)">
|
||||||
<use xlink:href="#d0" x="260" y="36" />
|
<g id="faction_icon">
|
||||||
|
<circle cx="1" cy="1" r="20" fill="black" filter="url(#drop-shadow)" />
|
||||||
|
<circle cx="0" cy="0" r="20" fill="url(#grad2)" />
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(260,36)">
|
||||||
|
<g class="svg_resource_icon" onclick="console.warn('unknown interaction')">
|
||||||
|
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
||||||
|
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">6</text>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
<rect x="0" y="65" width="298" height="200" />
|
<rect x="0" y="65" width="298" height="200" />
|
||||||
<image x="0" y="65" width="298" height="200" xlink:href="../../img/missing.png" />
|
<image x="0" y="65" width="298" height="200" xlink:href="../../img/missing.png" />
|
||||||
<use xlink:href="#effects" x="12" y="265" />
|
<g transform="translate(12,265)">
|
||||||
<use xlink:href="#champion_shield" x="268" y="417" />
|
<path d="M10,80 L264,80" stroke="black" stroke-width="1" />
|
||||||
|
<g>
|
||||||
|
<circle cx="30" cy="40.0" r="15" fill="gray" filter="url(#drop-shadow)" />
|
||||||
|
<g transform="translate(137.0,70.66666666666667)">
|
||||||
|
<text x="0" y="-0.0" font-size="13.333333333333334" text-anchor="middle" fill="black" font-family="Helvetica"></text>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(137.0,40.0)" v-bind:class="{used:used_effects_indexes.includes(0)}">
|
||||||
|
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '0' } ) );">
|
||||||
|
<circle cx="0" cy="0" r="20" fill="red" x="0" y="0" />
|
||||||
|
<text x="0" y="9" font-size="24" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">5</text>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(0,80)">
|
||||||
|
<g>
|
||||||
|
<circle cx="30" cy="27.5" r="15" fill="url(#grad2)" filter="url(#drop-shadow)" />
|
||||||
|
<g transform="translate(137.0,31.0)">
|
||||||
|
<text x="0" y="-0.0" font-size="14" text-anchor="middle" fill="black" font-family="Helvetica">Piochez une carte.</text>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(268,417)">
|
||||||
|
<path d="M-2.9999999999999982,-2.0 L-29.6295824562643,-21.347524157501468 L-19.45798706418925,-52.652475842498525 L13.45798706418924,-52.65247584249853 L23.629582456264302,-21.34752415750148 Z" fill="darkgrey" stroke="#eee" stroke-width="2" />
|
||||||
|
<text x="-3" y="-20" font-size="28px" font-weight="bold" font-family="Helvetica" text-anchor="middle" fill="black">6</text>
|
||||||
|
</g>
|
||||||
</svg>
|
</svg>
|
||||||
|
Before Width: | Height: | Size: 3.5 KiB After Width: | Height: | Size: 3.3 KiB |
@@ -1,6 +1,6 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||||
width="298" height="417" viewBox="0 0 298 417" id="card44">
|
width="298" height="417" viewBox="0 0 298 417" id="card44" class="card" xmlns:v-bind="https://heron.legonzaur.fr">
|
||||||
<defs>
|
<defs>
|
||||||
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
||||||
<stop offset="0" stop-color="green" stop-opacity="1" />
|
<stop offset="0" stop-color="green" stop-opacity="1" />
|
||||||
@@ -13,51 +13,6 @@
|
|||||||
<filter id="drop-shadow">
|
<filter id="drop-shadow">
|
||||||
<feDropShadow dx="1" dy="1" stdDeviation="0"></feDropShadow>
|
<feDropShadow dx="1" dy="1" stdDeviation="0"></feDropShadow>
|
||||||
</filter>
|
</filter>
|
||||||
<g id="faction_icon">
|
|
||||||
<circle cx="1" cy="1" r="20" fill="black" filter="url(#drop-shadow)" />
|
|
||||||
<circle cx="0" cy="0" r="20" fill="url(#grad2)" />
|
|
||||||
</g>
|
|
||||||
<g class="svg_resource_icon" onclick="console.warn('unknown interaction')" id="d0">
|
|
||||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
|
||||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">5</text>
|
|
||||||
</g>
|
|
||||||
<g id="d1">
|
|
||||||
<text x="0" y="-0.0" font-size="13.333333333333334" text-anchor="middle" fill="black" font-family="Helvetica"></text>
|
|
||||||
</g>
|
|
||||||
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '0' } ) );" id="d2">
|
|
||||||
<circle cx="0" cy="0" r="20" fill="red" x="0" y="0" />
|
|
||||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">3</text>
|
|
||||||
</g>
|
|
||||||
<g id="d3">
|
|
||||||
<circle cx="30" cy="40.0" r="15" fill="gray" filter="url(#drop-shadow)" />
|
|
||||||
<use xlink:href="#d1" x="137.0" y="70.66666666666667" />
|
|
||||||
<use xlink:href="#d2" x="137.0" y="40.0" />
|
|
||||||
</g>
|
|
||||||
<g id="d4">
|
|
||||||
<text x="0" y="-0.0" font-size="11" text-anchor="middle" fill="black" font-family="Helvetica"></text>
|
|
||||||
</g>
|
|
||||||
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '1' } ) );" id="d5">
|
|
||||||
<circle cx="0" cy="0" r="18.333333333333332" fill="red" x="0" y="0" />
|
|
||||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">4</text>
|
|
||||||
</g>
|
|
||||||
<g id="d6">
|
|
||||||
<circle cx="30" cy="27.5" r="15" fill="url(#grad2)" filter="url(#drop-shadow)" />
|
|
||||||
<use xlink:href="#d4" x="137.0" y="45.666666666666664" />
|
|
||||||
<use xlink:href="#d5" x="137.0" y="27.5" />
|
|
||||||
</g>
|
|
||||||
<g id="effects">
|
|
||||||
<path d="M10,80 L264,80" stroke="black" stroke-width="1" />
|
|
||||||
<use xlink:href="#d3" x="0" y="0" />
|
|
||||||
<use xlink:href="#d6" x="0" y="80" />
|
|
||||||
</g>
|
|
||||||
<path d="M-2.9999999999999982,-2.0 L-29.6295824562643,-21.347524157501468 L-19.45798706418925,-52.652475842498525 L13.45798706418924,-52.65247584249853 L23.629582456264302,-21.34752415750148 Z" stroke-width="2" id="d7" />
|
|
||||||
<text x="-3" y="-20" font-size="28px" font-weight="bold" font-family="Helvetica" text-anchor="middle" id="d8">5</text>
|
|
||||||
<g id="champion_shield">
|
|
||||||
<use xlink:href="#d7" x="0" y="0" fill="black" stroke="lightgrey" />
|
|
||||||
<rect x="-28" y="-72" width="49" height="17" fill="black" stroke="lightgrey" stroke-width="2" />
|
|
||||||
<text x="-3" y="-59" font-size="12px" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">Garde</text>
|
|
||||||
<use xlink:href="#d8" x="0" y="0" fill="white" />
|
|
||||||
</g>
|
|
||||||
</defs>
|
</defs>
|
||||||
<use xlink:href="#drop-shadow" />
|
<use xlink:href="#drop-shadow" />
|
||||||
<g id="background">
|
<g id="background">
|
||||||
@@ -68,10 +23,53 @@
|
|||||||
<text x="149.0" y="36" font-size="19" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">dire wolf</text>
|
<text x="149.0" y="36" font-size="19" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">dire wolf</text>
|
||||||
<text x="149.0" y="53" font-size="13" text-anchor="middle" fill="black" font-family="Helvetica">Champion</text>
|
<text x="149.0" y="53" font-size="13" text-anchor="middle" fill="black" font-family="Helvetica">Champion</text>
|
||||||
</g>
|
</g>
|
||||||
<use xlink:href="#faction_icon" x="36" y="37" />
|
<g transform="translate(36,37)">
|
||||||
<use xlink:href="#d0" x="260" y="36" />
|
<g id="faction_icon">
|
||||||
|
<circle cx="1" cy="1" r="20" fill="black" filter="url(#drop-shadow)" />
|
||||||
|
<circle cx="0" cy="0" r="20" fill="url(#grad2)" />
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(260,36)">
|
||||||
|
<g class="svg_resource_icon" onclick="console.warn('unknown interaction')">
|
||||||
|
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
||||||
|
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">5</text>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
<rect x="0" y="65" width="298" height="200" />
|
<rect x="0" y="65" width="298" height="200" />
|
||||||
<image x="0" y="65" width="298" height="200" xlink:href="../../img/missing.png" />
|
<image x="0" y="65" width="298" height="200" xlink:href="../../img/missing.png" />
|
||||||
<use xlink:href="#effects" x="12" y="265" />
|
<g transform="translate(12,265)">
|
||||||
<use xlink:href="#champion_shield" x="268" y="417" />
|
<path d="M10,80 L264,80" stroke="black" stroke-width="1" />
|
||||||
|
<g>
|
||||||
|
<circle cx="30" cy="40.0" r="15" fill="gray" filter="url(#drop-shadow)" />
|
||||||
|
<g transform="translate(137.0,70.66666666666667)">
|
||||||
|
<text x="0" y="-0.0" font-size="13.333333333333334" text-anchor="middle" fill="black" font-family="Helvetica"></text>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(137.0,40.0)" v-bind:class="{used:used_effects_indexes.includes(0)}">
|
||||||
|
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '0' } ) );">
|
||||||
|
<circle cx="0" cy="0" r="20" fill="red" x="0" y="0" />
|
||||||
|
<text x="0" y="9" font-size="24" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">3</text>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(0,80)">
|
||||||
|
<g>
|
||||||
|
<circle cx="30" cy="27.5" r="15" fill="url(#grad2)" filter="url(#drop-shadow)" />
|
||||||
|
<g transform="translate(137.0,45.666666666666664)">
|
||||||
|
<text x="0" y="-0.0" font-size="11" text-anchor="middle" fill="black" font-family="Helvetica"></text>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(137.0,27.5)" v-bind:class="{used:used_effects_indexes.includes(1)}">
|
||||||
|
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '1' } ) );">
|
||||||
|
<circle cx="0" cy="0" r="18.333333333333332" fill="red" x="0" y="0" />
|
||||||
|
<text x="0" y="9" font-size="24" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">4</text>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(268,417)">
|
||||||
|
<path d="M-2.9999999999999982,-2.0 L-29.6295824562643,-21.347524157501468 L-19.45798706418925,-52.652475842498525 L13.45798706418924,-52.65247584249853 L23.629582456264302,-21.34752415750148 Z" fill="black" stroke="lightgrey" stroke-width="2" />
|
||||||
|
<rect x="-28" y="-72" width="49" height="17" fill="black" stroke="lightgrey" stroke-width="2" />
|
||||||
|
<text x="-3" y="-59" font-size="12px" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">Garde</text>
|
||||||
|
<text x="-3" y="-20" font-size="28px" font-weight="bold" font-family="Helvetica" text-anchor="middle" fill="white">5</text>
|
||||||
|
</g>
|
||||||
</svg>
|
</svg>
|
||||||
|
Before Width: | Height: | Size: 4.1 KiB After Width: | Height: | Size: 4.0 KiB |
@@ -1,6 +1,6 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||||
width="298" height="417" viewBox="0 0 298 417" id="card45">
|
width="298" height="417" viewBox="0 0 298 417" id="card45" class="card" xmlns:v-bind="https://heron.legonzaur.fr">
|
||||||
<defs>
|
<defs>
|
||||||
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
||||||
<stop offset="0" stop-color="green" stop-opacity="1" />
|
<stop offset="0" stop-color="green" stop-opacity="1" />
|
||||||
@@ -13,42 +13,6 @@
|
|||||||
<filter id="drop-shadow">
|
<filter id="drop-shadow">
|
||||||
<feDropShadow dx="1" dy="1" stdDeviation="0"></feDropShadow>
|
<feDropShadow dx="1" dy="1" stdDeviation="0"></feDropShadow>
|
||||||
</filter>
|
</filter>
|
||||||
<g id="faction_icon">
|
|
||||||
<circle cx="1" cy="1" r="20" fill="black" filter="url(#drop-shadow)" />
|
|
||||||
<circle cx="0" cy="0" r="20" fill="url(#grad2)" />
|
|
||||||
</g>
|
|
||||||
<g class="svg_resource_icon" onclick="console.warn('unknown interaction')" id="d0">
|
|
||||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
|
||||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">3</text>
|
|
||||||
</g>
|
|
||||||
<g id="d1">
|
|
||||||
<text x="0" y="-0.0" font-size="13.333333333333334" text-anchor="middle" fill="black" font-family="Helvetica">L'adversaire ciblé se défausse d'une carte.</text>
|
|
||||||
</g>
|
|
||||||
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '0' } ) );" id="d2">
|
|
||||||
<circle cx="0" cy="0" r="20" fill="red" x="0" y="0" />
|
|
||||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">6</text>
|
|
||||||
</g>
|
|
||||||
<g id="d3">
|
|
||||||
<use xlink:href="#d1" x="137.0" y="70.66666666666667" />
|
|
||||||
<use xlink:href="#d2" x="137.0" y="33.0" />
|
|
||||||
</g>
|
|
||||||
<g id="d4">
|
|
||||||
<text x="0" y="-0.0" font-size="11" text-anchor="middle" fill="black" font-family="Helvetica"></text>
|
|
||||||
</g>
|
|
||||||
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '2' } ) );" id="d5">
|
|
||||||
<circle cx="0" cy="0" r="18.333333333333332" fill="red" x="0" y="0" />
|
|
||||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">3</text>
|
|
||||||
</g>
|
|
||||||
<g id="d6">
|
|
||||||
<circle cx="30" cy="27.5" r="15" fill="url(#grad2)" filter="url(#drop-shadow)" />
|
|
||||||
<use xlink:href="#d4" x="137.0" y="45.666666666666664" />
|
|
||||||
<use xlink:href="#d5" x="137.0" y="27.5" />
|
|
||||||
</g>
|
|
||||||
<g id="effects">
|
|
||||||
<path d="M10,80 L264,80" stroke="black" stroke-width="1" />
|
|
||||||
<use xlink:href="#d3" x="0" y="0" />
|
|
||||||
<use xlink:href="#d6" x="0" y="80" />
|
|
||||||
</g>
|
|
||||||
</defs>
|
</defs>
|
||||||
<use xlink:href="#drop-shadow" />
|
<use xlink:href="#drop-shadow" />
|
||||||
<g id="background">
|
<g id="background">
|
||||||
@@ -59,9 +23,46 @@
|
|||||||
<text x="149.0" y="36" font-size="19" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">elven curse</text>
|
<text x="149.0" y="36" font-size="19" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">elven curse</text>
|
||||||
<text x="149.0" y="53" font-size="13" text-anchor="middle" fill="black" font-family="Helvetica">Action</text>
|
<text x="149.0" y="53" font-size="13" text-anchor="middle" fill="black" font-family="Helvetica">Action</text>
|
||||||
</g>
|
</g>
|
||||||
<use xlink:href="#faction_icon" x="36" y="37" />
|
<g transform="translate(36,37)">
|
||||||
<use xlink:href="#d0" x="260" y="36" />
|
<g id="faction_icon">
|
||||||
|
<circle cx="1" cy="1" r="20" fill="black" filter="url(#drop-shadow)" />
|
||||||
|
<circle cx="0" cy="0" r="20" fill="url(#grad2)" />
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(260,36)">
|
||||||
|
<g class="svg_resource_icon" onclick="console.warn('unknown interaction')">
|
||||||
|
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
||||||
|
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">3</text>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
<rect x="0" y="65" width="298" height="200" />
|
<rect x="0" y="65" width="298" height="200" />
|
||||||
<image x="0" y="65" width="298" height="200" xlink:href="../../img/missing.png" />
|
<image x="0" y="65" width="298" height="200" xlink:href="../../img/missing.png" />
|
||||||
<use xlink:href="#effects" x="12" y="265" />
|
<g transform="translate(12,265)">
|
||||||
|
<path d="M10,80 L264,80" stroke="black" stroke-width="1" />
|
||||||
|
<g>
|
||||||
|
<g transform="translate(137.0,70.66666666666667)">
|
||||||
|
<text x="0" y="-0.0" font-size="13.333333333333334" text-anchor="middle" fill="black" font-family="Helvetica">L'adversaire ciblé se défausse d'une carte.</text>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(137.0,33.0)" v-bind:class="{used:used_effects_indexes.includes(0)}">
|
||||||
|
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '0' } ) );">
|
||||||
|
<circle cx="0" cy="0" r="20" fill="red" x="0" y="0" />
|
||||||
|
<text x="0" y="9" font-size="24" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">6</text>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(0,80)">
|
||||||
|
<g>
|
||||||
|
<circle cx="30" cy="27.5" r="15" fill="url(#grad2)" filter="url(#drop-shadow)" />
|
||||||
|
<g transform="translate(137.0,45.666666666666664)">
|
||||||
|
<text x="0" y="-0.0" font-size="11" text-anchor="middle" fill="black" font-family="Helvetica"></text>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(137.0,27.5)" v-bind:class="{used:used_effects_indexes.includes(2)}">
|
||||||
|
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '2' } ) );">
|
||||||
|
<circle cx="0" cy="0" r="18.333333333333332" fill="red" x="0" y="0" />
|
||||||
|
<text x="0" y="9" font-size="24" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">3</text>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
</svg>
|
</svg>
|
||||||
|
Before Width: | Height: | Size: 3.3 KiB After Width: | Height: | Size: 3.3 KiB |
@@ -1,6 +1,6 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||||
width="298" height="417" viewBox="0 0 298 417" id="card46">
|
width="298" height="417" viewBox="0 0 298 417" id="card46" class="card" xmlns:v-bind="https://heron.legonzaur.fr">
|
||||||
<defs>
|
<defs>
|
||||||
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
||||||
<stop offset="0" stop-color="green" stop-opacity="1" />
|
<stop offset="0" stop-color="green" stop-opacity="1" />
|
||||||
@@ -13,42 +13,6 @@
|
|||||||
<filter id="drop-shadow">
|
<filter id="drop-shadow">
|
||||||
<feDropShadow dx="1" dy="1" stdDeviation="0"></feDropShadow>
|
<feDropShadow dx="1" dy="1" stdDeviation="0"></feDropShadow>
|
||||||
</filter>
|
</filter>
|
||||||
<g id="faction_icon">
|
|
||||||
<circle cx="1" cy="1" r="20" fill="black" filter="url(#drop-shadow)" />
|
|
||||||
<circle cx="0" cy="0" r="20" fill="url(#grad2)" />
|
|
||||||
</g>
|
|
||||||
<g class="svg_resource_icon" onclick="console.warn('unknown interaction')" id="d0">
|
|
||||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
|
||||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">2</text>
|
|
||||||
</g>
|
|
||||||
<g id="d1">
|
|
||||||
<text x="0" y="-5.5" font-size="11" text-anchor="middle" fill="black" font-family="Helvetica"><tspan x="0" dy="0em">Vous pouvez piocher une carte, puis</tspan><tspan x="0" dy="1em"> vous défausser d'une carte.</tspan></text>
|
|
||||||
</g>
|
|
||||||
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '0' } ) );" id="d2">
|
|
||||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
|
||||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">2</text>
|
|
||||||
</g>
|
|
||||||
<g id="d3">
|
|
||||||
<use xlink:href="#d1" x="137.0" y="70.66666666666667" />
|
|
||||||
<use xlink:href="#d2" x="137.0" y="33.0" />
|
|
||||||
</g>
|
|
||||||
<g id="d4">
|
|
||||||
<text x="0" y="-0.0" font-size="11" text-anchor="middle" fill="black" font-family="Helvetica"></text>
|
|
||||||
</g>
|
|
||||||
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '2' } ) );" id="d5">
|
|
||||||
<circle cx="0" cy="0" r="18.333333333333332" fill="red" x="0" y="0" />
|
|
||||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">4</text>
|
|
||||||
</g>
|
|
||||||
<g id="d6">
|
|
||||||
<circle cx="30" cy="27.5" r="15" fill="url(#grad2)" filter="url(#drop-shadow)" />
|
|
||||||
<use xlink:href="#d4" x="137.0" y="45.666666666666664" />
|
|
||||||
<use xlink:href="#d5" x="137.0" y="27.5" />
|
|
||||||
</g>
|
|
||||||
<g id="effects">
|
|
||||||
<path d="M10,80 L264,80" stroke="black" stroke-width="1" />
|
|
||||||
<use xlink:href="#d3" x="0" y="0" />
|
|
||||||
<use xlink:href="#d6" x="0" y="80" />
|
|
||||||
</g>
|
|
||||||
</defs>
|
</defs>
|
||||||
<use xlink:href="#drop-shadow" />
|
<use xlink:href="#drop-shadow" />
|
||||||
<g id="background">
|
<g id="background">
|
||||||
@@ -59,9 +23,46 @@
|
|||||||
<text x="149.0" y="36" font-size="19" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">elven gift</text>
|
<text x="149.0" y="36" font-size="19" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">elven gift</text>
|
||||||
<text x="149.0" y="53" font-size="13" text-anchor="middle" fill="black" font-family="Helvetica">Action</text>
|
<text x="149.0" y="53" font-size="13" text-anchor="middle" fill="black" font-family="Helvetica">Action</text>
|
||||||
</g>
|
</g>
|
||||||
<use xlink:href="#faction_icon" x="36" y="37" />
|
<g transform="translate(36,37)">
|
||||||
<use xlink:href="#d0" x="260" y="36" />
|
<g id="faction_icon">
|
||||||
|
<circle cx="1" cy="1" r="20" fill="black" filter="url(#drop-shadow)" />
|
||||||
|
<circle cx="0" cy="0" r="20" fill="url(#grad2)" />
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(260,36)">
|
||||||
|
<g class="svg_resource_icon" onclick="console.warn('unknown interaction')">
|
||||||
|
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
||||||
|
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">2</text>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
<rect x="0" y="65" width="298" height="200" />
|
<rect x="0" y="65" width="298" height="200" />
|
||||||
<image x="0" y="65" width="298" height="200" xlink:href="../../img/missing.png" />
|
<image x="0" y="65" width="298" height="200" xlink:href="../../img/missing.png" />
|
||||||
<use xlink:href="#effects" x="12" y="265" />
|
<g transform="translate(12,265)">
|
||||||
|
<path d="M10,80 L264,80" stroke="black" stroke-width="1" />
|
||||||
|
<g>
|
||||||
|
<g transform="translate(137.0,70.66666666666667)">
|
||||||
|
<text x="0" y="-5.5" font-size="11" text-anchor="middle" fill="black" font-family="Helvetica"><tspan x="0" dy="0em">Vous pouvez piocher une carte, puis</tspan><tspan x="0" dy="1em"> vous défausser d'une carte.</tspan></text>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(137.0,33.0)" v-bind:class="{used:used_effects_indexes.includes(0)}">
|
||||||
|
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '0' } ) );">
|
||||||
|
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
||||||
|
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">2</text>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(0,80)">
|
||||||
|
<g>
|
||||||
|
<circle cx="30" cy="27.5" r="15" fill="url(#grad2)" filter="url(#drop-shadow)" />
|
||||||
|
<g transform="translate(137.0,45.666666666666664)">
|
||||||
|
<text x="0" y="-0.0" font-size="11" text-anchor="middle" fill="black" font-family="Helvetica"></text>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(137.0,27.5)" v-bind:class="{used:used_effects_indexes.includes(2)}">
|
||||||
|
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '2' } ) );">
|
||||||
|
<circle cx="0" cy="0" r="18.333333333333332" fill="red" x="0" y="0" />
|
||||||
|
<text x="0" y="9" font-size="24" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">4</text>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
</svg>
|
</svg>
|
||||||
|
Before Width: | Height: | Size: 3.4 KiB After Width: | Height: | Size: 3.4 KiB |
@@ -1,6 +1,6 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||||
width="298" height="417" viewBox="0 0 298 417" id="card47">
|
width="298" height="417" viewBox="0 0 298 417" id="card47" class="card" xmlns:v-bind="https://heron.legonzaur.fr">
|
||||||
<defs>
|
<defs>
|
||||||
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
||||||
<stop offset="0" stop-color="green" stop-opacity="1" />
|
<stop offset="0" stop-color="green" stop-opacity="1" />
|
||||||
@@ -13,46 +13,6 @@
|
|||||||
<filter id="drop-shadow">
|
<filter id="drop-shadow">
|
||||||
<feDropShadow dx="1" dy="1" stdDeviation="0"></feDropShadow>
|
<feDropShadow dx="1" dy="1" stdDeviation="0"></feDropShadow>
|
||||||
</filter>
|
</filter>
|
||||||
<g id="faction_icon">
|
|
||||||
<circle cx="1" cy="1" r="20" fill="black" filter="url(#drop-shadow)" />
|
|
||||||
<circle cx="0" cy="0" r="20" fill="url(#grad2)" />
|
|
||||||
</g>
|
|
||||||
<g class="svg_resource_icon" onclick="console.warn('unknown interaction')" id="d0">
|
|
||||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
|
||||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">8</text>
|
|
||||||
</g>
|
|
||||||
<g id="d1">
|
|
||||||
<text x="0" y="-5.5" font-size="11" text-anchor="middle" fill="black" font-family="Helvetica"><tspan x="0" dy="0em">Vous pouvez piocher une carte, puis</tspan><tspan x="0" dy="1em"> vous défausser d'une carte.</tspan></text>
|
|
||||||
</g>
|
|
||||||
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '0' } ) );" id="d2">
|
|
||||||
<circle cx="0" cy="0" r="20" fill="red" x="0" y="0" />
|
|
||||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">6</text>
|
|
||||||
</g>
|
|
||||||
<g id="d3">
|
|
||||||
<circle cx="30" cy="40.0" r="15" fill="gray" filter="url(#drop-shadow)" />
|
|
||||||
<use xlink:href="#d1" x="137.0" y="70.66666666666667" />
|
|
||||||
<use xlink:href="#d2" x="137.0" y="33.0" />
|
|
||||||
</g>
|
|
||||||
<g id="d4">
|
|
||||||
<text x="0" y="-5.5" font-size="11" text-anchor="middle" fill="black" font-family="Helvetica"><tspan x="0" dy="0em">Vous pouvez piocher une carte, puis</tspan><tspan x="0" dy="1em"> vous défausser d'une carte.</tspan></text>
|
|
||||||
</g>
|
|
||||||
<g id="d5">
|
|
||||||
<circle cx="30" cy="27.5" r="15" fill="url(#grad2)" filter="url(#drop-shadow)" />
|
|
||||||
<use xlink:href="#d4" x="137.0" y="31.0" />
|
|
||||||
</g>
|
|
||||||
<g id="effects">
|
|
||||||
<path d="M10,80 L264,80" stroke="black" stroke-width="1" />
|
|
||||||
<use xlink:href="#d3" x="0" y="0" />
|
|
||||||
<use xlink:href="#d5" x="0" y="80" />
|
|
||||||
</g>
|
|
||||||
<path d="M-2.9999999999999982,-2.0 L-29.6295824562643,-21.347524157501468 L-19.45798706418925,-52.652475842498525 L13.45798706418924,-52.65247584249853 L23.629582456264302,-21.34752415750148 Z" stroke-width="2" id="d6" />
|
|
||||||
<text x="-3" y="-20" font-size="28px" font-weight="bold" font-family="Helvetica" text-anchor="middle" id="d7">7</text>
|
|
||||||
<g id="champion_shield">
|
|
||||||
<use xlink:href="#d6" x="0" y="0" fill="black" stroke="lightgrey" />
|
|
||||||
<rect x="-28" y="-72" width="49" height="17" fill="black" stroke="lightgrey" stroke-width="2" />
|
|
||||||
<text x="-3" y="-59" font-size="12px" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">Garde</text>
|
|
||||||
<use xlink:href="#d7" x="0" y="0" fill="white" />
|
|
||||||
</g>
|
|
||||||
</defs>
|
</defs>
|
||||||
<use xlink:href="#drop-shadow" />
|
<use xlink:href="#drop-shadow" />
|
||||||
<g id="background">
|
<g id="background">
|
||||||
@@ -63,10 +23,47 @@
|
|||||||
<text x="149.0" y="36" font-size="19" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">grak, storm giant</text>
|
<text x="149.0" y="36" font-size="19" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">grak, storm giant</text>
|
||||||
<text x="149.0" y="53" font-size="13" text-anchor="middle" fill="black" font-family="Helvetica">Champion</text>
|
<text x="149.0" y="53" font-size="13" text-anchor="middle" fill="black" font-family="Helvetica">Champion</text>
|
||||||
</g>
|
</g>
|
||||||
<use xlink:href="#faction_icon" x="36" y="37" />
|
<g transform="translate(36,37)">
|
||||||
<use xlink:href="#d0" x="260" y="36" />
|
<g id="faction_icon">
|
||||||
|
<circle cx="1" cy="1" r="20" fill="black" filter="url(#drop-shadow)" />
|
||||||
|
<circle cx="0" cy="0" r="20" fill="url(#grad2)" />
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(260,36)">
|
||||||
|
<g class="svg_resource_icon" onclick="console.warn('unknown interaction')">
|
||||||
|
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
||||||
|
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">8</text>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
<rect x="0" y="65" width="298" height="200" />
|
<rect x="0" y="65" width="298" height="200" />
|
||||||
<image x="0" y="65" width="298" height="200" xlink:href="../../img/missing.png" />
|
<image x="0" y="65" width="298" height="200" xlink:href="../../img/missing.png" />
|
||||||
<use xlink:href="#effects" x="12" y="265" />
|
<g transform="translate(12,265)">
|
||||||
<use xlink:href="#champion_shield" x="268" y="417" />
|
<path d="M10,80 L264,80" stroke="black" stroke-width="1" />
|
||||||
|
<g>
|
||||||
|
<circle cx="30" cy="40.0" r="15" fill="gray" filter="url(#drop-shadow)" />
|
||||||
|
<g transform="translate(137.0,70.66666666666667)">
|
||||||
|
<text x="0" y="-5.5" font-size="11" text-anchor="middle" fill="black" font-family="Helvetica"><tspan x="0" dy="0em">Vous pouvez piocher une carte, puis</tspan><tspan x="0" dy="1em"> vous défausser d'une carte.</tspan></text>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(137.0,33.0)" v-bind:class="{used:used_effects_indexes.includes(0)}">
|
||||||
|
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '0' } ) );">
|
||||||
|
<circle cx="0" cy="0" r="20" fill="red" x="0" y="0" />
|
||||||
|
<text x="0" y="9" font-size="24" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">6</text>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(0,80)">
|
||||||
|
<g>
|
||||||
|
<circle cx="30" cy="27.5" r="15" fill="url(#grad2)" filter="url(#drop-shadow)" />
|
||||||
|
<g transform="translate(137.0,31.0)">
|
||||||
|
<text x="0" y="-5.5" font-size="11" text-anchor="middle" fill="black" font-family="Helvetica"><tspan x="0" dy="0em">Vous pouvez piocher une carte, puis</tspan><tspan x="0" dy="1em"> vous défausser d'une carte.</tspan></text>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(268,417)">
|
||||||
|
<path d="M-2.9999999999999982,-2.0 L-29.6295824562643,-21.347524157501468 L-19.45798706418925,-52.652475842498525 L13.45798706418924,-52.65247584249853 L23.629582456264302,-21.34752415750148 Z" fill="black" stroke="lightgrey" stroke-width="2" />
|
||||||
|
<rect x="-28" y="-72" width="49" height="17" fill="black" stroke="lightgrey" stroke-width="2" />
|
||||||
|
<text x="-3" y="-59" font-size="12px" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">Garde</text>
|
||||||
|
<text x="-3" y="-20" font-size="28px" font-weight="bold" font-family="Helvetica" text-anchor="middle" fill="white">7</text>
|
||||||
|
</g>
|
||||||
</svg>
|
</svg>
|
||||||
|
Before Width: | Height: | Size: 3.9 KiB After Width: | Height: | Size: 3.8 KiB |
@@ -1,6 +1,6 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||||
width="298" height="417" viewBox="0 0 298 417" id="card48">
|
width="298" height="417" viewBox="0 0 298 417" id="card48" class="card" xmlns:v-bind="https://heron.legonzaur.fr">
|
||||||
<defs>
|
<defs>
|
||||||
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
||||||
<stop offset="0" stop-color="green" stop-opacity="1" />
|
<stop offset="0" stop-color="green" stop-opacity="1" />
|
||||||
@@ -13,51 +13,6 @@
|
|||||||
<filter id="drop-shadow">
|
<filter id="drop-shadow">
|
||||||
<feDropShadow dx="1" dy="1" stdDeviation="0"></feDropShadow>
|
<feDropShadow dx="1" dy="1" stdDeviation="0"></feDropShadow>
|
||||||
</filter>
|
</filter>
|
||||||
<g id="faction_icon">
|
|
||||||
<circle cx="1" cy="1" r="20" fill="black" filter="url(#drop-shadow)" />
|
|
||||||
<circle cx="0" cy="0" r="20" fill="url(#grad2)" />
|
|
||||||
</g>
|
|
||||||
<g class="svg_resource_icon" onclick="console.warn('unknown interaction')" id="d0">
|
|
||||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
|
||||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">4</text>
|
|
||||||
</g>
|
|
||||||
<g id="d1">
|
|
||||||
<text x="0" y="-0.0" font-size="11" text-anchor="middle" fill="black" font-family="Helvetica"></text>
|
|
||||||
</g>
|
|
||||||
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '0' } ) );" id="d2">
|
|
||||||
<circle cx="0" cy="0" r="15.0" fill="yellow" x="0" y="0" />
|
|
||||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">4</text>
|
|
||||||
</g>
|
|
||||||
<g id="d3">
|
|
||||||
<use xlink:href="#d1" x="137.0" y="35.666666666666664" />
|
|
||||||
<use xlink:href="#d2" x="137.0" y="22.5" />
|
|
||||||
</g>
|
|
||||||
<g id="d4">
|
|
||||||
<text x="0" y="-7.0" font-size="14" text-anchor="middle" fill="black" font-family="Helvetica"><tspan x="0" dy="0em">L'adversaire ciblé</tspan><tspan x="0" dy="1em">se défausse d'une carte.</tspan></text>
|
|
||||||
</g>
|
|
||||||
<g id="d5">
|
|
||||||
<circle cx="30" cy="22.5" r="15" fill="url(#grad2)" filter="url(#drop-shadow)" />
|
|
||||||
<use xlink:href="#d4" x="137.0" y="26.0" />
|
|
||||||
</g>
|
|
||||||
<g id="d6">
|
|
||||||
<text x="0" y="-0.0" font-size="11" text-anchor="middle" fill="black" font-family="Helvetica"></text>
|
|
||||||
</g>
|
|
||||||
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '2' } ) );" id="d7">
|
|
||||||
<circle cx="0" cy="0" r="15.0" fill="red" x="0" y="0" />
|
|
||||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">4</text>
|
|
||||||
</g>
|
|
||||||
<g id="d8">
|
|
||||||
<circle cx="30" cy="22.5" r="15" fill="black" filter="url(#drop-shadow)" />
|
|
||||||
<use xlink:href="#d6" x="137.0" y="35.666666666666664" />
|
|
||||||
<use xlink:href="#d7" x="137.0" y="22.5" />
|
|
||||||
</g>
|
|
||||||
<g id="effects">
|
|
||||||
<path d="M10,45 L264,45" stroke="black" stroke-width="1" />
|
|
||||||
<path d="M10,90 L264,90" stroke="black" stroke-width="1" />
|
|
||||||
<use xlink:href="#d3" x="0" y="0" />
|
|
||||||
<use xlink:href="#d5" x="0" y="45" />
|
|
||||||
<use xlink:href="#d8" x="0" y="90" />
|
|
||||||
</g>
|
|
||||||
</defs>
|
</defs>
|
||||||
<use xlink:href="#drop-shadow" />
|
<use xlink:href="#drop-shadow" />
|
||||||
<g id="background">
|
<g id="background">
|
||||||
@@ -68,9 +23,55 @@
|
|||||||
<text x="149.0" y="36" font-size="19" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">nature's bounty</text>
|
<text x="149.0" y="36" font-size="19" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">nature's bounty</text>
|
||||||
<text x="149.0" y="53" font-size="13" text-anchor="middle" fill="black" font-family="Helvetica">Action</text>
|
<text x="149.0" y="53" font-size="13" text-anchor="middle" fill="black" font-family="Helvetica">Action</text>
|
||||||
</g>
|
</g>
|
||||||
<use xlink:href="#faction_icon" x="36" y="37" />
|
<g transform="translate(36,37)">
|
||||||
<use xlink:href="#d0" x="260" y="36" />
|
<g id="faction_icon">
|
||||||
|
<circle cx="1" cy="1" r="20" fill="black" filter="url(#drop-shadow)" />
|
||||||
|
<circle cx="0" cy="0" r="20" fill="url(#grad2)" />
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(260,36)">
|
||||||
|
<g class="svg_resource_icon" onclick="console.warn('unknown interaction')">
|
||||||
|
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
||||||
|
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">4</text>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
<rect x="0" y="65" width="298" height="200" />
|
<rect x="0" y="65" width="298" height="200" />
|
||||||
<image x="0" y="65" width="298" height="200" xlink:href="../../img/missing.png" />
|
<image x="0" y="65" width="298" height="200" xlink:href="../../img/missing.png" />
|
||||||
<use xlink:href="#effects" x="12" y="265" />
|
<g transform="translate(12,265)">
|
||||||
|
<path d="M10,45 L264,45" stroke="black" stroke-width="1" />
|
||||||
|
<path d="M10,90 L264,90" stroke="black" stroke-width="1" />
|
||||||
|
<g>
|
||||||
|
<g transform="translate(137.0,35.666666666666664)">
|
||||||
|
<text x="0" y="-0.0" font-size="11" text-anchor="middle" fill="black" font-family="Helvetica"></text>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(137.0,22.5)" v-bind:class="{used:used_effects_indexes.includes(0)}">
|
||||||
|
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '0' } ) );">
|
||||||
|
<circle cx="0" cy="0" r="15.0" fill="yellow" x="0" y="0" />
|
||||||
|
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">4</text>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(0,45)">
|
||||||
|
<g>
|
||||||
|
<circle cx="30" cy="22.5" r="15" fill="url(#grad2)" filter="url(#drop-shadow)" />
|
||||||
|
<g transform="translate(137.0,26.0)">
|
||||||
|
<text x="0" y="-7.0" font-size="14" text-anchor="middle" fill="black" font-family="Helvetica"><tspan x="0" dy="0em">L'adversaire ciblé</tspan><tspan x="0" dy="1em">se défausse d'une carte.</tspan></text>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(0,90)">
|
||||||
|
<g>
|
||||||
|
<circle cx="30" cy="22.5" r="15" fill="black" filter="url(#drop-shadow)" />
|
||||||
|
<g transform="translate(137.0,35.666666666666664)">
|
||||||
|
<text x="0" y="-0.0" font-size="11" text-anchor="middle" fill="black" font-family="Helvetica"></text>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(137.0,22.5)" v-bind:class="{used:used_effects_indexes.includes(2)}">
|
||||||
|
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '2' } ) );">
|
||||||
|
<circle cx="0" cy="0" r="15.0" fill="red" x="0" y="0" />
|
||||||
|
<text x="0" y="9" font-size="24" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">4</text>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
</svg>
|
</svg>
|
||||||
|
Before Width: | Height: | Size: 3.7 KiB After Width: | Height: | Size: 3.7 KiB |
@@ -1,6 +1,6 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||||
width="298" height="417" viewBox="0 0 298 417" id="card49">
|
width="298" height="417" viewBox="0 0 298 417" id="card49" class="card" xmlns:v-bind="https://heron.legonzaur.fr">
|
||||||
<defs>
|
<defs>
|
||||||
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
||||||
<stop offset="0" stop-color="green" stop-opacity="1" />
|
<stop offset="0" stop-color="green" stop-opacity="1" />
|
||||||
@@ -13,46 +13,6 @@
|
|||||||
<filter id="drop-shadow">
|
<filter id="drop-shadow">
|
||||||
<feDropShadow dx="1" dy="1" stdDeviation="0"></feDropShadow>
|
<feDropShadow dx="1" dy="1" stdDeviation="0"></feDropShadow>
|
||||||
</filter>
|
</filter>
|
||||||
<g id="faction_icon">
|
|
||||||
<circle cx="1" cy="1" r="20" fill="black" filter="url(#drop-shadow)" />
|
|
||||||
<circle cx="0" cy="0" r="20" fill="url(#grad2)" />
|
|
||||||
</g>
|
|
||||||
<g class="svg_resource_icon" onclick="console.warn('unknown interaction')" id="d0">
|
|
||||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
|
||||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">3</text>
|
|
||||||
</g>
|
|
||||||
<g id="d1">
|
|
||||||
<text x="0" y="-0.0" font-size="13.333333333333334" text-anchor="middle" fill="black" font-family="Helvetica"></text>
|
|
||||||
</g>
|
|
||||||
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '0' } ) );" id="d2">
|
|
||||||
<circle cx="0" cy="0" r="20" fill="red" x="0" y="0" />
|
|
||||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">2</text>
|
|
||||||
</g>
|
|
||||||
<g id="d3">
|
|
||||||
<circle cx="30" cy="40.0" r="15" fill="gray" filter="url(#drop-shadow)" />
|
|
||||||
<use xlink:href="#d1" x="137.0" y="70.66666666666667" />
|
|
||||||
<use xlink:href="#d2" x="137.0" y="40.0" />
|
|
||||||
</g>
|
|
||||||
<g id="d4">
|
|
||||||
<text x="0" y="-0.0" font-size="14" text-anchor="middle" fill="black" font-family="Helvetica">Piochez une carte.</text>
|
|
||||||
</g>
|
|
||||||
<g id="d5">
|
|
||||||
<circle cx="30" cy="27.5" r="15" fill="url(#grad2)" filter="url(#drop-shadow)" />
|
|
||||||
<use xlink:href="#d4" x="137.0" y="31.0" />
|
|
||||||
</g>
|
|
||||||
<g id="effects">
|
|
||||||
<path d="M10,80 L264,80" stroke="black" stroke-width="1" />
|
|
||||||
<use xlink:href="#d3" x="0" y="0" />
|
|
||||||
<use xlink:href="#d5" x="0" y="80" />
|
|
||||||
</g>
|
|
||||||
<path d="M-2.9999999999999982,-2.0 L-29.6295824562643,-21.347524157501468 L-19.45798706418925,-52.652475842498525 L13.45798706418924,-52.65247584249853 L23.629582456264302,-21.34752415750148 Z" stroke-width="2" id="d6" />
|
|
||||||
<text x="-3" y="-20" font-size="28px" font-weight="bold" font-family="Helvetica" text-anchor="middle" id="d7">3</text>
|
|
||||||
<g id="champion_shield">
|
|
||||||
<use xlink:href="#d6" x="0" y="0" fill="black" stroke="lightgrey" />
|
|
||||||
<rect x="-28" y="-72" width="49" height="17" fill="black" stroke="lightgrey" stroke-width="2" />
|
|
||||||
<text x="-3" y="-59" font-size="12px" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">Garde</text>
|
|
||||||
<use xlink:href="#d7" x="0" y="0" fill="white" />
|
|
||||||
</g>
|
|
||||||
</defs>
|
</defs>
|
||||||
<use xlink:href="#drop-shadow" />
|
<use xlink:href="#drop-shadow" />
|
||||||
<g id="background">
|
<g id="background">
|
||||||
@@ -63,10 +23,47 @@
|
|||||||
<text x="149.0" y="36" font-size="19" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">orc grunt</text>
|
<text x="149.0" y="36" font-size="19" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">orc grunt</text>
|
||||||
<text x="149.0" y="53" font-size="13" text-anchor="middle" fill="black" font-family="Helvetica">Champion</text>
|
<text x="149.0" y="53" font-size="13" text-anchor="middle" fill="black" font-family="Helvetica">Champion</text>
|
||||||
</g>
|
</g>
|
||||||
<use xlink:href="#faction_icon" x="36" y="37" />
|
<g transform="translate(36,37)">
|
||||||
<use xlink:href="#d0" x="260" y="36" />
|
<g id="faction_icon">
|
||||||
|
<circle cx="1" cy="1" r="20" fill="black" filter="url(#drop-shadow)" />
|
||||||
|
<circle cx="0" cy="0" r="20" fill="url(#grad2)" />
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(260,36)">
|
||||||
|
<g class="svg_resource_icon" onclick="console.warn('unknown interaction')">
|
||||||
|
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
||||||
|
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">3</text>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
<rect x="0" y="65" width="298" height="200" />
|
<rect x="0" y="65" width="298" height="200" />
|
||||||
<image x="0" y="65" width="298" height="200" xlink:href="../../img/missing.png" />
|
<image x="0" y="65" width="298" height="200" xlink:href="../../img/missing.png" />
|
||||||
<use xlink:href="#effects" x="12" y="265" />
|
<g transform="translate(12,265)">
|
||||||
<use xlink:href="#champion_shield" x="268" y="417" />
|
<path d="M10,80 L264,80" stroke="black" stroke-width="1" />
|
||||||
|
<g>
|
||||||
|
<circle cx="30" cy="40.0" r="15" fill="gray" filter="url(#drop-shadow)" />
|
||||||
|
<g transform="translate(137.0,70.66666666666667)">
|
||||||
|
<text x="0" y="-0.0" font-size="13.333333333333334" text-anchor="middle" fill="black" font-family="Helvetica"></text>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(137.0,40.0)" v-bind:class="{used:used_effects_indexes.includes(0)}">
|
||||||
|
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '0' } ) );">
|
||||||
|
<circle cx="0" cy="0" r="20" fill="red" x="0" y="0" />
|
||||||
|
<text x="0" y="9" font-size="24" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">2</text>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(0,80)">
|
||||||
|
<g>
|
||||||
|
<circle cx="30" cy="27.5" r="15" fill="url(#grad2)" filter="url(#drop-shadow)" />
|
||||||
|
<g transform="translate(137.0,31.0)">
|
||||||
|
<text x="0" y="-0.0" font-size="14" text-anchor="middle" fill="black" font-family="Helvetica">Piochez une carte.</text>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(268,417)">
|
||||||
|
<path d="M-2.9999999999999982,-2.0 L-29.6295824562643,-21.347524157501468 L-19.45798706418925,-52.652475842498525 L13.45798706418924,-52.65247584249853 L23.629582456264302,-21.34752415750148 Z" fill="black" stroke="lightgrey" stroke-width="2" />
|
||||||
|
<rect x="-28" y="-72" width="49" height="17" fill="black" stroke="lightgrey" stroke-width="2" />
|
||||||
|
<text x="-3" y="-59" font-size="12px" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">Garde</text>
|
||||||
|
<text x="-3" y="-20" font-size="28px" font-weight="bold" font-family="Helvetica" text-anchor="middle" fill="white">3</text>
|
||||||
|
</g>
|
||||||
</svg>
|
</svg>
|
||||||
|
Before Width: | Height: | Size: 3.7 KiB After Width: | Height: | Size: 3.5 KiB |
@@ -1,6 +1,6 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||||
width="298" height="417" viewBox="0 0 298 417" id="card50">
|
width="298" height="417" viewBox="0 0 298 417" id="card50" class="card" xmlns:v-bind="https://heron.legonzaur.fr">
|
||||||
<defs>
|
<defs>
|
||||||
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
||||||
<stop offset="0" stop-color="green" stop-opacity="1" />
|
<stop offset="0" stop-color="green" stop-opacity="1" />
|
||||||
@@ -13,28 +13,6 @@
|
|||||||
<filter id="drop-shadow">
|
<filter id="drop-shadow">
|
||||||
<feDropShadow dx="1" dy="1" stdDeviation="0"></feDropShadow>
|
<feDropShadow dx="1" dy="1" stdDeviation="0"></feDropShadow>
|
||||||
</filter>
|
</filter>
|
||||||
<g id="faction_icon">
|
|
||||||
<circle cx="1" cy="1" r="20" fill="black" filter="url(#drop-shadow)" />
|
|
||||||
<circle cx="0" cy="0" r="20" fill="url(#grad2)" />
|
|
||||||
</g>
|
|
||||||
<g class="svg_resource_icon" onclick="console.warn('unknown interaction')" id="d0">
|
|
||||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
|
||||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">6</text>
|
|
||||||
</g>
|
|
||||||
<g id="d1">
|
|
||||||
<text x="0" y="-5.5" font-size="11" text-anchor="middle" fill="black" font-family="Helvetica"><tspan x="0" dy="0em">Vous pouvez piocher jusqu'à deux cartes,</tspan><tspan x="0" dy="1em">défaussez-vous ensuite d'autant de cartes</tspan></text>
|
|
||||||
</g>
|
|
||||||
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '0' } ) );" id="d2">
|
|
||||||
<circle cx="0" cy="0" r="20" fill="red" x="0" y="0" />
|
|
||||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">6</text>
|
|
||||||
</g>
|
|
||||||
<g id="d3">
|
|
||||||
<use xlink:href="#d1" x="137.0" y="101.5" />
|
|
||||||
<use xlink:href="#d2" x="137.0" y="60.5" />
|
|
||||||
</g>
|
|
||||||
<g id="effects">
|
|
||||||
<use xlink:href="#d3" x="0" y="0" />
|
|
||||||
</g>
|
|
||||||
</defs>
|
</defs>
|
||||||
<use xlink:href="#drop-shadow" />
|
<use xlink:href="#drop-shadow" />
|
||||||
<g id="background">
|
<g id="background">
|
||||||
@@ -45,9 +23,31 @@
|
|||||||
<text x="149.0" y="36" font-size="19" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">rampage</text>
|
<text x="149.0" y="36" font-size="19" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">rampage</text>
|
||||||
<text x="149.0" y="53" font-size="13" text-anchor="middle" fill="black" font-family="Helvetica">Action</text>
|
<text x="149.0" y="53" font-size="13" text-anchor="middle" fill="black" font-family="Helvetica">Action</text>
|
||||||
</g>
|
</g>
|
||||||
<use xlink:href="#faction_icon" x="36" y="37" />
|
<g transform="translate(36,37)">
|
||||||
<use xlink:href="#d0" x="260" y="36" />
|
<g id="faction_icon">
|
||||||
|
<circle cx="1" cy="1" r="20" fill="black" filter="url(#drop-shadow)" />
|
||||||
|
<circle cx="0" cy="0" r="20" fill="url(#grad2)" />
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(260,36)">
|
||||||
|
<g class="svg_resource_icon" onclick="console.warn('unknown interaction')">
|
||||||
|
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
||||||
|
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">6</text>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
<rect x="0" y="65" width="298" height="200" />
|
<rect x="0" y="65" width="298" height="200" />
|
||||||
<image x="0" y="65" width="298" height="200" xlink:href="../../img/missing.png" />
|
<image x="0" y="65" width="298" height="200" xlink:href="../../img/missing.png" />
|
||||||
<use xlink:href="#effects" x="12" y="265" />
|
<g transform="translate(12,265)">
|
||||||
|
<g>
|
||||||
|
<g transform="translate(137.0,101.5)">
|
||||||
|
<text x="0" y="-5.5" font-size="11" text-anchor="middle" fill="black" font-family="Helvetica"><tspan x="0" dy="0em">Vous pouvez piocher jusqu'à deux cartes,</tspan><tspan x="0" dy="1em">défaussez-vous ensuite d'autant de cartes</tspan></text>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(137.0,60.5)" v-bind:class="{used:used_effects_indexes.includes(0)}">
|
||||||
|
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '0' } ) );">
|
||||||
|
<circle cx="0" cy="0" r="20" fill="red" x="0" y="0" />
|
||||||
|
<text x="0" y="9" font-size="24" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">6</text>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
</svg>
|
</svg>
|
||||||
|
Before Width: | Height: | Size: 2.6 KiB After Width: | Height: | Size: 2.6 KiB |
@@ -1,6 +1,6 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||||
width="298" height="417" viewBox="0 0 298 417" id="card51">
|
width="298" height="417" viewBox="0 0 298 417" id="card51" class="card" xmlns:v-bind="https://heron.legonzaur.fr">
|
||||||
<defs>
|
<defs>
|
||||||
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
||||||
<stop offset="0" stop-color="green" stop-opacity="1" />
|
<stop offset="0" stop-color="green" stop-opacity="1" />
|
||||||
@@ -13,37 +13,6 @@
|
|||||||
<filter id="drop-shadow">
|
<filter id="drop-shadow">
|
||||||
<feDropShadow dx="1" dy="1" stdDeviation="0"></feDropShadow>
|
<feDropShadow dx="1" dy="1" stdDeviation="0"></feDropShadow>
|
||||||
</filter>
|
</filter>
|
||||||
<g id="faction_icon">
|
|
||||||
<circle cx="1" cy="1" r="20" fill="black" filter="url(#drop-shadow)" />
|
|
||||||
<circle cx="0" cy="0" r="20" fill="url(#grad2)" />
|
|
||||||
</g>
|
|
||||||
<g class="svg_resource_icon" onclick="console.warn('unknown interaction')" id="d0">
|
|
||||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
|
||||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">7</text>
|
|
||||||
</g>
|
|
||||||
<g id="d1">
|
|
||||||
<text x="0" y="-7.0" font-size="14" text-anchor="middle" fill="black" font-family="Helvetica"><tspan x="0" dy="0em">L'adversaire ciblé</tspan><tspan x="0" dy="1em">se défausse d'une carte.</tspan></text>
|
|
||||||
</g>
|
|
||||||
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '0' } ) );" id="d2">
|
|
||||||
<circle cx="0" cy="0" r="20" fill="red" x="0" y="0" />
|
|
||||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">4</text>
|
|
||||||
</g>
|
|
||||||
<g id="d3">
|
|
||||||
<circle cx="30" cy="67.5" r="15" fill="gray" filter="url(#drop-shadow)" />
|
|
||||||
<use xlink:href="#d1" x="137.0" y="101.5" />
|
|
||||||
<use xlink:href="#d2" x="137.0" y="60.5" />
|
|
||||||
</g>
|
|
||||||
<g id="effects">
|
|
||||||
<use xlink:href="#d3" x="0" y="0" />
|
|
||||||
</g>
|
|
||||||
<path d="M-2.9999999999999982,-2.0 L-29.6295824562643,-21.347524157501468 L-19.45798706418925,-52.652475842498525 L13.45798706418924,-52.65247584249853 L23.629582456264302,-21.34752415750148 Z" stroke-width="2" id="d4" />
|
|
||||||
<text x="-3" y="-20" font-size="28px" font-weight="bold" font-family="Helvetica" text-anchor="middle" id="d5">7</text>
|
|
||||||
<g id="champion_shield">
|
|
||||||
<use xlink:href="#d4" x="0" y="0" fill="black" stroke="lightgrey" />
|
|
||||||
<rect x="-28" y="-72" width="49" height="17" fill="black" stroke="lightgrey" stroke-width="2" />
|
|
||||||
<text x="-3" y="-59" font-size="12px" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">Garde</text>
|
|
||||||
<use xlink:href="#d5" x="0" y="0" fill="white" />
|
|
||||||
</g>
|
|
||||||
</defs>
|
</defs>
|
||||||
<use xlink:href="#drop-shadow" />
|
<use xlink:href="#drop-shadow" />
|
||||||
<g id="background">
|
<g id="background">
|
||||||
@@ -54,10 +23,38 @@
|
|||||||
<text x="149.0" y="36" font-size="19" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">torgen rocksplitter</text>
|
<text x="149.0" y="36" font-size="19" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">torgen rocksplitter</text>
|
||||||
<text x="149.0" y="53" font-size="13" text-anchor="middle" fill="black" font-family="Helvetica">Champion</text>
|
<text x="149.0" y="53" font-size="13" text-anchor="middle" fill="black" font-family="Helvetica">Champion</text>
|
||||||
</g>
|
</g>
|
||||||
<use xlink:href="#faction_icon" x="36" y="37" />
|
<g transform="translate(36,37)">
|
||||||
<use xlink:href="#d0" x="260" y="36" />
|
<g id="faction_icon">
|
||||||
|
<circle cx="1" cy="1" r="20" fill="black" filter="url(#drop-shadow)" />
|
||||||
|
<circle cx="0" cy="0" r="20" fill="url(#grad2)" />
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(260,36)">
|
||||||
|
<g class="svg_resource_icon" onclick="console.warn('unknown interaction')">
|
||||||
|
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
||||||
|
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">7</text>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
<rect x="0" y="65" width="298" height="200" />
|
<rect x="0" y="65" width="298" height="200" />
|
||||||
<image x="0" y="65" width="298" height="200" xlink:href="../../img/missing.png" />
|
<image x="0" y="65" width="298" height="200" xlink:href="../../img/missing.png" />
|
||||||
<use xlink:href="#effects" x="12" y="265" />
|
<g transform="translate(12,265)">
|
||||||
<use xlink:href="#champion_shield" x="268" y="417" />
|
<g>
|
||||||
|
<circle cx="30" cy="67.5" r="15" fill="gray" filter="url(#drop-shadow)" />
|
||||||
|
<g transform="translate(137.0,101.5)">
|
||||||
|
<text x="0" y="-7.0" font-size="14" text-anchor="middle" fill="black" font-family="Helvetica"><tspan x="0" dy="0em">L'adversaire ciblé</tspan><tspan x="0" dy="1em">se défausse d'une carte.</tspan></text>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(137.0,60.5)" v-bind:class="{used:used_effects_indexes.includes(0)}">
|
||||||
|
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '0' } ) );">
|
||||||
|
<circle cx="0" cy="0" r="20" fill="red" x="0" y="0" />
|
||||||
|
<text x="0" y="9" font-size="24" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">4</text>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(268,417)">
|
||||||
|
<path d="M-2.9999999999999982,-2.0 L-29.6295824562643,-21.347524157501468 L-19.45798706418925,-52.652475842498525 L13.45798706418924,-52.65247584249853 L23.629582456264302,-21.34752415750148 Z" fill="black" stroke="lightgrey" stroke-width="2" />
|
||||||
|
<rect x="-28" y="-72" width="49" height="17" fill="black" stroke="lightgrey" stroke-width="2" />
|
||||||
|
<text x="-3" y="-59" font-size="12px" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">Garde</text>
|
||||||
|
<text x="-3" y="-20" font-size="28px" font-weight="bold" font-family="Helvetica" text-anchor="middle" fill="white">7</text>
|
||||||
|
</g>
|
||||||
</svg>
|
</svg>
|
||||||
|
Before Width: | Height: | Size: 3.4 KiB After Width: | Height: | Size: 3.3 KiB |
@@ -1,6 +1,6 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||||
width="298" height="417" viewBox="0 0 298 417" id="card52">
|
width="298" height="417" viewBox="0 0 298 417" id="card52" class="card" xmlns:v-bind="https://heron.legonzaur.fr">
|
||||||
<defs>
|
<defs>
|
||||||
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
||||||
<stop offset="0" stop-color="green" stop-opacity="1" />
|
<stop offset="0" stop-color="green" stop-opacity="1" />
|
||||||
@@ -13,42 +13,6 @@
|
|||||||
<filter id="drop-shadow">
|
<filter id="drop-shadow">
|
||||||
<feDropShadow dx="1" dy="1" stdDeviation="0"></feDropShadow>
|
<feDropShadow dx="1" dy="1" stdDeviation="0"></feDropShadow>
|
||||||
</filter>
|
</filter>
|
||||||
<g id="faction_icon">
|
|
||||||
<circle cx="1" cy="1" r="20" fill="black" filter="url(#drop-shadow)" />
|
|
||||||
<circle cx="0" cy="0" r="20" fill="url(#grad2)" />
|
|
||||||
</g>
|
|
||||||
<g class="svg_resource_icon" onclick="console.warn('unknown interaction')" id="d0">
|
|
||||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
|
||||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">1</text>
|
|
||||||
</g>
|
|
||||||
<g id="d1">
|
|
||||||
<text x="0" y="-0.0" font-size="13.333333333333334" text-anchor="middle" fill="black" font-family="Helvetica">L'adversaire ciblé se défausse d'une carte.</text>
|
|
||||||
</g>
|
|
||||||
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '0' } ) );" id="d2">
|
|
||||||
<circle cx="0" cy="0" r="20" fill="red" x="0" y="0" />
|
|
||||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">3</text>
|
|
||||||
</g>
|
|
||||||
<g id="d3">
|
|
||||||
<use xlink:href="#d1" x="137.0" y="70.66666666666667" />
|
|
||||||
<use xlink:href="#d2" x="137.0" y="33.0" />
|
|
||||||
</g>
|
|
||||||
<g id="d4">
|
|
||||||
<text x="0" y="-0.0" font-size="11" text-anchor="middle" fill="black" font-family="Helvetica"></text>
|
|
||||||
</g>
|
|
||||||
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '2' } ) );" id="d5">
|
|
||||||
<circle cx="0" cy="0" r="18.333333333333332" fill="red" x="0" y="0" />
|
|
||||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">2</text>
|
|
||||||
</g>
|
|
||||||
<g id="d6">
|
|
||||||
<circle cx="30" cy="27.5" r="15" fill="url(#grad2)" filter="url(#drop-shadow)" />
|
|
||||||
<use xlink:href="#d4" x="137.0" y="45.666666666666664" />
|
|
||||||
<use xlink:href="#d5" x="137.0" y="27.5" />
|
|
||||||
</g>
|
|
||||||
<g id="effects">
|
|
||||||
<path d="M10,80 L264,80" stroke="black" stroke-width="1" />
|
|
||||||
<use xlink:href="#d3" x="0" y="0" />
|
|
||||||
<use xlink:href="#d6" x="0" y="80" />
|
|
||||||
</g>
|
|
||||||
</defs>
|
</defs>
|
||||||
<use xlink:href="#drop-shadow" />
|
<use xlink:href="#drop-shadow" />
|
||||||
<g id="background">
|
<g id="background">
|
||||||
@@ -59,9 +23,46 @@
|
|||||||
<text x="149.0" y="36" font-size="19" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">spark</text>
|
<text x="149.0" y="36" font-size="19" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">spark</text>
|
||||||
<text x="149.0" y="53" font-size="13" text-anchor="middle" fill="black" font-family="Helvetica">Action</text>
|
<text x="149.0" y="53" font-size="13" text-anchor="middle" fill="black" font-family="Helvetica">Action</text>
|
||||||
</g>
|
</g>
|
||||||
<use xlink:href="#faction_icon" x="36" y="37" />
|
<g transform="translate(36,37)">
|
||||||
<use xlink:href="#d0" x="260" y="36" />
|
<g id="faction_icon">
|
||||||
|
<circle cx="1" cy="1" r="20" fill="black" filter="url(#drop-shadow)" />
|
||||||
|
<circle cx="0" cy="0" r="20" fill="url(#grad2)" />
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(260,36)">
|
||||||
|
<g class="svg_resource_icon" onclick="console.warn('unknown interaction')">
|
||||||
|
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
||||||
|
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">1</text>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
<rect x="0" y="65" width="298" height="200" />
|
<rect x="0" y="65" width="298" height="200" />
|
||||||
<image x="0" y="65" width="298" height="200" xlink:href="../../img/missing.png" />
|
<image x="0" y="65" width="298" height="200" xlink:href="../../img/missing.png" />
|
||||||
<use xlink:href="#effects" x="12" y="265" />
|
<g transform="translate(12,265)">
|
||||||
|
<path d="M10,80 L264,80" stroke="black" stroke-width="1" />
|
||||||
|
<g>
|
||||||
|
<g transform="translate(137.0,70.66666666666667)">
|
||||||
|
<text x="0" y="-0.0" font-size="13.333333333333334" text-anchor="middle" fill="black" font-family="Helvetica">L'adversaire ciblé se défausse d'une carte.</text>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(137.0,33.0)" v-bind:class="{used:used_effects_indexes.includes(0)}">
|
||||||
|
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '0' } ) );">
|
||||||
|
<circle cx="0" cy="0" r="20" fill="red" x="0" y="0" />
|
||||||
|
<text x="0" y="9" font-size="24" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">3</text>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(0,80)">
|
||||||
|
<g>
|
||||||
|
<circle cx="30" cy="27.5" r="15" fill="url(#grad2)" filter="url(#drop-shadow)" />
|
||||||
|
<g transform="translate(137.0,45.666666666666664)">
|
||||||
|
<text x="0" y="-0.0" font-size="11" text-anchor="middle" fill="black" font-family="Helvetica"></text>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(137.0,27.5)" v-bind:class="{used:used_effects_indexes.includes(2)}">
|
||||||
|
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '2' } ) );">
|
||||||
|
<circle cx="0" cy="0" r="18.333333333333332" fill="red" x="0" y="0" />
|
||||||
|
<text x="0" y="9" font-size="24" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">2</text>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
</svg>
|
</svg>
|
||||||
|
Before Width: | Height: | Size: 3.3 KiB After Width: | Height: | Size: 3.3 KiB |
@@ -1,6 +1,6 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||||
width="298" height="417" viewBox="0 0 298 417" id="card53">
|
width="298" height="417" viewBox="0 0 298 417" id="card53" class="card" xmlns:v-bind="https://heron.legonzaur.fr">
|
||||||
<defs>
|
<defs>
|
||||||
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
||||||
<stop offset="0" stop-color="green" stop-opacity="1" />
|
<stop offset="0" stop-color="green" stop-opacity="1" />
|
||||||
@@ -13,37 +13,6 @@
|
|||||||
<filter id="drop-shadow">
|
<filter id="drop-shadow">
|
||||||
<feDropShadow dx="1" dy="1" stdDeviation="0"></feDropShadow>
|
<feDropShadow dx="1" dy="1" stdDeviation="0"></feDropShadow>
|
||||||
</filter>
|
</filter>
|
||||||
<g id="faction_icon">
|
|
||||||
<circle cx="1" cy="1" r="20" fill="black" filter="url(#drop-shadow)" />
|
|
||||||
<circle cx="0" cy="0" r="20" fill="url(#grad2)" />
|
|
||||||
</g>
|
|
||||||
<g class="svg_resource_icon" onclick="console.warn('unknown interaction')" id="d0">
|
|
||||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
|
||||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">5</text>
|
|
||||||
</g>
|
|
||||||
<g id="d1">
|
|
||||||
<text x="0" y="-0.0" font-size="13.333333333333334" text-anchor="middle" fill="black" font-family="Helvetica">L'adversaire ciblé se défausse d'une carte.</text>
|
|
||||||
</g>
|
|
||||||
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '0' } ) );" id="d2">
|
|
||||||
<circle cx="0" cy="0" r="20" fill="red" x="0" y="0" />
|
|
||||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">8</text>
|
|
||||||
</g>
|
|
||||||
<g id="d3">
|
|
||||||
<use xlink:href="#d1" x="137.0" y="70.66666666666667" />
|
|
||||||
<use xlink:href="#d2" x="137.0" y="33.0" />
|
|
||||||
</g>
|
|
||||||
<g id="d4">
|
|
||||||
<text x="0" y="-7.0" font-size="14" text-anchor="middle" fill="black" font-family="Helvetica"><tspan x="0" dy="0em">L'adversaire ciblé</tspan><tspan x="0" dy="1em">se défausse d'une carte.</tspan></text>
|
|
||||||
</g>
|
|
||||||
<g id="d5">
|
|
||||||
<circle cx="30" cy="27.5" r="15" fill="black" filter="url(#drop-shadow)" />
|
|
||||||
<use xlink:href="#d4" x="137.0" y="31.0" />
|
|
||||||
</g>
|
|
||||||
<g id="effects">
|
|
||||||
<path d="M10,80 L264,80" stroke="black" stroke-width="1" />
|
|
||||||
<use xlink:href="#d3" x="0" y="0" />
|
|
||||||
<use xlink:href="#d5" x="0" y="80" />
|
|
||||||
</g>
|
|
||||||
</defs>
|
</defs>
|
||||||
<use xlink:href="#drop-shadow" />
|
<use xlink:href="#drop-shadow" />
|
||||||
<g id="background">
|
<g id="background">
|
||||||
@@ -54,9 +23,40 @@
|
|||||||
<text x="149.0" y="36" font-size="19" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">wolf form</text>
|
<text x="149.0" y="36" font-size="19" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">wolf form</text>
|
||||||
<text x="149.0" y="53" font-size="13" text-anchor="middle" fill="black" font-family="Helvetica">Action</text>
|
<text x="149.0" y="53" font-size="13" text-anchor="middle" fill="black" font-family="Helvetica">Action</text>
|
||||||
</g>
|
</g>
|
||||||
<use xlink:href="#faction_icon" x="36" y="37" />
|
<g transform="translate(36,37)">
|
||||||
<use xlink:href="#d0" x="260" y="36" />
|
<g id="faction_icon">
|
||||||
|
<circle cx="1" cy="1" r="20" fill="black" filter="url(#drop-shadow)" />
|
||||||
|
<circle cx="0" cy="0" r="20" fill="url(#grad2)" />
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(260,36)">
|
||||||
|
<g class="svg_resource_icon" onclick="console.warn('unknown interaction')">
|
||||||
|
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
||||||
|
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">5</text>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
<rect x="0" y="65" width="298" height="200" />
|
<rect x="0" y="65" width="298" height="200" />
|
||||||
<image x="0" y="65" width="298" height="200" xlink:href="../../img/missing.png" />
|
<image x="0" y="65" width="298" height="200" xlink:href="../../img/missing.png" />
|
||||||
<use xlink:href="#effects" x="12" y="265" />
|
<g transform="translate(12,265)">
|
||||||
|
<path d="M10,80 L264,80" stroke="black" stroke-width="1" />
|
||||||
|
<g>
|
||||||
|
<g transform="translate(137.0,70.66666666666667)">
|
||||||
|
<text x="0" y="-0.0" font-size="13.333333333333334" text-anchor="middle" fill="black" font-family="Helvetica">L'adversaire ciblé se défausse d'une carte.</text>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(137.0,33.0)" v-bind:class="{used:used_effects_indexes.includes(0)}">
|
||||||
|
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '0' } ) );">
|
||||||
|
<circle cx="0" cy="0" r="20" fill="red" x="0" y="0" />
|
||||||
|
<text x="0" y="9" font-size="24" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">8</text>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(0,80)">
|
||||||
|
<g>
|
||||||
|
<circle cx="30" cy="27.5" r="15" fill="black" filter="url(#drop-shadow)" />
|
||||||
|
<g transform="translate(137.0,31.0)">
|
||||||
|
<text x="0" y="-7.0" font-size="14" text-anchor="middle" fill="black" font-family="Helvetica"><tspan x="0" dy="0em">L'adversaire ciblé</tspan><tspan x="0" dy="1em">se défausse d'une carte.</tspan></text>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
</svg>
|
</svg>
|
||||||
|
Before Width: | Height: | Size: 3.0 KiB After Width: | Height: | Size: 3.0 KiB |
@@ -1,6 +1,6 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||||
width="298" height="417" viewBox="0 0 298 417" id="card54">
|
width="298" height="417" viewBox="0 0 298 417" id="card54" class="card" xmlns:v-bind="https://heron.legonzaur.fr">
|
||||||
<defs>
|
<defs>
|
||||||
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
||||||
<stop offset="0" stop-color="green" stop-opacity="1" />
|
<stop offset="0" stop-color="green" stop-opacity="1" />
|
||||||
@@ -13,35 +13,6 @@
|
|||||||
<filter id="drop-shadow">
|
<filter id="drop-shadow">
|
||||||
<feDropShadow dx="1" dy="1" stdDeviation="0"></feDropShadow>
|
<feDropShadow dx="1" dy="1" stdDeviation="0"></feDropShadow>
|
||||||
</filter>
|
</filter>
|
||||||
<g id="faction_icon">
|
|
||||||
<circle cx="1" cy="1" r="20" fill="black" filter="url(#drop-shadow)" />
|
|
||||||
<circle cx="0" cy="0" r="20" fill="url(#grad2)" />
|
|
||||||
</g>
|
|
||||||
<g class="svg_resource_icon" onclick="console.warn('unknown interaction')" id="d0">
|
|
||||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
|
||||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">2</text>
|
|
||||||
</g>
|
|
||||||
<g id="d1">
|
|
||||||
<text x="0" y="-7.0" font-size="14" text-anchor="middle" fill="black" font-family="Helvetica"><tspan x="0" dy="0em">+ x pour chaque autre x</tspan><tspan x="0" dy="1em">que vous avez en jeu</tspan></text>
|
|
||||||
</g>
|
|
||||||
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '0' } ) );" id="d2">
|
|
||||||
<circle cx="0" cy="0" r="20" fill="red" x="0" y="0" />
|
|
||||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">2</text>
|
|
||||||
</g>
|
|
||||||
<g id="d3">
|
|
||||||
<circle cx="30" cy="67.5" r="15" fill="gray" filter="url(#drop-shadow)" />
|
|
||||||
<use xlink:href="#d1" x="137.0" y="101.5" />
|
|
||||||
<use xlink:href="#d2" x="137.0" y="60.5" />
|
|
||||||
</g>
|
|
||||||
<g id="effects">
|
|
||||||
<use xlink:href="#d3" x="0" y="0" />
|
|
||||||
</g>
|
|
||||||
<path d="M-2.9999999999999982,-2.0 L-29.6295824562643,-21.347524157501468 L-19.45798706418925,-52.652475842498525 L13.45798706418924,-52.65247584249853 L23.629582456264302,-21.34752415750148 Z" stroke-width="2" id="d4" />
|
|
||||||
<text x="-3" y="-20" font-size="28px" font-weight="bold" font-family="Helvetica" text-anchor="middle" id="d5">4</text>
|
|
||||||
<g id="champion_shield">
|
|
||||||
<use xlink:href="#d4" x="0" y="0" fill="darkgrey" stroke="#eee" />
|
|
||||||
<use xlink:href="#d5" x="0" y="0" fill="black" />
|
|
||||||
</g>
|
|
||||||
</defs>
|
</defs>
|
||||||
<use xlink:href="#drop-shadow" />
|
<use xlink:href="#drop-shadow" />
|
||||||
<g id="background">
|
<g id="background">
|
||||||
@@ -52,10 +23,36 @@
|
|||||||
<text x="149.0" y="36" font-size="19" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">wolf shaman</text>
|
<text x="149.0" y="36" font-size="19" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">wolf shaman</text>
|
||||||
<text x="149.0" y="53" font-size="13" text-anchor="middle" fill="black" font-family="Helvetica">Champion</text>
|
<text x="149.0" y="53" font-size="13" text-anchor="middle" fill="black" font-family="Helvetica">Champion</text>
|
||||||
</g>
|
</g>
|
||||||
<use xlink:href="#faction_icon" x="36" y="37" />
|
<g transform="translate(36,37)">
|
||||||
<use xlink:href="#d0" x="260" y="36" />
|
<g id="faction_icon">
|
||||||
|
<circle cx="1" cy="1" r="20" fill="black" filter="url(#drop-shadow)" />
|
||||||
|
<circle cx="0" cy="0" r="20" fill="url(#grad2)" />
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(260,36)">
|
||||||
|
<g class="svg_resource_icon" onclick="console.warn('unknown interaction')">
|
||||||
|
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
||||||
|
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">2</text>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
<rect x="0" y="65" width="298" height="200" />
|
<rect x="0" y="65" width="298" height="200" />
|
||||||
<image x="0" y="65" width="298" height="200" xlink:href="../../img/missing.png" />
|
<image x="0" y="65" width="298" height="200" xlink:href="../../img/missing.png" />
|
||||||
<use xlink:href="#effects" x="12" y="265" />
|
<g transform="translate(12,265)">
|
||||||
<use xlink:href="#champion_shield" x="268" y="417" />
|
<g>
|
||||||
|
<circle cx="30" cy="67.5" r="15" fill="gray" filter="url(#drop-shadow)" />
|
||||||
|
<g transform="translate(137.0,101.5)">
|
||||||
|
<text x="0" y="-7.0" font-size="14" text-anchor="middle" fill="black" font-family="Helvetica"><tspan x="0" dy="0em">+ x pour chaque autre x</tspan><tspan x="0" dy="1em">que vous avez en jeu</tspan></text>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(137.0,60.5)" v-bind:class="{used:used_effects_indexes.includes(0)}">
|
||||||
|
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '0' } ) );">
|
||||||
|
<circle cx="0" cy="0" r="20" fill="red" x="0" y="0" />
|
||||||
|
<text x="0" y="9" font-size="24" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">2</text>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(268,417)">
|
||||||
|
<path d="M-2.9999999999999982,-2.0 L-29.6295824562643,-21.347524157501468 L-19.45798706418925,-52.652475842498525 L13.45798706418924,-52.65247584249853 L23.629582456264302,-21.34752415750148 Z" fill="darkgrey" stroke="#eee" stroke-width="2" />
|
||||||
|
<text x="-3" y="-20" font-size="28px" font-weight="bold" font-family="Helvetica" text-anchor="middle" fill="black">4</text>
|
||||||
|
</g>
|
||||||
</svg>
|
</svg>
|
||||||
|
Before Width: | Height: | Size: 3.2 KiB After Width: | Height: | Size: 3.1 KiB |
@@ -1,6 +1,6 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||||
width="298" height="417" viewBox="0 0 298 417" id="card55">
|
width="298" height="417" viewBox="0 0 298 417" id="card55" class="card" xmlns:v-bind="https://heron.legonzaur.fr">
|
||||||
<defs>
|
<defs>
|
||||||
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
||||||
<stop offset="0" stop-color="gray" stop-opacity="1" />
|
<stop offset="0" stop-color="gray" stop-opacity="1" />
|
||||||
@@ -13,42 +13,6 @@
|
|||||||
<filter id="drop-shadow">
|
<filter id="drop-shadow">
|
||||||
<feDropShadow dx="1" dy="1" stdDeviation="0"></feDropShadow>
|
<feDropShadow dx="1" dy="1" stdDeviation="0"></feDropShadow>
|
||||||
</filter>
|
</filter>
|
||||||
<g id="faction_icon">
|
|
||||||
<circle cx="1" cy="1" r="20" fill="black" filter="url(#drop-shadow)" />
|
|
||||||
<circle cx="0" cy="0" r="20" fill="url(#grad2)" />
|
|
||||||
</g>
|
|
||||||
<g class="svg_resource_icon" onclick="console.warn('unknown interaction')" id="d0">
|
|
||||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
|
||||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">2</text>
|
|
||||||
</g>
|
|
||||||
<g id="d1">
|
|
||||||
<text x="0" y="-0.0" font-size="13.333333333333334" text-anchor="middle" fill="black" font-family="Helvetica"></text>
|
|
||||||
</g>
|
|
||||||
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '0' } ) );" id="d2">
|
|
||||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
|
||||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">2</text>
|
|
||||||
</g>
|
|
||||||
<g id="d3">
|
|
||||||
<use xlink:href="#d1" x="137.0" y="70.66666666666667" />
|
|
||||||
<use xlink:href="#d2" x="137.0" y="40.0" />
|
|
||||||
</g>
|
|
||||||
<g id="d4">
|
|
||||||
<text x="0" y="-0.0" font-size="11" text-anchor="middle" fill="black" font-family="Helvetica"></text>
|
|
||||||
</g>
|
|
||||||
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '1' } ) );" id="d5">
|
|
||||||
<circle cx="0" cy="0" r="18.333333333333332" fill="red" x="0" y="0" />
|
|
||||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">3</text>
|
|
||||||
</g>
|
|
||||||
<g id="d6">
|
|
||||||
<circle cx="30" cy="27.5" r="15" fill="black" filter="url(#drop-shadow)" />
|
|
||||||
<use xlink:href="#d4" x="137.0" y="45.666666666666664" />
|
|
||||||
<use xlink:href="#d5" x="137.0" y="27.5" />
|
|
||||||
</g>
|
|
||||||
<g id="effects">
|
|
||||||
<path d="M10,80 L264,80" stroke="black" stroke-width="1" />
|
|
||||||
<use xlink:href="#d3" x="0" y="0" />
|
|
||||||
<use xlink:href="#d6" x="0" y="80" />
|
|
||||||
</g>
|
|
||||||
</defs>
|
</defs>
|
||||||
<use xlink:href="#drop-shadow" />
|
<use xlink:href="#drop-shadow" />
|
||||||
<g id="background">
|
<g id="background">
|
||||||
@@ -59,9 +23,46 @@
|
|||||||
<text x="149.0" y="36" font-size="19" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">Fire Gem</text>
|
<text x="149.0" y="36" font-size="19" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">Fire Gem</text>
|
||||||
<text x="149.0" y="53" font-size="13" text-anchor="middle" fill="black" font-family="Helvetica">item</text>
|
<text x="149.0" y="53" font-size="13" text-anchor="middle" fill="black" font-family="Helvetica">item</text>
|
||||||
</g>
|
</g>
|
||||||
<use xlink:href="#faction_icon" x="36" y="37" />
|
<g transform="translate(36,37)">
|
||||||
<use xlink:href="#d0" x="260" y="36" />
|
<g id="faction_icon">
|
||||||
|
<circle cx="1" cy="1" r="20" fill="black" filter="url(#drop-shadow)" />
|
||||||
|
<circle cx="0" cy="0" r="20" fill="url(#grad2)" />
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(260,36)">
|
||||||
|
<g class="svg_resource_icon" onclick="console.warn('unknown interaction')">
|
||||||
|
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
||||||
|
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">2</text>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
<rect x="0" y="65" width="298" height="200" />
|
<rect x="0" y="65" width="298" height="200" />
|
||||||
<image x="0" y="65" width="298" height="200" xlink:href="../../img/missing.png" />
|
<image x="0" y="65" width="298" height="200" xlink:href="../../img/missing.png" />
|
||||||
<use xlink:href="#effects" x="12" y="265" />
|
<g transform="translate(12,265)">
|
||||||
|
<path d="M10,80 L264,80" stroke="black" stroke-width="1" />
|
||||||
|
<g>
|
||||||
|
<g transform="translate(137.0,70.66666666666667)">
|
||||||
|
<text x="0" y="-0.0" font-size="13.333333333333334" text-anchor="middle" fill="black" font-family="Helvetica"></text>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(137.0,40.0)" v-bind:class="{used:used_effects_indexes.includes(0)}">
|
||||||
|
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '0' } ) );">
|
||||||
|
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
||||||
|
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">2</text>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(0,80)">
|
||||||
|
<g>
|
||||||
|
<circle cx="30" cy="27.5" r="15" fill="black" filter="url(#drop-shadow)" />
|
||||||
|
<g transform="translate(137.0,45.666666666666664)">
|
||||||
|
<text x="0" y="-0.0" font-size="11" text-anchor="middle" fill="black" font-family="Helvetica"></text>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(137.0,27.5)" v-bind:class="{used:used_effects_indexes.includes(1)}">
|
||||||
|
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '1' } ) );">
|
||||||
|
<circle cx="0" cy="0" r="18.333333333333332" fill="red" x="0" y="0" />
|
||||||
|
<text x="0" y="9" font-size="24" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">3</text>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
</svg>
|
</svg>
|
||||||
|
Before Width: | Height: | Size: 3.3 KiB After Width: | Height: | Size: 3.3 KiB |
@@ -1,6 +1,6 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||||
width="298" height="417" viewBox="0 0 298 417" id="card56">
|
width="298" height="417" viewBox="0 0 298 417" id="card56" class="card" xmlns:v-bind="https://heron.legonzaur.fr">
|
||||||
<defs>
|
<defs>
|
||||||
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
||||||
<stop offset="0" stop-color="gray" stop-opacity="1" />
|
<stop offset="0" stop-color="gray" stop-opacity="1" />
|
||||||
@@ -13,24 +13,6 @@
|
|||||||
<filter id="drop-shadow">
|
<filter id="drop-shadow">
|
||||||
<feDropShadow dx="1" dy="1" stdDeviation="0"></feDropShadow>
|
<feDropShadow dx="1" dy="1" stdDeviation="0"></feDropShadow>
|
||||||
</filter>
|
</filter>
|
||||||
<g id="faction_icon">
|
|
||||||
<circle cx="1" cy="1" r="20" fill="black" filter="url(#drop-shadow)" />
|
|
||||||
<circle cx="0" cy="0" r="20" fill="url(#grad2)" />
|
|
||||||
</g>
|
|
||||||
<g id="d0">
|
|
||||||
<text x="0" y="-0.0" font-size="14" text-anchor="middle" fill="black" font-family="Helvetica"></text>
|
|
||||||
</g>
|
|
||||||
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '0' } ) );" id="d1">
|
|
||||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
|
||||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">1</text>
|
|
||||||
</g>
|
|
||||||
<g id="d2">
|
|
||||||
<use xlink:href="#d0" x="137.0" y="101.5" />
|
|
||||||
<use xlink:href="#d1" x="137.0" y="67.5" />
|
|
||||||
</g>
|
|
||||||
<g id="effects">
|
|
||||||
<use xlink:href="#d2" x="0" y="0" />
|
|
||||||
</g>
|
|
||||||
</defs>
|
</defs>
|
||||||
<use xlink:href="#drop-shadow" />
|
<use xlink:href="#drop-shadow" />
|
||||||
<g id="background">
|
<g id="background">
|
||||||
@@ -41,8 +23,25 @@
|
|||||||
<text x="149.0" y="36" font-size="19" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">Gold</text>
|
<text x="149.0" y="36" font-size="19" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">Gold</text>
|
||||||
<text x="149.0" y="53" font-size="13" text-anchor="middle" fill="black" font-family="Helvetica">item</text>
|
<text x="149.0" y="53" font-size="13" text-anchor="middle" fill="black" font-family="Helvetica">item</text>
|
||||||
</g>
|
</g>
|
||||||
<use xlink:href="#faction_icon" x="36" y="37" />
|
<g transform="translate(36,37)">
|
||||||
|
<g id="faction_icon">
|
||||||
|
<circle cx="1" cy="1" r="20" fill="black" filter="url(#drop-shadow)" />
|
||||||
|
<circle cx="0" cy="0" r="20" fill="url(#grad2)" />
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
<rect x="0" y="65" width="298" height="200" />
|
<rect x="0" y="65" width="298" height="200" />
|
||||||
<image x="0" y="65" width="298" height="200" xlink:href="../../img/missing.png" />
|
<image x="0" y="65" width="298" height="200" xlink:href="../../img/missing.png" />
|
||||||
<use xlink:href="#effects" x="12" y="265" />
|
<g transform="translate(12,265)">
|
||||||
|
<g>
|
||||||
|
<g transform="translate(137.0,101.5)">
|
||||||
|
<text x="0" y="-0.0" font-size="14" text-anchor="middle" fill="black" font-family="Helvetica"></text>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(137.0,67.5)" v-bind:class="{used:used_effects_indexes.includes(0)}">
|
||||||
|
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '0' } ) );">
|
||||||
|
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
||||||
|
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">1</text>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
</svg>
|
</svg>
|
||||||
|
Before Width: | Height: | Size: 2.2 KiB After Width: | Height: | Size: 2.2 KiB |
@@ -1,6 +1,6 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||||
width="298" height="417" viewBox="0 0 298 417" id="card57">
|
width="298" height="417" viewBox="0 0 298 417" id="card57" class="card" xmlns:v-bind="https://heron.legonzaur.fr">
|
||||||
<defs>
|
<defs>
|
||||||
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
||||||
<stop offset="0" stop-color="gray" stop-opacity="1" />
|
<stop offset="0" stop-color="gray" stop-opacity="1" />
|
||||||
@@ -13,24 +13,6 @@
|
|||||||
<filter id="drop-shadow">
|
<filter id="drop-shadow">
|
||||||
<feDropShadow dx="1" dy="1" stdDeviation="0"></feDropShadow>
|
<feDropShadow dx="1" dy="1" stdDeviation="0"></feDropShadow>
|
||||||
</filter>
|
</filter>
|
||||||
<g id="faction_icon">
|
|
||||||
<circle cx="1" cy="1" r="20" fill="black" filter="url(#drop-shadow)" />
|
|
||||||
<circle cx="0" cy="0" r="20" fill="url(#grad2)" />
|
|
||||||
</g>
|
|
||||||
<g id="d0">
|
|
||||||
<text x="0" y="-0.0" font-size="14" text-anchor="middle" fill="black" font-family="Helvetica"></text>
|
|
||||||
</g>
|
|
||||||
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '0' } ) );" id="d1">
|
|
||||||
<circle cx="0" cy="0" r="20" fill="red" x="0" y="0" />
|
|
||||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">2</text>
|
|
||||||
</g>
|
|
||||||
<g id="d2">
|
|
||||||
<use xlink:href="#d0" x="137.0" y="101.5" />
|
|
||||||
<use xlink:href="#d1" x="137.0" y="67.5" />
|
|
||||||
</g>
|
|
||||||
<g id="effects">
|
|
||||||
<use xlink:href="#d2" x="0" y="0" />
|
|
||||||
</g>
|
|
||||||
</defs>
|
</defs>
|
||||||
<use xlink:href="#drop-shadow" />
|
<use xlink:href="#drop-shadow" />
|
||||||
<g id="background">
|
<g id="background">
|
||||||
@@ -41,8 +23,25 @@
|
|||||||
<text x="149.0" y="36" font-size="19" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">Shortsword</text>
|
<text x="149.0" y="36" font-size="19" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">Shortsword</text>
|
||||||
<text x="149.0" y="53" font-size="13" text-anchor="middle" fill="black" font-family="Helvetica">item</text>
|
<text x="149.0" y="53" font-size="13" text-anchor="middle" fill="black" font-family="Helvetica">item</text>
|
||||||
</g>
|
</g>
|
||||||
<use xlink:href="#faction_icon" x="36" y="37" />
|
<g transform="translate(36,37)">
|
||||||
|
<g id="faction_icon">
|
||||||
|
<circle cx="1" cy="1" r="20" fill="black" filter="url(#drop-shadow)" />
|
||||||
|
<circle cx="0" cy="0" r="20" fill="url(#grad2)" />
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
<rect x="0" y="65" width="298" height="200" />
|
<rect x="0" y="65" width="298" height="200" />
|
||||||
<image x="0" y="65" width="298" height="200" xlink:href="../../img/missing.png" />
|
<image x="0" y="65" width="298" height="200" xlink:href="../../img/missing.png" />
|
||||||
<use xlink:href="#effects" x="12" y="265" />
|
<g transform="translate(12,265)">
|
||||||
|
<g>
|
||||||
|
<g transform="translate(137.0,101.5)">
|
||||||
|
<text x="0" y="-0.0" font-size="14" text-anchor="middle" fill="black" font-family="Helvetica"></text>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(137.0,67.5)" v-bind:class="{used:used_effects_indexes.includes(0)}">
|
||||||
|
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '0' } ) );">
|
||||||
|
<circle cx="0" cy="0" r="20" fill="red" x="0" y="0" />
|
||||||
|
<text x="0" y="9" font-size="24" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">2</text>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
</svg>
|
</svg>
|
||||||
|
Before Width: | Height: | Size: 2.2 KiB After Width: | Height: | Size: 2.2 KiB |
@@ -1,6 +1,6 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||||
width="298" height="417" viewBox="0 0 298 417" id="card58">
|
width="298" height="417" viewBox="0 0 298 417" id="card58" class="card" xmlns:v-bind="https://heron.legonzaur.fr">
|
||||||
<defs>
|
<defs>
|
||||||
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
||||||
<stop offset="0" stop-color="gray" stop-opacity="1" />
|
<stop offset="0" stop-color="gray" stop-opacity="1" />
|
||||||
@@ -13,24 +13,6 @@
|
|||||||
<filter id="drop-shadow">
|
<filter id="drop-shadow">
|
||||||
<feDropShadow dx="1" dy="1" stdDeviation="0"></feDropShadow>
|
<feDropShadow dx="1" dy="1" stdDeviation="0"></feDropShadow>
|
||||||
</filter>
|
</filter>
|
||||||
<g id="faction_icon">
|
|
||||||
<circle cx="1" cy="1" r="20" fill="black" filter="url(#drop-shadow)" />
|
|
||||||
<circle cx="0" cy="0" r="20" fill="url(#grad2)" />
|
|
||||||
</g>
|
|
||||||
<g id="d0">
|
|
||||||
<text x="0" y="-0.0" font-size="14" text-anchor="middle" fill="black" font-family="Helvetica"></text>
|
|
||||||
</g>
|
|
||||||
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '0' } ) );" id="d1">
|
|
||||||
<circle cx="0" cy="0" r="20" fill="red" x="0" y="0" />
|
|
||||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">1</text>
|
|
||||||
</g>
|
|
||||||
<g id="d2">
|
|
||||||
<use xlink:href="#d0" x="137.0" y="101.5" />
|
|
||||||
<use xlink:href="#d1" x="137.0" y="67.5" />
|
|
||||||
</g>
|
|
||||||
<g id="effects">
|
|
||||||
<use xlink:href="#d2" x="0" y="0" />
|
|
||||||
</g>
|
|
||||||
</defs>
|
</defs>
|
||||||
<use xlink:href="#drop-shadow" />
|
<use xlink:href="#drop-shadow" />
|
||||||
<g id="background">
|
<g id="background">
|
||||||
@@ -41,8 +23,25 @@
|
|||||||
<text x="149.0" y="36" font-size="19" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">Dagger</text>
|
<text x="149.0" y="36" font-size="19" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">Dagger</text>
|
||||||
<text x="149.0" y="53" font-size="13" text-anchor="middle" fill="black" font-family="Helvetica">item</text>
|
<text x="149.0" y="53" font-size="13" text-anchor="middle" fill="black" font-family="Helvetica">item</text>
|
||||||
</g>
|
</g>
|
||||||
<use xlink:href="#faction_icon" x="36" y="37" />
|
<g transform="translate(36,37)">
|
||||||
|
<g id="faction_icon">
|
||||||
|
<circle cx="1" cy="1" r="20" fill="black" filter="url(#drop-shadow)" />
|
||||||
|
<circle cx="0" cy="0" r="20" fill="url(#grad2)" />
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
<rect x="0" y="65" width="298" height="200" />
|
<rect x="0" y="65" width="298" height="200" />
|
||||||
<image x="0" y="65" width="298" height="200" xlink:href="../../img/missing.png" />
|
<image x="0" y="65" width="298" height="200" xlink:href="../../img/missing.png" />
|
||||||
<use xlink:href="#effects" x="12" y="265" />
|
<g transform="translate(12,265)">
|
||||||
|
<g>
|
||||||
|
<g transform="translate(137.0,101.5)">
|
||||||
|
<text x="0" y="-0.0" font-size="14" text-anchor="middle" fill="black" font-family="Helvetica"></text>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(137.0,67.5)" v-bind:class="{used:used_effects_indexes.includes(0)}">
|
||||||
|
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '0' } ) );">
|
||||||
|
<circle cx="0" cy="0" r="20" fill="red" x="0" y="0" />
|
||||||
|
<text x="0" y="9" font-size="24" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">1</text>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
</svg>
|
</svg>
|
||||||
|
Before Width: | Height: | Size: 2.2 KiB After Width: | Height: | Size: 2.2 KiB |
@@ -1,6 +1,6 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||||
width="298" height="417" viewBox="0 0 298 417" id="card59">
|
width="298" height="417" viewBox="0 0 298 417" id="card59" class="card" xmlns:v-bind="https://heron.legonzaur.fr">
|
||||||
<defs>
|
<defs>
|
||||||
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
||||||
<stop offset="0" stop-color="gray" stop-opacity="1" />
|
<stop offset="0" stop-color="gray" stop-opacity="1" />
|
||||||
@@ -13,24 +13,6 @@
|
|||||||
<filter id="drop-shadow">
|
<filter id="drop-shadow">
|
||||||
<feDropShadow dx="1" dy="1" stdDeviation="0"></feDropShadow>
|
<feDropShadow dx="1" dy="1" stdDeviation="0"></feDropShadow>
|
||||||
</filter>
|
</filter>
|
||||||
<g id="faction_icon">
|
|
||||||
<circle cx="1" cy="1" r="20" fill="black" filter="url(#drop-shadow)" />
|
|
||||||
<circle cx="0" cy="0" r="20" fill="url(#grad2)" />
|
|
||||||
</g>
|
|
||||||
<g id="d0">
|
|
||||||
<text x="0" y="-0.0" font-size="14" text-anchor="middle" fill="black" font-family="Helvetica"></text>
|
|
||||||
</g>
|
|
||||||
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '0' } ) );" id="d1">
|
|
||||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
|
||||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">2</text>
|
|
||||||
</g>
|
|
||||||
<g id="d2">
|
|
||||||
<use xlink:href="#d0" x="137.0" y="101.5" />
|
|
||||||
<use xlink:href="#d1" x="137.0" y="67.5" />
|
|
||||||
</g>
|
|
||||||
<g id="effects">
|
|
||||||
<use xlink:href="#d2" x="0" y="0" />
|
|
||||||
</g>
|
|
||||||
</defs>
|
</defs>
|
||||||
<use xlink:href="#drop-shadow" />
|
<use xlink:href="#drop-shadow" />
|
||||||
<g id="background">
|
<g id="background">
|
||||||
@@ -41,8 +23,25 @@
|
|||||||
<text x="149.0" y="36" font-size="19" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">Ruby</text>
|
<text x="149.0" y="36" font-size="19" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">Ruby</text>
|
||||||
<text x="149.0" y="53" font-size="13" text-anchor="middle" fill="black" font-family="Helvetica">item</text>
|
<text x="149.0" y="53" font-size="13" text-anchor="middle" fill="black" font-family="Helvetica">item</text>
|
||||||
</g>
|
</g>
|
||||||
<use xlink:href="#faction_icon" x="36" y="37" />
|
<g transform="translate(36,37)">
|
||||||
|
<g id="faction_icon">
|
||||||
|
<circle cx="1" cy="1" r="20" fill="black" filter="url(#drop-shadow)" />
|
||||||
|
<circle cx="0" cy="0" r="20" fill="url(#grad2)" />
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
<rect x="0" y="65" width="298" height="200" />
|
<rect x="0" y="65" width="298" height="200" />
|
||||||
<image x="0" y="65" width="298" height="200" xlink:href="../../img/missing.png" />
|
<image x="0" y="65" width="298" height="200" xlink:href="../../img/missing.png" />
|
||||||
<use xlink:href="#effects" x="12" y="265" />
|
<g transform="translate(12,265)">
|
||||||
|
<g>
|
||||||
|
<g transform="translate(137.0,101.5)">
|
||||||
|
<text x="0" y="-0.0" font-size="14" text-anchor="middle" fill="black" font-family="Helvetica"></text>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(137.0,67.5)" v-bind:class="{used:used_effects_indexes.includes(0)}">
|
||||||
|
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '0' } ) );">
|
||||||
|
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
||||||
|
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">2</text>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
</svg>
|
</svg>
|
||||||
|
Before Width: | Height: | Size: 2.2 KiB After Width: | Height: | Size: 2.2 KiB |
@@ -1,6 +1,6 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||||
width="298" height="417" viewBox="0 0 298 417" id="card60">
|
width="298" height="417" viewBox="0 0 298 417" id="card60" class="card" xmlns:v-bind="https://heron.legonzaur.fr">
|
||||||
<defs>
|
<defs>
|
||||||
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
||||||
<stop offset="0" stop-color="blue" stop-opacity="1" />
|
<stop offset="0" stop-color="blue" stop-opacity="1" />
|
||||||
@@ -13,37 +13,6 @@
|
|||||||
<filter id="drop-shadow">
|
<filter id="drop-shadow">
|
||||||
<feDropShadow dx="1" dy="1" stdDeviation="0"></feDropShadow>
|
<feDropShadow dx="1" dy="1" stdDeviation="0"></feDropShadow>
|
||||||
</filter>
|
</filter>
|
||||||
<g id="faction_icon">
|
|
||||||
<circle cx="1" cy="1" r="20" fill="black" filter="url(#drop-shadow)" />
|
|
||||||
<circle cx="0" cy="0" r="20" fill="url(#grad2)" />
|
|
||||||
</g>
|
|
||||||
<g class="svg_resource_icon" onclick="console.warn('unknown interaction')" id="d0">
|
|
||||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
|
||||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">7</text>
|
|
||||||
</g>
|
|
||||||
<g id="d1">
|
|
||||||
<text x="0" y="-11.0" font-size="11" text-anchor="middle" fill="black" font-family="Helvetica"><tspan x="0" dy="0em">Mettez la prochaine carte dont</tspan><tspan x="0" dy="1em">vous faites l'acquisition ce tour-ci</tspan><tspan x="0" dy="1em"> dans votre main.</tspan></text>
|
|
||||||
</g>
|
|
||||||
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '0' } ) );" id="d2">
|
|
||||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
|
||||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">3</text>
|
|
||||||
</g>
|
|
||||||
<g id="d3">
|
|
||||||
<use xlink:href="#d1" x="137.0" y="70.66666666666667" />
|
|
||||||
<use xlink:href="#d2" x="137.0" y="33.0" />
|
|
||||||
</g>
|
|
||||||
<g id="d4">
|
|
||||||
<text x="0" y="-0.0" font-size="14" text-anchor="middle" fill="black" font-family="Helvetica">Piochez une carte.</text>
|
|
||||||
</g>
|
|
||||||
<g id="d5">
|
|
||||||
<circle cx="30" cy="27.5" r="15" fill="url(#grad2)" filter="url(#drop-shadow)" />
|
|
||||||
<use xlink:href="#d4" x="137.0" y="31.0" />
|
|
||||||
</g>
|
|
||||||
<g id="effects">
|
|
||||||
<path d="M10,80 L264,80" stroke="black" stroke-width="1" />
|
|
||||||
<use xlink:href="#d3" x="0" y="0" />
|
|
||||||
<use xlink:href="#d5" x="0" y="80" />
|
|
||||||
</g>
|
|
||||||
</defs>
|
</defs>
|
||||||
<use xlink:href="#drop-shadow" />
|
<use xlink:href="#drop-shadow" />
|
||||||
<g id="background">
|
<g id="background">
|
||||||
@@ -54,9 +23,40 @@
|
|||||||
<text x="149.0" y="36" font-size="19" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">Bounty Collection</text>
|
<text x="149.0" y="36" font-size="19" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">Bounty Collection</text>
|
||||||
<text x="149.0" y="53" font-size="13" text-anchor="middle" fill="black" font-family="Helvetica">Action</text>
|
<text x="149.0" y="53" font-size="13" text-anchor="middle" fill="black" font-family="Helvetica">Action</text>
|
||||||
</g>
|
</g>
|
||||||
<use xlink:href="#faction_icon" x="36" y="37" />
|
<g transform="translate(36,37)">
|
||||||
<use xlink:href="#d0" x="260" y="36" />
|
<g id="faction_icon">
|
||||||
|
<circle cx="1" cy="1" r="20" fill="black" filter="url(#drop-shadow)" />
|
||||||
|
<circle cx="0" cy="0" r="20" fill="url(#grad2)" />
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(260,36)">
|
||||||
|
<g class="svg_resource_icon" onclick="console.warn('unknown interaction')">
|
||||||
|
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
||||||
|
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">7</text>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
<rect x="0" y="65" width="298" height="200" />
|
<rect x="0" y="65" width="298" height="200" />
|
||||||
<image x="0" y="65" width="298" height="200" xlink:href="../../img/missing.png" />
|
<image x="0" y="65" width="298" height="200" xlink:href="../../img/missing.png" />
|
||||||
<use xlink:href="#effects" x="12" y="265" />
|
<g transform="translate(12,265)">
|
||||||
|
<path d="M10,80 L264,80" stroke="black" stroke-width="1" />
|
||||||
|
<g>
|
||||||
|
<g transform="translate(137.0,70.66666666666667)">
|
||||||
|
<text x="0" y="-11.0" font-size="11" text-anchor="middle" fill="black" font-family="Helvetica"><tspan x="0" dy="0em">Mettez la prochaine carte dont</tspan><tspan x="0" dy="1em">vous faites l'acquisition ce tour-ci</tspan><tspan x="0" dy="1em"> dans votre main.</tspan></text>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(137.0,33.0)" v-bind:class="{used:used_effects_indexes.includes(0)}">
|
||||||
|
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '0' } ) );">
|
||||||
|
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
||||||
|
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">3</text>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(0,80)">
|
||||||
|
<g>
|
||||||
|
<circle cx="30" cy="27.5" r="15" fill="url(#grad2)" filter="url(#drop-shadow)" />
|
||||||
|
<g transform="translate(137.0,31.0)">
|
||||||
|
<text x="0" y="-0.0" font-size="14" text-anchor="middle" fill="black" font-family="Helvetica">Piochez une carte.</text>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
</svg>
|
</svg>
|
||||||
|
Before Width: | Height: | Size: 3.1 KiB After Width: | Height: | Size: 3.0 KiB |
@@ -1,6 +1,6 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||||
width="298" height="417" viewBox="0 0 298 417" id="card61">
|
width="298" height="417" viewBox="0 0 298 417" id="card61" class="card" xmlns:v-bind="https://heron.legonzaur.fr">
|
||||||
<defs>
|
<defs>
|
||||||
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
||||||
<stop offset="0" stop-color="green" stop-opacity="1" />
|
<stop offset="0" stop-color="green" stop-opacity="1" />
|
||||||
@@ -13,32 +13,6 @@
|
|||||||
<filter id="drop-shadow">
|
<filter id="drop-shadow">
|
||||||
<feDropShadow dx="1" dy="1" stdDeviation="0"></feDropShadow>
|
<feDropShadow dx="1" dy="1" stdDeviation="0"></feDropShadow>
|
||||||
</filter>
|
</filter>
|
||||||
<g id="faction_icon">
|
|
||||||
<circle cx="1" cy="1" r="20" fill="black" filter="url(#drop-shadow)" />
|
|
||||||
<circle cx="0" cy="0" r="20" fill="url(#grad2)" />
|
|
||||||
</g>
|
|
||||||
<g class="svg_resource_icon" onclick="console.warn('unknown interaction')" id="d0">
|
|
||||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
|
||||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">3</text>
|
|
||||||
</g>
|
|
||||||
<g id="d1">
|
|
||||||
<text x="0" y="-5.5" font-size="11" text-anchor="middle" fill="black" font-family="Helvetica"><tspan x="0" dy="0em">L'adversaire ciblé se défausse d'une carte. </tspan><tspan x="0" dy="1em">restack_discarded_card</tspan></text>
|
|
||||||
</g>
|
|
||||||
<g id="d2">
|
|
||||||
<use xlink:href="#d1" x="137.0" y="43.5" />
|
|
||||||
</g>
|
|
||||||
<g id="d3">
|
|
||||||
<text x="0" y="-0.0" font-size="14" text-anchor="middle" fill="black" font-family="Helvetica">Piochez une carte.</text>
|
|
||||||
</g>
|
|
||||||
<g id="d4">
|
|
||||||
<circle cx="30" cy="27.5" r="15" fill="black" filter="url(#drop-shadow)" />
|
|
||||||
<use xlink:href="#d3" x="137.0" y="31.0" />
|
|
||||||
</g>
|
|
||||||
<g id="effects">
|
|
||||||
<path d="M10,80 L264,80" stroke="black" stroke-width="1" />
|
|
||||||
<use xlink:href="#d2" x="0" y="0" />
|
|
||||||
<use xlink:href="#d4" x="0" y="80" />
|
|
||||||
</g>
|
|
||||||
</defs>
|
</defs>
|
||||||
<use xlink:href="#drop-shadow" />
|
<use xlink:href="#drop-shadow" />
|
||||||
<g id="background">
|
<g id="background">
|
||||||
@@ -49,9 +23,34 @@
|
|||||||
<text x="149.0" y="36" font-size="19" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">Daring Escape</text>
|
<text x="149.0" y="36" font-size="19" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">Daring Escape</text>
|
||||||
<text x="149.0" y="53" font-size="13" text-anchor="middle" fill="black" font-family="Helvetica">Action</text>
|
<text x="149.0" y="53" font-size="13" text-anchor="middle" fill="black" font-family="Helvetica">Action</text>
|
||||||
</g>
|
</g>
|
||||||
<use xlink:href="#faction_icon" x="36" y="37" />
|
<g transform="translate(36,37)">
|
||||||
<use xlink:href="#d0" x="260" y="36" />
|
<g id="faction_icon">
|
||||||
|
<circle cx="1" cy="1" r="20" fill="black" filter="url(#drop-shadow)" />
|
||||||
|
<circle cx="0" cy="0" r="20" fill="url(#grad2)" />
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(260,36)">
|
||||||
|
<g class="svg_resource_icon" onclick="console.warn('unknown interaction')">
|
||||||
|
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
||||||
|
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">3</text>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
<rect x="0" y="65" width="298" height="200" />
|
<rect x="0" y="65" width="298" height="200" />
|
||||||
<image x="0" y="65" width="298" height="200" xlink:href="../../img/missing.png" />
|
<image x="0" y="65" width="298" height="200" xlink:href="../../img/missing.png" />
|
||||||
<use xlink:href="#effects" x="12" y="265" />
|
<g transform="translate(12,265)">
|
||||||
|
<path d="M10,80 L264,80" stroke="black" stroke-width="1" />
|
||||||
|
<g>
|
||||||
|
<g transform="translate(137.0,43.5)">
|
||||||
|
<text x="0" y="-5.5" font-size="11" text-anchor="middle" fill="black" font-family="Helvetica"><tspan x="0" dy="0em">L'adversaire ciblé se défausse d'une carte. </tspan><tspan x="0" dy="1em">restack_discarded_card</tspan></text>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(0,80)">
|
||||||
|
<g>
|
||||||
|
<circle cx="30" cy="27.5" r="15" fill="black" filter="url(#drop-shadow)" />
|
||||||
|
<g transform="translate(137.0,31.0)">
|
||||||
|
<text x="0" y="-0.0" font-size="14" text-anchor="middle" fill="black" font-family="Helvetica">Piochez une carte.</text>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
</svg>
|
</svg>
|
||||||
|
Before Width: | Height: | Size: 2.6 KiB After Width: | Height: | Size: 2.5 KiB |
@@ -1,6 +1,6 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||||
width="298" height="417" viewBox="0 0 298 417" id="card62">
|
width="298" height="417" viewBox="0 0 298 417" id="card62" class="card" xmlns:v-bind="https://heron.legonzaur.fr">
|
||||||
<defs>
|
<defs>
|
||||||
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
||||||
<stop offset="0" stop-color="yellow" stop-opacity="1" />
|
<stop offset="0" stop-color="yellow" stop-opacity="1" />
|
||||||
@@ -13,42 +13,6 @@
|
|||||||
<filter id="drop-shadow">
|
<filter id="drop-shadow">
|
||||||
<feDropShadow dx="1" dy="1" stdDeviation="0"></feDropShadow>
|
<feDropShadow dx="1" dy="1" stdDeviation="0"></feDropShadow>
|
||||||
</filter>
|
</filter>
|
||||||
<g id="faction_icon">
|
|
||||||
<circle cx="1" cy="1" r="20" fill="black" filter="url(#drop-shadow)" />
|
|
||||||
<circle cx="0" cy="0" r="20" fill="url(#grad2)" />
|
|
||||||
</g>
|
|
||||||
<g class="svg_resource_icon" onclick="console.warn('unknown interaction')" id="d0">
|
|
||||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
|
||||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">8</text>
|
|
||||||
</g>
|
|
||||||
<g id="d1">
|
|
||||||
<text x="0" y="-0.0" font-size="13.333333333333334" text-anchor="middle" fill="black" font-family="Helvetica">Piochez deux cartes.</text>
|
|
||||||
</g>
|
|
||||||
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '0' } ) );" id="d2">
|
|
||||||
<circle cx="0" cy="0" r="20" fill="red" x="0" y="0" />
|
|
||||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">5</text>
|
|
||||||
</g>
|
|
||||||
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '1' } ) );" id="d3">
|
|
||||||
<circle cx="0" cy="0" r="20" fill="green" x="0" y="0" />
|
|
||||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">5</text>
|
|
||||||
</g>
|
|
||||||
<g id="d4">
|
|
||||||
<use xlink:href="#d1" x="137.0" y="70.66666666666667" />
|
|
||||||
<use xlink:href="#d2" x="107.0" y="33.0" />
|
|
||||||
<use xlink:href="#d3" x="167.0" y="33.0" />
|
|
||||||
</g>
|
|
||||||
<g id="d5">
|
|
||||||
<text x="0" y="-0.0" font-size="14" text-anchor="middle" fill="black" font-family="Helvetica">prepare_all_champions</text>
|
|
||||||
</g>
|
|
||||||
<g id="d6">
|
|
||||||
<circle cx="30" cy="27.5" r="15" fill="black" filter="url(#drop-shadow)" />
|
|
||||||
<use xlink:href="#d5" x="137.0" y="31.0" />
|
|
||||||
</g>
|
|
||||||
<g id="effects">
|
|
||||||
<path d="M10,80 L264,80" stroke="black" stroke-width="1" />
|
|
||||||
<use xlink:href="#d4" x="0" y="0" />
|
|
||||||
<use xlink:href="#d6" x="0" y="80" />
|
|
||||||
</g>
|
|
||||||
</defs>
|
</defs>
|
||||||
<use xlink:href="#drop-shadow" />
|
<use xlink:href="#drop-shadow" />
|
||||||
<g id="background">
|
<g id="background">
|
||||||
@@ -59,9 +23,46 @@
|
|||||||
<text x="149.0" y="36" font-size="19" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">Fearless Charge</text>
|
<text x="149.0" y="36" font-size="19" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">Fearless Charge</text>
|
||||||
<text x="149.0" y="53" font-size="13" text-anchor="middle" fill="black" font-family="Helvetica">Action</text>
|
<text x="149.0" y="53" font-size="13" text-anchor="middle" fill="black" font-family="Helvetica">Action</text>
|
||||||
</g>
|
</g>
|
||||||
<use xlink:href="#faction_icon" x="36" y="37" />
|
<g transform="translate(36,37)">
|
||||||
<use xlink:href="#d0" x="260" y="36" />
|
<g id="faction_icon">
|
||||||
|
<circle cx="1" cy="1" r="20" fill="black" filter="url(#drop-shadow)" />
|
||||||
|
<circle cx="0" cy="0" r="20" fill="url(#grad2)" />
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(260,36)">
|
||||||
|
<g class="svg_resource_icon" onclick="console.warn('unknown interaction')">
|
||||||
|
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
||||||
|
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">8</text>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
<rect x="0" y="65" width="298" height="200" />
|
<rect x="0" y="65" width="298" height="200" />
|
||||||
<image x="0" y="65" width="298" height="200" xlink:href="../../img/missing.png" />
|
<image x="0" y="65" width="298" height="200" xlink:href="../../img/missing.png" />
|
||||||
<use xlink:href="#effects" x="12" y="265" />
|
<g transform="translate(12,265)">
|
||||||
|
<path d="M10,80 L264,80" stroke="black" stroke-width="1" />
|
||||||
|
<g>
|
||||||
|
<g transform="translate(137.0,70.66666666666667)">
|
||||||
|
<text x="0" y="-0.0" font-size="13.333333333333334" text-anchor="middle" fill="black" font-family="Helvetica">Piochez deux cartes.</text>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(107.0,33.0)" v-bind:class="{used:used_effects_indexes.includes(0)}">
|
||||||
|
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '0' } ) );">
|
||||||
|
<circle cx="0" cy="0" r="20" fill="red" x="0" y="0" />
|
||||||
|
<text x="0" y="9" font-size="24" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">5</text>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(167.0,33.0)" v-bind:class="{used:used_effects_indexes.includes(1)}">
|
||||||
|
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '1' } ) );">
|
||||||
|
<circle cx="0" cy="0" r="20" fill="green" x="0" y="0" />
|
||||||
|
<text x="0" y="9" font-size="24" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">5</text>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(0,80)">
|
||||||
|
<g>
|
||||||
|
<circle cx="30" cy="27.5" r="15" fill="black" filter="url(#drop-shadow)" />
|
||||||
|
<g transform="translate(137.0,31.0)">
|
||||||
|
<text x="0" y="-0.0" font-size="14" text-anchor="middle" fill="black" font-family="Helvetica">prepare_all_champions</text>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
</svg>
|
</svg>
|
||||||
|
Before Width: | Height: | Size: 3.3 KiB After Width: | Height: | Size: 3.3 KiB |
@@ -1,6 +1,6 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||||
width="298" height="417" viewBox="0 0 298 417" id="card63">
|
width="298" height="417" viewBox="0 0 298 417" id="card63" class="card" xmlns:v-bind="https://heron.legonzaur.fr">
|
||||||
<defs>
|
<defs>
|
||||||
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
||||||
<stop offset="0" stop-color="red" stop-opacity="1" />
|
<stop offset="0" stop-color="red" stop-opacity="1" />
|
||||||
@@ -13,37 +13,6 @@
|
|||||||
<filter id="drop-shadow">
|
<filter id="drop-shadow">
|
||||||
<feDropShadow dx="1" dy="1" stdDeviation="0"></feDropShadow>
|
<feDropShadow dx="1" dy="1" stdDeviation="0"></feDropShadow>
|
||||||
</filter>
|
</filter>
|
||||||
<g id="faction_icon">
|
|
||||||
<circle cx="1" cy="1" r="20" fill="black" filter="url(#drop-shadow)" />
|
|
||||||
<circle cx="0" cy="0" r="20" fill="url(#grad2)" />
|
|
||||||
</g>
|
|
||||||
<g class="svg_resource_icon" onclick="console.warn('unknown interaction')" id="d0">
|
|
||||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
|
||||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">3</text>
|
|
||||||
</g>
|
|
||||||
<g id="d1">
|
|
||||||
<text x="0" y="-0.0" font-size="13.333333333333334" text-anchor="middle" fill="black" font-family="Helvetica">cheaper_champions_passive</text>
|
|
||||||
</g>
|
|
||||||
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '0' } ) );" id="d2">
|
|
||||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
|
||||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">3</text>
|
|
||||||
</g>
|
|
||||||
<g id="d3">
|
|
||||||
<use xlink:href="#d1" x="137.0" y="70.66666666666667" />
|
|
||||||
<use xlink:href="#d2" x="137.0" y="33.0" />
|
|
||||||
</g>
|
|
||||||
<g id="d4">
|
|
||||||
<text x="0" y="-0.0" font-size="14" text-anchor="middle" fill="black" font-family="Helvetica">control_opposing_champion_passive</text>
|
|
||||||
</g>
|
|
||||||
<g id="d5">
|
|
||||||
<circle cx="30" cy="27.5" r="15" fill="black" filter="url(#drop-shadow)" />
|
|
||||||
<use xlink:href="#d4" x="137.0" y="31.0" />
|
|
||||||
</g>
|
|
||||||
<g id="effects">
|
|
||||||
<path d="M10,80 L264,80" stroke="black" stroke-width="1" />
|
|
||||||
<use xlink:href="#d3" x="0" y="0" />
|
|
||||||
<use xlink:href="#d5" x="0" y="80" />
|
|
||||||
</g>
|
|
||||||
</defs>
|
</defs>
|
||||||
<use xlink:href="#drop-shadow" />
|
<use xlink:href="#drop-shadow" />
|
||||||
<g id="background">
|
<g id="background">
|
||||||
@@ -54,9 +23,40 @@
|
|||||||
<text x="149.0" y="36" font-size="19" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">Sway</text>
|
<text x="149.0" y="36" font-size="19" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">Sway</text>
|
||||||
<text x="149.0" y="53" font-size="13" text-anchor="middle" fill="black" font-family="Helvetica">Action</text>
|
<text x="149.0" y="53" font-size="13" text-anchor="middle" fill="black" font-family="Helvetica">Action</text>
|
||||||
</g>
|
</g>
|
||||||
<use xlink:href="#faction_icon" x="36" y="37" />
|
<g transform="translate(36,37)">
|
||||||
<use xlink:href="#d0" x="260" y="36" />
|
<g id="faction_icon">
|
||||||
|
<circle cx="1" cy="1" r="20" fill="black" filter="url(#drop-shadow)" />
|
||||||
|
<circle cx="0" cy="0" r="20" fill="url(#grad2)" />
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(260,36)">
|
||||||
|
<g class="svg_resource_icon" onclick="console.warn('unknown interaction')">
|
||||||
|
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
||||||
|
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">3</text>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
<rect x="0" y="65" width="298" height="200" />
|
<rect x="0" y="65" width="298" height="200" />
|
||||||
<image x="0" y="65" width="298" height="200" xlink:href="../../img/missing.png" />
|
<image x="0" y="65" width="298" height="200" xlink:href="../../img/missing.png" />
|
||||||
<use xlink:href="#effects" x="12" y="265" />
|
<g transform="translate(12,265)">
|
||||||
|
<path d="M10,80 L264,80" stroke="black" stroke-width="1" />
|
||||||
|
<g>
|
||||||
|
<g transform="translate(137.0,70.66666666666667)">
|
||||||
|
<text x="0" y="-0.0" font-size="13.333333333333334" text-anchor="middle" fill="black" font-family="Helvetica">cheaper_champions_passive</text>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(137.0,33.0)" v-bind:class="{used:used_effects_indexes.includes(0)}">
|
||||||
|
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '0' } ) );">
|
||||||
|
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
||||||
|
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">3</text>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(0,80)">
|
||||||
|
<g>
|
||||||
|
<circle cx="30" cy="27.5" r="15" fill="black" filter="url(#drop-shadow)" />
|
||||||
|
<g transform="translate(137.0,31.0)">
|
||||||
|
<text x="0" y="-0.0" font-size="14" text-anchor="middle" fill="black" font-family="Helvetica">control_opposing_champion_passive</text>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
</svg>
|
</svg>
|
||||||
|
Before Width: | Height: | Size: 2.9 KiB After Width: | Height: | Size: 2.9 KiB |
@@ -1,6 +1,6 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||||
width="298" height="417" viewBox="0 0 298 417" id="card64">
|
width="298" height="417" viewBox="0 0 298 417" id="card64" class="card" xmlns:v-bind="https://heron.legonzaur.fr">
|
||||||
<defs>
|
<defs>
|
||||||
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
||||||
<stop offset="0" stop-color="blue" stop-opacity="1" />
|
<stop offset="0" stop-color="blue" stop-opacity="1" />
|
||||||
@@ -13,35 +13,6 @@
|
|||||||
<filter id="drop-shadow">
|
<filter id="drop-shadow">
|
||||||
<feDropShadow dx="1" dy="1" stdDeviation="0"></feDropShadow>
|
<feDropShadow dx="1" dy="1" stdDeviation="0"></feDropShadow>
|
||||||
</filter>
|
</filter>
|
||||||
<g id="faction_icon">
|
|
||||||
<circle cx="1" cy="1" r="20" fill="black" filter="url(#drop-shadow)" />
|
|
||||||
<circle cx="0" cy="0" r="20" fill="url(#grad2)" />
|
|
||||||
</g>
|
|
||||||
<g class="svg_resource_icon" onclick="console.warn('unknown interaction')" id="d0">
|
|
||||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
|
||||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">2</text>
|
|
||||||
</g>
|
|
||||||
<g id="d1">
|
|
||||||
<text x="0" y="-0.0" font-size="14" text-anchor="middle" fill="black" font-family="Helvetica">+ x None</text>
|
|
||||||
</g>
|
|
||||||
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '0' } ) );" id="d2">
|
|
||||||
<circle cx="0" cy="0" r="20" fill="red" x="0" y="0" />
|
|
||||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">2</text>
|
|
||||||
</g>
|
|
||||||
<g id="d3">
|
|
||||||
<circle cx="30" cy="67.5" r="15" fill="gray" filter="url(#drop-shadow)" />
|
|
||||||
<use xlink:href="#d1" x="137.0" y="101.5" />
|
|
||||||
<use xlink:href="#d2" x="137.0" y="60.5" />
|
|
||||||
</g>
|
|
||||||
<g id="effects">
|
|
||||||
<use xlink:href="#d3" x="0" y="0" />
|
|
||||||
</g>
|
|
||||||
<path d="M-2.9999999999999982,-2.0 L-29.6295824562643,-21.347524157501468 L-19.45798706418925,-52.652475842498525 L13.45798706418924,-52.65247584249853 L23.629582456264302,-21.34752415750148 Z" stroke-width="2" id="d4" />
|
|
||||||
<text x="-3" y="-20" font-size="28px" font-weight="bold" font-family="Helvetica" text-anchor="middle" id="d5">2</text>
|
|
||||||
<g id="champion_shield">
|
|
||||||
<use xlink:href="#d4" x="0" y="0" fill="darkgrey" stroke="#eee" />
|
|
||||||
<use xlink:href="#d5" x="0" y="0" fill="black" />
|
|
||||||
</g>
|
|
||||||
</defs>
|
</defs>
|
||||||
<use xlink:href="#drop-shadow" />
|
<use xlink:href="#drop-shadow" />
|
||||||
<g id="background">
|
<g id="background">
|
||||||
@@ -52,10 +23,36 @@
|
|||||||
<text x="149.0" y="36" font-size="19" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">Con Artist</text>
|
<text x="149.0" y="36" font-size="19" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">Con Artist</text>
|
||||||
<text x="149.0" y="53" font-size="13" text-anchor="middle" fill="black" font-family="Helvetica">Champion</text>
|
<text x="149.0" y="53" font-size="13" text-anchor="middle" fill="black" font-family="Helvetica">Champion</text>
|
||||||
</g>
|
</g>
|
||||||
<use xlink:href="#faction_icon" x="36" y="37" />
|
<g transform="translate(36,37)">
|
||||||
<use xlink:href="#d0" x="260" y="36" />
|
<g id="faction_icon">
|
||||||
|
<circle cx="1" cy="1" r="20" fill="black" filter="url(#drop-shadow)" />
|
||||||
|
<circle cx="0" cy="0" r="20" fill="url(#grad2)" />
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(260,36)">
|
||||||
|
<g class="svg_resource_icon" onclick="console.warn('unknown interaction')">
|
||||||
|
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
||||||
|
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">2</text>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
<rect x="0" y="65" width="298" height="200" />
|
<rect x="0" y="65" width="298" height="200" />
|
||||||
<image x="0" y="65" width="298" height="200" xlink:href="../../img/missing.png" />
|
<image x="0" y="65" width="298" height="200" xlink:href="../../img/missing.png" />
|
||||||
<use xlink:href="#effects" x="12" y="265" />
|
<g transform="translate(12,265)">
|
||||||
<use xlink:href="#champion_shield" x="268" y="417" />
|
<g>
|
||||||
|
<circle cx="30" cy="67.5" r="15" fill="gray" filter="url(#drop-shadow)" />
|
||||||
|
<g transform="translate(137.0,101.5)">
|
||||||
|
<text x="0" y="-0.0" font-size="14" text-anchor="middle" fill="black" font-family="Helvetica">+ x None</text>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(137.0,60.5)" v-bind:class="{used:used_effects_indexes.includes(0)}">
|
||||||
|
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '0' } ) );">
|
||||||
|
<circle cx="0" cy="0" r="20" fill="red" x="0" y="0" />
|
||||||
|
<text x="0" y="9" font-size="24" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">2</text>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(268,417)">
|
||||||
|
<path d="M-2.9999999999999982,-2.0 L-29.6295824562643,-21.347524157501468 L-19.45798706418925,-52.652475842498525 L13.45798706418924,-52.65247584249853 L23.629582456264302,-21.34752415750148 Z" fill="darkgrey" stroke="#eee" stroke-width="2" />
|
||||||
|
<text x="-3" y="-20" font-size="28px" font-weight="bold" font-family="Helvetica" text-anchor="middle" fill="black">2</text>
|
||||||
|
</g>
|
||||||
</svg>
|
</svg>
|
||||||
|
Before Width: | Height: | Size: 3.1 KiB After Width: | Height: | Size: 3.0 KiB |
@@ -1,6 +1,6 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||||
width="298" height="417" viewBox="0 0 298 417" id="card65">
|
width="298" height="417" viewBox="0 0 298 417" id="card65" class="card" xmlns:v-bind="https://heron.legonzaur.fr">
|
||||||
<defs>
|
<defs>
|
||||||
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
||||||
<stop offset="0" stop-color="red" stop-opacity="1" />
|
<stop offset="0" stop-color="red" stop-opacity="1" />
|
||||||
@@ -13,35 +13,6 @@
|
|||||||
<filter id="drop-shadow">
|
<filter id="drop-shadow">
|
||||||
<feDropShadow dx="1" dy="1" stdDeviation="0"></feDropShadow>
|
<feDropShadow dx="1" dy="1" stdDeviation="0"></feDropShadow>
|
||||||
</filter>
|
</filter>
|
||||||
<g id="faction_icon">
|
|
||||||
<circle cx="1" cy="1" r="20" fill="black" filter="url(#drop-shadow)" />
|
|
||||||
<circle cx="0" cy="0" r="20" fill="url(#grad2)" />
|
|
||||||
</g>
|
|
||||||
<g class="svg_resource_icon" onclick="console.warn('unknown interaction')" id="d0">
|
|
||||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
|
||||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">4</text>
|
|
||||||
</g>
|
|
||||||
<g id="d1">
|
|
||||||
<text x="0" y="-0.0" font-size="14" text-anchor="middle" fill="black" font-family="Helvetica">damage_all_champions</text>
|
|
||||||
</g>
|
|
||||||
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '0' } ) );" id="d2">
|
|
||||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
|
||||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">2</text>
|
|
||||||
</g>
|
|
||||||
<g id="d3">
|
|
||||||
<circle cx="30" cy="67.5" r="15" fill="gray" filter="url(#drop-shadow)" />
|
|
||||||
<use xlink:href="#d1" x="137.0" y="101.5" />
|
|
||||||
<use xlink:href="#d2" x="137.0" y="60.5" />
|
|
||||||
</g>
|
|
||||||
<g id="effects">
|
|
||||||
<use xlink:href="#d3" x="0" y="0" />
|
|
||||||
</g>
|
|
||||||
<path d="M-2.9999999999999982,-2.0 L-29.6295824562643,-21.347524157501468 L-19.45798706418925,-52.652475842498525 L13.45798706418924,-52.65247584249853 L23.629582456264302,-21.34752415750148 Z" stroke-width="2" id="d4" />
|
|
||||||
<text x="-3" y="-20" font-size="28px" font-weight="bold" font-family="Helvetica" text-anchor="middle" id="d5">5</text>
|
|
||||||
<g id="champion_shield">
|
|
||||||
<use xlink:href="#d4" x="0" y="0" fill="darkgrey" stroke="#eee" />
|
|
||||||
<use xlink:href="#d5" x="0" y="0" fill="black" />
|
|
||||||
</g>
|
|
||||||
</defs>
|
</defs>
|
||||||
<use xlink:href="#drop-shadow" />
|
<use xlink:href="#drop-shadow" />
|
||||||
<g id="background">
|
<g id="background">
|
||||||
@@ -52,10 +23,36 @@
|
|||||||
<text x="149.0" y="36" font-size="19" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">Olara, the Slayer</text>
|
<text x="149.0" y="36" font-size="19" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">Olara, the Slayer</text>
|
||||||
<text x="149.0" y="53" font-size="13" text-anchor="middle" fill="black" font-family="Helvetica">Champion</text>
|
<text x="149.0" y="53" font-size="13" text-anchor="middle" fill="black" font-family="Helvetica">Champion</text>
|
||||||
</g>
|
</g>
|
||||||
<use xlink:href="#faction_icon" x="36" y="37" />
|
<g transform="translate(36,37)">
|
||||||
<use xlink:href="#d0" x="260" y="36" />
|
<g id="faction_icon">
|
||||||
|
<circle cx="1" cy="1" r="20" fill="black" filter="url(#drop-shadow)" />
|
||||||
|
<circle cx="0" cy="0" r="20" fill="url(#grad2)" />
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(260,36)">
|
||||||
|
<g class="svg_resource_icon" onclick="console.warn('unknown interaction')">
|
||||||
|
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
||||||
|
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">4</text>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
<rect x="0" y="65" width="298" height="200" />
|
<rect x="0" y="65" width="298" height="200" />
|
||||||
<image x="0" y="65" width="298" height="200" xlink:href="../../img/missing.png" />
|
<image x="0" y="65" width="298" height="200" xlink:href="../../img/missing.png" />
|
||||||
<use xlink:href="#effects" x="12" y="265" />
|
<g transform="translate(12,265)">
|
||||||
<use xlink:href="#champion_shield" x="268" y="417" />
|
<g>
|
||||||
|
<circle cx="30" cy="67.5" r="15" fill="gray" filter="url(#drop-shadow)" />
|
||||||
|
<g transform="translate(137.0,101.5)">
|
||||||
|
<text x="0" y="-0.0" font-size="14" text-anchor="middle" fill="black" font-family="Helvetica">damage_all_champions</text>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(137.0,60.5)" v-bind:class="{used:used_effects_indexes.includes(0)}">
|
||||||
|
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '0' } ) );">
|
||||||
|
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
||||||
|
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">2</text>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(268,417)">
|
||||||
|
<path d="M-2.9999999999999982,-2.0 L-29.6295824562643,-21.347524157501468 L-19.45798706418925,-52.652475842498525 L13.45798706418924,-52.65247584249853 L23.629582456264302,-21.34752415750148 Z" fill="darkgrey" stroke="#eee" stroke-width="2" />
|
||||||
|
<text x="-3" y="-20" font-size="28px" font-weight="bold" font-family="Helvetica" text-anchor="middle" fill="black">5</text>
|
||||||
|
</g>
|
||||||
</svg>
|
</svg>
|
||||||
|
Before Width: | Height: | Size: 3.1 KiB After Width: | Height: | Size: 3.0 KiB |
@@ -1,6 +1,6 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||||
width="298" height="417" viewBox="0 0 298 417" id="card66">
|
width="298" height="417" viewBox="0 0 298 417" id="card66" class="card" xmlns:v-bind="https://heron.legonzaur.fr">
|
||||||
<defs>
|
<defs>
|
||||||
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
||||||
<stop offset="0" stop-color="green" stop-opacity="1" />
|
<stop offset="0" stop-color="green" stop-opacity="1" />
|
||||||
@@ -13,37 +13,6 @@
|
|||||||
<filter id="drop-shadow">
|
<filter id="drop-shadow">
|
||||||
<feDropShadow dx="1" dy="1" stdDeviation="0"></feDropShadow>
|
<feDropShadow dx="1" dy="1" stdDeviation="0"></feDropShadow>
|
||||||
</filter>
|
</filter>
|
||||||
<g id="faction_icon">
|
|
||||||
<circle cx="1" cy="1" r="20" fill="black" filter="url(#drop-shadow)" />
|
|
||||||
<circle cx="0" cy="0" r="20" fill="url(#grad2)" />
|
|
||||||
</g>
|
|
||||||
<g class="svg_resource_icon" onclick="console.warn('unknown interaction')" id="d0">
|
|
||||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
|
||||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">5</text>
|
|
||||||
</g>
|
|
||||||
<g id="d1">
|
|
||||||
<text x="0" y="-0.0" font-size="14" text-anchor="middle" fill="black" font-family="Helvetica">restack_discarded_action</text>
|
|
||||||
</g>
|
|
||||||
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '0' } ) );" id="d2">
|
|
||||||
<circle cx="0" cy="0" r="20" fill="red" x="0" y="0" />
|
|
||||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">3</text>
|
|
||||||
</g>
|
|
||||||
<g id="d3">
|
|
||||||
<circle cx="30" cy="67.5" r="15" fill="gray" filter="url(#drop-shadow)" />
|
|
||||||
<use xlink:href="#d1" x="137.0" y="101.5" />
|
|
||||||
<use xlink:href="#d2" x="137.0" y="60.5" />
|
|
||||||
</g>
|
|
||||||
<g id="effects">
|
|
||||||
<use xlink:href="#d3" x="0" y="0" />
|
|
||||||
</g>
|
|
||||||
<path d="M-2.9999999999999982,-2.0 L-29.6295824562643,-21.347524157501468 L-19.45798706418925,-52.652475842498525 L13.45798706418924,-52.65247584249853 L23.629582456264302,-21.34752415750148 Z" stroke-width="2" id="d4" />
|
|
||||||
<text x="-3" y="-20" font-size="28px" font-weight="bold" font-family="Helvetica" text-anchor="middle" id="d5">4</text>
|
|
||||||
<g id="champion_shield">
|
|
||||||
<use xlink:href="#d4" x="0" y="0" fill="black" stroke="lightgrey" />
|
|
||||||
<rect x="-28" y="-72" width="49" height="17" fill="black" stroke="lightgrey" stroke-width="2" />
|
|
||||||
<text x="-3" y="-59" font-size="12px" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">Garde</text>
|
|
||||||
<use xlink:href="#d5" x="0" y="0" fill="white" />
|
|
||||||
</g>
|
|
||||||
</defs>
|
</defs>
|
||||||
<use xlink:href="#drop-shadow" />
|
<use xlink:href="#drop-shadow" />
|
||||||
<g id="background">
|
<g id="background">
|
||||||
@@ -54,10 +23,38 @@
|
|||||||
<text x="149.0" y="36" font-size="19" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">Pelleas, the Seeker</text>
|
<text x="149.0" y="36" font-size="19" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">Pelleas, the Seeker</text>
|
||||||
<text x="149.0" y="53" font-size="13" text-anchor="middle" fill="black" font-family="Helvetica">Champion</text>
|
<text x="149.0" y="53" font-size="13" text-anchor="middle" fill="black" font-family="Helvetica">Champion</text>
|
||||||
</g>
|
</g>
|
||||||
<use xlink:href="#faction_icon" x="36" y="37" />
|
<g transform="translate(36,37)">
|
||||||
<use xlink:href="#d0" x="260" y="36" />
|
<g id="faction_icon">
|
||||||
|
<circle cx="1" cy="1" r="20" fill="black" filter="url(#drop-shadow)" />
|
||||||
|
<circle cx="0" cy="0" r="20" fill="url(#grad2)" />
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(260,36)">
|
||||||
|
<g class="svg_resource_icon" onclick="console.warn('unknown interaction')">
|
||||||
|
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
||||||
|
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">5</text>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
<rect x="0" y="65" width="298" height="200" />
|
<rect x="0" y="65" width="298" height="200" />
|
||||||
<image x="0" y="65" width="298" height="200" xlink:href="../../img/missing.png" />
|
<image x="0" y="65" width="298" height="200" xlink:href="../../img/missing.png" />
|
||||||
<use xlink:href="#effects" x="12" y="265" />
|
<g transform="translate(12,265)">
|
||||||
<use xlink:href="#champion_shield" x="268" y="417" />
|
<g>
|
||||||
|
<circle cx="30" cy="67.5" r="15" fill="gray" filter="url(#drop-shadow)" />
|
||||||
|
<g transform="translate(137.0,101.5)">
|
||||||
|
<text x="0" y="-0.0" font-size="14" text-anchor="middle" fill="black" font-family="Helvetica">restack_discarded_action</text>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(137.0,60.5)" v-bind:class="{used:used_effects_indexes.includes(0)}">
|
||||||
|
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '0' } ) );">
|
||||||
|
<circle cx="0" cy="0" r="20" fill="red" x="0" y="0" />
|
||||||
|
<text x="0" y="9" font-size="24" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">3</text>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(268,417)">
|
||||||
|
<path d="M-2.9999999999999982,-2.0 L-29.6295824562643,-21.347524157501468 L-19.45798706418925,-52.652475842498525 L13.45798706418924,-52.65247584249853 L23.629582456264302,-21.34752415750148 Z" fill="black" stroke="lightgrey" stroke-width="2" />
|
||||||
|
<rect x="-28" y="-72" width="49" height="17" fill="black" stroke="lightgrey" stroke-width="2" />
|
||||||
|
<text x="-3" y="-59" font-size="12px" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">Garde</text>
|
||||||
|
<text x="-3" y="-20" font-size="28px" font-weight="bold" font-family="Helvetica" text-anchor="middle" fill="white">4</text>
|
||||||
|
</g>
|
||||||
</svg>
|
</svg>
|
||||||
|
Before Width: | Height: | Size: 3.4 KiB After Width: | Height: | Size: 3.2 KiB |
@@ -1,6 +1,6 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||||
width="298" height="417" viewBox="0 0 298 417" id="card67">
|
width="298" height="417" viewBox="0 0 298 417" id="card67" class="card" xmlns:v-bind="https://heron.legonzaur.fr">
|
||||||
<defs>
|
<defs>
|
||||||
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
||||||
<stop offset="0" stop-color="yellow" stop-opacity="1" />
|
<stop offset="0" stop-color="yellow" stop-opacity="1" />
|
||||||
@@ -13,30 +13,6 @@
|
|||||||
<filter id="drop-shadow">
|
<filter id="drop-shadow">
|
||||||
<feDropShadow dx="1" dy="1" stdDeviation="0"></feDropShadow>
|
<feDropShadow dx="1" dy="1" stdDeviation="0"></feDropShadow>
|
||||||
</filter>
|
</filter>
|
||||||
<g id="faction_icon">
|
|
||||||
<circle cx="1" cy="1" r="20" fill="black" filter="url(#drop-shadow)" />
|
|
||||||
<circle cx="0" cy="0" r="20" fill="url(#grad2)" />
|
|
||||||
</g>
|
|
||||||
<g class="svg_resource_icon" onclick="console.warn('unknown interaction')" id="d0">
|
|
||||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
|
||||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">3</text>
|
|
||||||
</g>
|
|
||||||
<g id="d1">
|
|
||||||
<text x="0" y="-7.0" font-size="14" text-anchor="middle" fill="black" font-family="Helvetica"><tspan x="0" dy="0em">+ x pour chaque Champion x</tspan><tspan x="0" dy="1em">que vous avez en jeu</tspan></text>
|
|
||||||
</g>
|
|
||||||
<g id="d2">
|
|
||||||
<circle cx="30" cy="67.5" r="15" fill="gray" filter="url(#drop-shadow)" />
|
|
||||||
<use xlink:href="#d1" x="137.0" y="71.0" />
|
|
||||||
</g>
|
|
||||||
<g id="effects">
|
|
||||||
<use xlink:href="#d2" x="0" y="0" />
|
|
||||||
</g>
|
|
||||||
<path d="M-2.9999999999999982,-2.0 L-29.6295824562643,-21.347524157501468 L-19.45798706418925,-52.652475842498525 L13.45798706418924,-52.65247584249853 L23.629582456264302,-21.34752415750148 Z" stroke-width="2" id="d3" />
|
|
||||||
<text x="-3" y="-20" font-size="28px" font-weight="bold" font-family="Helvetica" text-anchor="middle" id="d4">3</text>
|
|
||||||
<g id="champion_shield">
|
|
||||||
<use xlink:href="#d3" x="0" y="0" fill="darkgrey" stroke="#eee" />
|
|
||||||
<use xlink:href="#d4" x="0" y="0" fill="black" />
|
|
||||||
</g>
|
|
||||||
</defs>
|
</defs>
|
||||||
<use xlink:href="#drop-shadow" />
|
<use xlink:href="#drop-shadow" />
|
||||||
<g id="background">
|
<g id="background">
|
||||||
@@ -47,10 +23,30 @@
|
|||||||
<text x="149.0" y="36" font-size="19" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">Veteran Squire</text>
|
<text x="149.0" y="36" font-size="19" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">Veteran Squire</text>
|
||||||
<text x="149.0" y="53" font-size="13" text-anchor="middle" fill="black" font-family="Helvetica">Champion</text>
|
<text x="149.0" y="53" font-size="13" text-anchor="middle" fill="black" font-family="Helvetica">Champion</text>
|
||||||
</g>
|
</g>
|
||||||
<use xlink:href="#faction_icon" x="36" y="37" />
|
<g transform="translate(36,37)">
|
||||||
<use xlink:href="#d0" x="260" y="36" />
|
<g id="faction_icon">
|
||||||
|
<circle cx="1" cy="1" r="20" fill="black" filter="url(#drop-shadow)" />
|
||||||
|
<circle cx="0" cy="0" r="20" fill="url(#grad2)" />
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(260,36)">
|
||||||
|
<g class="svg_resource_icon" onclick="console.warn('unknown interaction')">
|
||||||
|
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
||||||
|
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">3</text>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
<rect x="0" y="65" width="298" height="200" />
|
<rect x="0" y="65" width="298" height="200" />
|
||||||
<image x="0" y="65" width="298" height="200" xlink:href="../../img/missing.png" />
|
<image x="0" y="65" width="298" height="200" xlink:href="../../img/missing.png" />
|
||||||
<use xlink:href="#effects" x="12" y="265" />
|
<g transform="translate(12,265)">
|
||||||
<use xlink:href="#champion_shield" x="268" y="417" />
|
<g>
|
||||||
|
<circle cx="30" cy="67.5" r="15" fill="gray" filter="url(#drop-shadow)" />
|
||||||
|
<g transform="translate(137.0,71.0)">
|
||||||
|
<text x="0" y="-7.0" font-size="14" text-anchor="middle" fill="black" font-family="Helvetica"><tspan x="0" dy="0em">+ x pour chaque Champion x</tspan><tspan x="0" dy="1em">que vous avez en jeu</tspan></text>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(268,417)">
|
||||||
|
<path d="M-2.9999999999999982,-2.0 L-29.6295824562643,-21.347524157501468 L-19.45798706418925,-52.652475842498525 L13.45798706418924,-52.65247584249853 L23.629582456264302,-21.34752415750148 Z" fill="darkgrey" stroke="#eee" stroke-width="2" />
|
||||||
|
<text x="-3" y="-20" font-size="28px" font-weight="bold" font-family="Helvetica" text-anchor="middle" fill="black">3</text>
|
||||||
|
</g>
|
||||||
</svg>
|
</svg>
|
||||||
|
Before Width: | Height: | Size: 2.8 KiB After Width: | Height: | Size: 2.7 KiB |
@@ -1,6 +1,6 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||||
width="298" height="417" viewBox="0 0 298 417" id="card68">
|
width="298" height="417" viewBox="0 0 298 417" id="card68" class="card" xmlns:v-bind="https://heron.legonzaur.fr">
|
||||||
<defs>
|
<defs>
|
||||||
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
||||||
<stop offset="0" stop-color="yellow" stop-opacity="1" />
|
<stop offset="0" stop-color="yellow" stop-opacity="1" />
|
||||||
@@ -13,37 +13,6 @@
|
|||||||
<filter id="drop-shadow">
|
<filter id="drop-shadow">
|
||||||
<feDropShadow dx="1" dy="1" stdDeviation="0"></feDropShadow>
|
<feDropShadow dx="1" dy="1" stdDeviation="0"></feDropShadow>
|
||||||
</filter>
|
</filter>
|
||||||
<g id="faction_icon">
|
|
||||||
<circle cx="1" cy="1" r="20" fill="black" filter="url(#drop-shadow)" />
|
|
||||||
<circle cx="0" cy="0" r="20" fill="url(#grad2)" />
|
|
||||||
</g>
|
|
||||||
<g class="svg_resource_icon" onclick="console.warn('unknown interaction')" id="d0">
|
|
||||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
|
||||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">3</text>
|
|
||||||
</g>
|
|
||||||
<g id="d1">
|
|
||||||
<text x="0" y="-0.0" font-size="14" text-anchor="middle" fill="black" font-family="Helvetica">buy_for_free</text>
|
|
||||||
</g>
|
|
||||||
<g id="d2">
|
|
||||||
<use xlink:href="#d1" x="137.0" y="43.5" />
|
|
||||||
</g>
|
|
||||||
<g id="d3">
|
|
||||||
<text x="0" y="-0.0" font-size="11" text-anchor="middle" fill="black" font-family="Helvetica"></text>
|
|
||||||
</g>
|
|
||||||
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '1' } ) );" id="d4">
|
|
||||||
<circle cx="0" cy="0" r="18.333333333333332" fill="green" x="0" y="0" />
|
|
||||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">6</text>
|
|
||||||
</g>
|
|
||||||
<g id="d5">
|
|
||||||
<circle cx="30" cy="27.5" r="15" fill="url(#grad2)" filter="url(#drop-shadow)" />
|
|
||||||
<use xlink:href="#d3" x="137.0" y="45.666666666666664" />
|
|
||||||
<use xlink:href="#d4" x="137.0" y="27.5" />
|
|
||||||
</g>
|
|
||||||
<g id="effects">
|
|
||||||
<path d="M10,80 L264,80" stroke="black" stroke-width="1" />
|
|
||||||
<use xlink:href="#d2" x="0" y="0" />
|
|
||||||
<use xlink:href="#d5" x="0" y="80" />
|
|
||||||
</g>
|
|
||||||
</defs>
|
</defs>
|
||||||
<use xlink:href="#drop-shadow" />
|
<use xlink:href="#drop-shadow" />
|
||||||
<g id="background">
|
<g id="background">
|
||||||
@@ -54,9 +23,40 @@
|
|||||||
<text x="149.0" y="36" font-size="19" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">Confiscate</text>
|
<text x="149.0" y="36" font-size="19" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">Confiscate</text>
|
||||||
<text x="149.0" y="53" font-size="13" text-anchor="middle" fill="black" font-family="Helvetica">Action</text>
|
<text x="149.0" y="53" font-size="13" text-anchor="middle" fill="black" font-family="Helvetica">Action</text>
|
||||||
</g>
|
</g>
|
||||||
<use xlink:href="#faction_icon" x="36" y="37" />
|
<g transform="translate(36,37)">
|
||||||
<use xlink:href="#d0" x="260" y="36" />
|
<g id="faction_icon">
|
||||||
|
<circle cx="1" cy="1" r="20" fill="black" filter="url(#drop-shadow)" />
|
||||||
|
<circle cx="0" cy="0" r="20" fill="url(#grad2)" />
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(260,36)">
|
||||||
|
<g class="svg_resource_icon" onclick="console.warn('unknown interaction')">
|
||||||
|
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
||||||
|
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">3</text>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
<rect x="0" y="65" width="298" height="200" />
|
<rect x="0" y="65" width="298" height="200" />
|
||||||
<image x="0" y="65" width="298" height="200" xlink:href="../../img/missing.png" />
|
<image x="0" y="65" width="298" height="200" xlink:href="../../img/missing.png" />
|
||||||
<use xlink:href="#effects" x="12" y="265" />
|
<g transform="translate(12,265)">
|
||||||
|
<path d="M10,80 L264,80" stroke="black" stroke-width="1" />
|
||||||
|
<g>
|
||||||
|
<g transform="translate(137.0,43.5)">
|
||||||
|
<text x="0" y="-0.0" font-size="14" text-anchor="middle" fill="black" font-family="Helvetica">buy_for_free</text>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(0,80)">
|
||||||
|
<g>
|
||||||
|
<circle cx="30" cy="27.5" r="15" fill="url(#grad2)" filter="url(#drop-shadow)" />
|
||||||
|
<g transform="translate(137.0,45.666666666666664)">
|
||||||
|
<text x="0" y="-0.0" font-size="11" text-anchor="middle" fill="black" font-family="Helvetica"></text>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(137.0,27.5)" v-bind:class="{used:used_effects_indexes.includes(1)}">
|
||||||
|
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '1' } ) );">
|
||||||
|
<circle cx="0" cy="0" r="18.333333333333332" fill="green" x="0" y="0" />
|
||||||
|
<text x="0" y="9" font-size="24" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">6</text>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
</svg>
|
</svg>
|
||||||
|
Before Width: | Height: | Size: 2.9 KiB After Width: | Height: | Size: 2.9 KiB |
@@ -1,6 +1,6 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||||
width="298" height="417" viewBox="0 0 298 417" id="card69">
|
width="298" height="417" viewBox="0 0 298 417" id="card69" class="card" xmlns:v-bind="https://heron.legonzaur.fr">
|
||||||
<defs>
|
<defs>
|
||||||
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
||||||
<stop offset="0" stop-color="red" stop-opacity="1" />
|
<stop offset="0" stop-color="red" stop-opacity="1" />
|
||||||
@@ -13,37 +13,6 @@
|
|||||||
<filter id="drop-shadow">
|
<filter id="drop-shadow">
|
||||||
<feDropShadow dx="1" dy="1" stdDeviation="0"></feDropShadow>
|
<feDropShadow dx="1" dy="1" stdDeviation="0"></feDropShadow>
|
||||||
</filter>
|
</filter>
|
||||||
<g id="faction_icon">
|
|
||||||
<circle cx="1" cy="1" r="20" fill="black" filter="url(#drop-shadow)" />
|
|
||||||
<circle cx="0" cy="0" r="20" fill="url(#grad2)" />
|
|
||||||
</g>
|
|
||||||
<g class="svg_resource_icon" onclick="console.warn('unknown interaction')" id="d0">
|
|
||||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
|
||||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">7</text>
|
|
||||||
</g>
|
|
||||||
<g id="d1">
|
|
||||||
<text x="0" y="-6.666666666666667" font-size="13.333333333333334" text-anchor="middle" fill="black" font-family="Helvetica"><tspan x="0" dy="0em">damage_all_champions </tspan><tspan x="0" dy="1em">Piochez une carte.</tspan></text>
|
|
||||||
</g>
|
|
||||||
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '0' } ) );" id="d2">
|
|
||||||
<circle cx="0" cy="0" r="20" fill="red" x="0" y="0" />
|
|
||||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">7</text>
|
|
||||||
</g>
|
|
||||||
<g id="d3">
|
|
||||||
<use xlink:href="#d1" x="137.0" y="70.66666666666667" />
|
|
||||||
<use xlink:href="#d2" x="137.0" y="33.0" />
|
|
||||||
</g>
|
|
||||||
<g id="d4">
|
|
||||||
<text x="0" y="-5.5" font-size="11" text-anchor="middle" fill="black" font-family="Helvetica"><tspan x="0" dy="0em">Vous pouvez sacrifier une carte</tspan><tspan x="0" dy="1em">de votre main ou de votre défausse.</tspan></text>
|
|
||||||
</g>
|
|
||||||
<g id="d5">
|
|
||||||
<circle cx="30" cy="27.5" r="15" fill="url(#grad2)" filter="url(#drop-shadow)" />
|
|
||||||
<use xlink:href="#d4" x="137.0" y="31.0" />
|
|
||||||
</g>
|
|
||||||
<g id="effects">
|
|
||||||
<path d="M10,80 L264,80" stroke="black" stroke-width="1" />
|
|
||||||
<use xlink:href="#d3" x="0" y="0" />
|
|
||||||
<use xlink:href="#d5" x="0" y="80" />
|
|
||||||
</g>
|
|
||||||
</defs>
|
</defs>
|
||||||
<use xlink:href="#drop-shadow" />
|
<use xlink:href="#drop-shadow" />
|
||||||
<g id="background">
|
<g id="background">
|
||||||
@@ -54,9 +23,40 @@
|
|||||||
<text x="149.0" y="36" font-size="19" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">Demonic Cloud</text>
|
<text x="149.0" y="36" font-size="19" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">Demonic Cloud</text>
|
||||||
<text x="149.0" y="53" font-size="13" text-anchor="middle" fill="black" font-family="Helvetica">Action</text>
|
<text x="149.0" y="53" font-size="13" text-anchor="middle" fill="black" font-family="Helvetica">Action</text>
|
||||||
</g>
|
</g>
|
||||||
<use xlink:href="#faction_icon" x="36" y="37" />
|
<g transform="translate(36,37)">
|
||||||
<use xlink:href="#d0" x="260" y="36" />
|
<g id="faction_icon">
|
||||||
|
<circle cx="1" cy="1" r="20" fill="black" filter="url(#drop-shadow)" />
|
||||||
|
<circle cx="0" cy="0" r="20" fill="url(#grad2)" />
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(260,36)">
|
||||||
|
<g class="svg_resource_icon" onclick="console.warn('unknown interaction')">
|
||||||
|
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
||||||
|
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">7</text>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
<rect x="0" y="65" width="298" height="200" />
|
<rect x="0" y="65" width="298" height="200" />
|
||||||
<image x="0" y="65" width="298" height="200" xlink:href="../../img/missing.png" />
|
<image x="0" y="65" width="298" height="200" xlink:href="../../img/missing.png" />
|
||||||
<use xlink:href="#effects" x="12" y="265" />
|
<g transform="translate(12,265)">
|
||||||
|
<path d="M10,80 L264,80" stroke="black" stroke-width="1" />
|
||||||
|
<g>
|
||||||
|
<g transform="translate(137.0,70.66666666666667)">
|
||||||
|
<text x="0" y="-6.666666666666667" font-size="13.333333333333334" text-anchor="middle" fill="black" font-family="Helvetica"><tspan x="0" dy="0em">damage_all_champions </tspan><tspan x="0" dy="1em">Piochez une carte.</tspan></text>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(137.0,33.0)" v-bind:class="{used:used_effects_indexes.includes(0)}">
|
||||||
|
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '0' } ) );">
|
||||||
|
<circle cx="0" cy="0" r="20" fill="red" x="0" y="0" />
|
||||||
|
<text x="0" y="9" font-size="24" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">7</text>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(0,80)">
|
||||||
|
<g>
|
||||||
|
<circle cx="30" cy="27.5" r="15" fill="url(#grad2)" filter="url(#drop-shadow)" />
|
||||||
|
<g transform="translate(137.0,31.0)">
|
||||||
|
<text x="0" y="-5.5" font-size="11" text-anchor="middle" fill="black" font-family="Helvetica"><tspan x="0" dy="0em">Vous pouvez sacrifier une carte</tspan><tspan x="0" dy="1em">de votre main ou de votre défausse.</tspan></text>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
</svg>
|
</svg>
|
||||||
|
Before Width: | Height: | Size: 3.1 KiB After Width: | Height: | Size: 3.1 KiB |
@@ -1,6 +1,6 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||||
width="298" height="417" viewBox="0 0 298 417" id="card70">
|
width="298" height="417" viewBox="0 0 298 417" id="card70" class="card" xmlns:v-bind="https://heron.legonzaur.fr">
|
||||||
<defs>
|
<defs>
|
||||||
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
||||||
<stop offset="0" stop-color="green" stop-opacity="1" />
|
<stop offset="0" stop-color="green" stop-opacity="1" />
|
||||||
@@ -13,28 +13,6 @@
|
|||||||
<filter id="drop-shadow">
|
<filter id="drop-shadow">
|
||||||
<feDropShadow dx="1" dy="1" stdDeviation="0"></feDropShadow>
|
<feDropShadow dx="1" dy="1" stdDeviation="0"></feDropShadow>
|
||||||
</filter>
|
</filter>
|
||||||
<g id="faction_icon">
|
|
||||||
<circle cx="1" cy="1" r="20" fill="black" filter="url(#drop-shadow)" />
|
|
||||||
<circle cx="0" cy="0" r="20" fill="url(#grad2)" />
|
|
||||||
</g>
|
|
||||||
<g class="svg_resource_icon" onclick="console.warn('unknown interaction')" id="d0">
|
|
||||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
|
||||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">7</text>
|
|
||||||
</g>
|
|
||||||
<g id="d1">
|
|
||||||
<text x="0" y="-0.0" font-size="14" text-anchor="middle" fill="black" font-family="Helvetica">discard_x_and_draw_x</text>
|
|
||||||
</g>
|
|
||||||
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '0' } ) );" id="d2">
|
|
||||||
<circle cx="0" cy="0" r="20" fill="red" x="0" y="0" />
|
|
||||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">7</text>
|
|
||||||
</g>
|
|
||||||
<g id="d3">
|
|
||||||
<use xlink:href="#d1" x="137.0" y="101.5" />
|
|
||||||
<use xlink:href="#d2" x="137.0" y="60.5" />
|
|
||||||
</g>
|
|
||||||
<g id="effects">
|
|
||||||
<use xlink:href="#d3" x="0" y="0" />
|
|
||||||
</g>
|
|
||||||
</defs>
|
</defs>
|
||||||
<use xlink:href="#drop-shadow" />
|
<use xlink:href="#drop-shadow" />
|
||||||
<g id="background">
|
<g id="background">
|
||||||
@@ -45,9 +23,31 @@
|
|||||||
<text x="149.0" y="36" font-size="19" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">Pack’s Fury</text>
|
<text x="149.0" y="36" font-size="19" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">Pack’s Fury</text>
|
||||||
<text x="149.0" y="53" font-size="13" text-anchor="middle" fill="black" font-family="Helvetica">Action</text>
|
<text x="149.0" y="53" font-size="13" text-anchor="middle" fill="black" font-family="Helvetica">Action</text>
|
||||||
</g>
|
</g>
|
||||||
<use xlink:href="#faction_icon" x="36" y="37" />
|
<g transform="translate(36,37)">
|
||||||
<use xlink:href="#d0" x="260" y="36" />
|
<g id="faction_icon">
|
||||||
|
<circle cx="1" cy="1" r="20" fill="black" filter="url(#drop-shadow)" />
|
||||||
|
<circle cx="0" cy="0" r="20" fill="url(#grad2)" />
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(260,36)">
|
||||||
|
<g class="svg_resource_icon" onclick="console.warn('unknown interaction')">
|
||||||
|
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
||||||
|
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">7</text>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
<rect x="0" y="65" width="298" height="200" />
|
<rect x="0" y="65" width="298" height="200" />
|
||||||
<image x="0" y="65" width="298" height="200" xlink:href="../../img/missing.png" />
|
<image x="0" y="65" width="298" height="200" xlink:href="../../img/missing.png" />
|
||||||
<use xlink:href="#effects" x="12" y="265" />
|
<g transform="translate(12,265)">
|
||||||
|
<g>
|
||||||
|
<g transform="translate(137.0,101.5)">
|
||||||
|
<text x="0" y="-0.0" font-size="14" text-anchor="middle" fill="black" font-family="Helvetica">discard_x_and_draw_x</text>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(137.0,60.5)" v-bind:class="{used:used_effects_indexes.includes(0)}">
|
||||||
|
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '0' } ) );">
|
||||||
|
<circle cx="0" cy="0" r="20" fill="red" x="0" y="0" />
|
||||||
|
<text x="0" y="9" font-size="24" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">7</text>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
</svg>
|
</svg>
|
||||||
|
Before Width: | Height: | Size: 2.5 KiB After Width: | Height: | Size: 2.5 KiB |
@@ -1,6 +1,6 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||||
width="298" height="417" viewBox="0 0 298 417" id="card71">
|
width="298" height="417" viewBox="0 0 298 417" id="card71" class="card" xmlns:v-bind="https://heron.legonzaur.fr">
|
||||||
<defs>
|
<defs>
|
||||||
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
||||||
<stop offset="0" stop-color="blue" stop-opacity="1" />
|
<stop offset="0" stop-color="blue" stop-opacity="1" />
|
||||||
@@ -13,28 +13,6 @@
|
|||||||
<filter id="drop-shadow">
|
<filter id="drop-shadow">
|
||||||
<feDropShadow dx="1" dy="1" stdDeviation="0"></feDropShadow>
|
<feDropShadow dx="1" dy="1" stdDeviation="0"></feDropShadow>
|
||||||
</filter>
|
</filter>
|
||||||
<g id="faction_icon">
|
|
||||||
<circle cx="1" cy="1" r="20" fill="black" filter="url(#drop-shadow)" />
|
|
||||||
<circle cx="0" cy="0" r="20" fill="url(#grad2)" />
|
|
||||||
</g>
|
|
||||||
<g class="svg_resource_icon" onclick="console.warn('unknown interaction')" id="d0">
|
|
||||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
|
||||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">2</text>
|
|
||||||
</g>
|
|
||||||
<g id="d1">
|
|
||||||
<text x="0" y="-0.0" font-size="14" text-anchor="middle" fill="black" font-family="Helvetica">Assomez le champion ciblé.</text>
|
|
||||||
</g>
|
|
||||||
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '0' } ) );" id="d2">
|
|
||||||
<circle cx="0" cy="0" r="20" fill="red" x="0" y="0" />
|
|
||||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">4</text>
|
|
||||||
</g>
|
|
||||||
<g id="d3">
|
|
||||||
<use xlink:href="#d1" x="137.0" y="101.5" />
|
|
||||||
<use xlink:href="#d2" x="137.0" y="60.5" />
|
|
||||||
</g>
|
|
||||||
<g id="effects">
|
|
||||||
<use xlink:href="#d3" x="0" y="0" />
|
|
||||||
</g>
|
|
||||||
</defs>
|
</defs>
|
||||||
<use xlink:href="#drop-shadow" />
|
<use xlink:href="#drop-shadow" />
|
||||||
<g id="background">
|
<g id="background">
|
||||||
@@ -45,9 +23,31 @@
|
|||||||
<text x="149.0" y="36" font-size="19" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">Thrash</text>
|
<text x="149.0" y="36" font-size="19" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">Thrash</text>
|
||||||
<text x="149.0" y="53" font-size="13" text-anchor="middle" fill="black" font-family="Helvetica">Action</text>
|
<text x="149.0" y="53" font-size="13" text-anchor="middle" fill="black" font-family="Helvetica">Action</text>
|
||||||
</g>
|
</g>
|
||||||
<use xlink:href="#faction_icon" x="36" y="37" />
|
<g transform="translate(36,37)">
|
||||||
<use xlink:href="#d0" x="260" y="36" />
|
<g id="faction_icon">
|
||||||
|
<circle cx="1" cy="1" r="20" fill="black" filter="url(#drop-shadow)" />
|
||||||
|
<circle cx="0" cy="0" r="20" fill="url(#grad2)" />
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(260,36)">
|
||||||
|
<g class="svg_resource_icon" onclick="console.warn('unknown interaction')">
|
||||||
|
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
||||||
|
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">2</text>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
<rect x="0" y="65" width="298" height="200" />
|
<rect x="0" y="65" width="298" height="200" />
|
||||||
<image x="0" y="65" width="298" height="200" xlink:href="../../img/missing.png" />
|
<image x="0" y="65" width="298" height="200" xlink:href="../../img/missing.png" />
|
||||||
<use xlink:href="#effects" x="12" y="265" />
|
<g transform="translate(12,265)">
|
||||||
|
<g>
|
||||||
|
<g transform="translate(137.0,101.5)">
|
||||||
|
<text x="0" y="-0.0" font-size="14" text-anchor="middle" fill="black" font-family="Helvetica">Assomez le champion ciblé.</text>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(137.0,60.5)" v-bind:class="{used:used_effects_indexes.includes(0)}">
|
||||||
|
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '0' } ) );">
|
||||||
|
<circle cx="0" cy="0" r="20" fill="red" x="0" y="0" />
|
||||||
|
<text x="0" y="9" font-size="24" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">4</text>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
</svg>
|
</svg>
|
||||||
|
Before Width: | Height: | Size: 2.5 KiB After Width: | Height: | Size: 2.5 KiB |
@@ -1,6 +1,6 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||||
width="298" height="417" viewBox="0 0 298 417" id="card72">
|
width="298" height="417" viewBox="0 0 298 417" id="card72" class="card" xmlns:v-bind="https://heron.legonzaur.fr">
|
||||||
<defs>
|
<defs>
|
||||||
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
||||||
<stop offset="0" stop-color="yellow" stop-opacity="1" />
|
<stop offset="0" stop-color="yellow" stop-opacity="1" />
|
||||||
@@ -13,46 +13,6 @@
|
|||||||
<filter id="drop-shadow">
|
<filter id="drop-shadow">
|
||||||
<feDropShadow dx="1" dy="1" stdDeviation="0"></feDropShadow>
|
<feDropShadow dx="1" dy="1" stdDeviation="0"></feDropShadow>
|
||||||
</filter>
|
</filter>
|
||||||
<g id="faction_icon">
|
|
||||||
<circle cx="1" cy="1" r="20" fill="black" filter="url(#drop-shadow)" />
|
|
||||||
<circle cx="0" cy="0" r="20" fill="url(#grad2)" />
|
|
||||||
</g>
|
|
||||||
<g class="svg_resource_icon" onclick="console.warn('unknown interaction')" id="d0">
|
|
||||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
|
||||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">6</text>
|
|
||||||
</g>
|
|
||||||
<g id="d1">
|
|
||||||
<text x="0" y="-0.0" font-size="13.333333333333334" text-anchor="middle" fill="black" font-family="Helvetica">Piochez une carte.</text>
|
|
||||||
</g>
|
|
||||||
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '0' } ) );" id="d2">
|
|
||||||
<circle cx="0" cy="0" r="20" fill="red" x="0" y="0" />
|
|
||||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">2</text>
|
|
||||||
</g>
|
|
||||||
<g id="d3">
|
|
||||||
<circle cx="30" cy="40.0" r="15" fill="gray" filter="url(#drop-shadow)" />
|
|
||||||
<use xlink:href="#d1" x="137.0" y="70.66666666666667" />
|
|
||||||
<use xlink:href="#d2" x="137.0" y="33.0" />
|
|
||||||
</g>
|
|
||||||
<g id="d4">
|
|
||||||
<text x="0" y="-0.0" font-size="14" text-anchor="middle" fill="black" font-family="Helvetica">prepare_another_champion</text>
|
|
||||||
</g>
|
|
||||||
<g id="d5">
|
|
||||||
<circle cx="30" cy="27.5" r="15" fill="url(#grad2)" filter="url(#drop-shadow)" />
|
|
||||||
<use xlink:href="#d4" x="137.0" y="31.0" />
|
|
||||||
</g>
|
|
||||||
<g id="effects">
|
|
||||||
<path d="M10,80 L264,80" stroke="black" stroke-width="1" />
|
|
||||||
<use xlink:href="#d3" x="0" y="0" />
|
|
||||||
<use xlink:href="#d5" x="0" y="80" />
|
|
||||||
</g>
|
|
||||||
<path d="M-2.9999999999999982,-2.0 L-29.6295824562643,-21.347524157501468 L-19.45798706418925,-52.652475842498525 L13.45798706418924,-52.65247584249853 L23.629582456264302,-21.34752415750148 Z" stroke-width="2" id="d6" />
|
|
||||||
<text x="-3" y="-20" font-size="28px" font-weight="bold" font-family="Helvetica" text-anchor="middle" id="d7">5</text>
|
|
||||||
<g id="champion_shield">
|
|
||||||
<use xlink:href="#d6" x="0" y="0" fill="black" stroke="lightgrey" />
|
|
||||||
<rect x="-28" y="-72" width="49" height="17" fill="black" stroke="lightgrey" stroke-width="2" />
|
|
||||||
<text x="-3" y="-59" font-size="12px" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">Garde</text>
|
|
||||||
<use xlink:href="#d7" x="0" y="0" fill="white" />
|
|
||||||
</g>
|
|
||||||
</defs>
|
</defs>
|
||||||
<use xlink:href="#drop-shadow" />
|
<use xlink:href="#drop-shadow" />
|
||||||
<g id="background">
|
<g id="background">
|
||||||
@@ -63,10 +23,47 @@
|
|||||||
<text x="149.0" y="36" font-size="19" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">Andor, the Valiant</text>
|
<text x="149.0" y="36" font-size="19" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">Andor, the Valiant</text>
|
||||||
<text x="149.0" y="53" font-size="13" text-anchor="middle" fill="black" font-family="Helvetica">Champion</text>
|
<text x="149.0" y="53" font-size="13" text-anchor="middle" fill="black" font-family="Helvetica">Champion</text>
|
||||||
</g>
|
</g>
|
||||||
<use xlink:href="#faction_icon" x="36" y="37" />
|
<g transform="translate(36,37)">
|
||||||
<use xlink:href="#d0" x="260" y="36" />
|
<g id="faction_icon">
|
||||||
|
<circle cx="1" cy="1" r="20" fill="black" filter="url(#drop-shadow)" />
|
||||||
|
<circle cx="0" cy="0" r="20" fill="url(#grad2)" />
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(260,36)">
|
||||||
|
<g class="svg_resource_icon" onclick="console.warn('unknown interaction')">
|
||||||
|
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
||||||
|
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">6</text>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
<rect x="0" y="65" width="298" height="200" />
|
<rect x="0" y="65" width="298" height="200" />
|
||||||
<image x="0" y="65" width="298" height="200" xlink:href="../../img/missing.png" />
|
<image x="0" y="65" width="298" height="200" xlink:href="../../img/missing.png" />
|
||||||
<use xlink:href="#effects" x="12" y="265" />
|
<g transform="translate(12,265)">
|
||||||
<use xlink:href="#champion_shield" x="268" y="417" />
|
<path d="M10,80 L264,80" stroke="black" stroke-width="1" />
|
||||||
|
<g>
|
||||||
|
<circle cx="30" cy="40.0" r="15" fill="gray" filter="url(#drop-shadow)" />
|
||||||
|
<g transform="translate(137.0,70.66666666666667)">
|
||||||
|
<text x="0" y="-0.0" font-size="13.333333333333334" text-anchor="middle" fill="black" font-family="Helvetica">Piochez une carte.</text>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(137.0,33.0)" v-bind:class="{used:used_effects_indexes.includes(0)}">
|
||||||
|
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '0' } ) );">
|
||||||
|
<circle cx="0" cy="0" r="20" fill="red" x="0" y="0" />
|
||||||
|
<text x="0" y="9" font-size="24" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">2</text>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(0,80)">
|
||||||
|
<g>
|
||||||
|
<circle cx="30" cy="27.5" r="15" fill="url(#grad2)" filter="url(#drop-shadow)" />
|
||||||
|
<g transform="translate(137.0,31.0)">
|
||||||
|
<text x="0" y="-0.0" font-size="14" text-anchor="middle" fill="black" font-family="Helvetica">prepare_another_champion</text>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(268,417)">
|
||||||
|
<path d="M-2.9999999999999982,-2.0 L-29.6295824562643,-21.347524157501468 L-19.45798706418925,-52.652475842498525 L13.45798706418924,-52.65247584249853 L23.629582456264302,-21.34752415750148 Z" fill="black" stroke="lightgrey" stroke-width="2" />
|
||||||
|
<rect x="-28" y="-72" width="49" height="17" fill="black" stroke="lightgrey" stroke-width="2" />
|
||||||
|
<text x="-3" y="-59" font-size="12px" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">Garde</text>
|
||||||
|
<text x="-3" y="-20" font-size="28px" font-weight="bold" font-family="Helvetica" text-anchor="middle" fill="white">5</text>
|
||||||
|
</g>
|
||||||
</svg>
|
</svg>
|
||||||
|
Before Width: | Height: | Size: 3.8 KiB After Width: | Height: | Size: 3.6 KiB |
@@ -1,6 +1,6 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||||
width="298" height="417" viewBox="0 0 298 417" id="card73">
|
width="298" height="417" viewBox="0 0 298 417" id="card73" class="card" xmlns:v-bind="https://heron.legonzaur.fr">
|
||||||
<defs>
|
<defs>
|
||||||
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
||||||
<stop offset="0" stop-color="red" stop-opacity="1" />
|
<stop offset="0" stop-color="red" stop-opacity="1" />
|
||||||
@@ -13,32 +13,6 @@
|
|||||||
<filter id="drop-shadow">
|
<filter id="drop-shadow">
|
||||||
<feDropShadow dx="1" dy="1" stdDeviation="0"></feDropShadow>
|
<feDropShadow dx="1" dy="1" stdDeviation="0"></feDropShadow>
|
||||||
</filter>
|
</filter>
|
||||||
<g id="faction_icon">
|
|
||||||
<circle cx="1" cy="1" r="20" fill="black" filter="url(#drop-shadow)" />
|
|
||||||
<circle cx="0" cy="0" r="20" fill="url(#grad2)" />
|
|
||||||
</g>
|
|
||||||
<g class="svg_resource_icon" onclick="console.warn('unknown interaction')" id="d0">
|
|
||||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
|
||||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">2</text>
|
|
||||||
</g>
|
|
||||||
<g id="d1">
|
|
||||||
<text x="0" y="-5.5" font-size="11" text-anchor="middle" fill="black" font-family="Helvetica"><tspan x="0" dy="0em">Vous pouvez sacrifier une carte</tspan><tspan x="0" dy="1em">de votre main ou de votre défausse.</tspan></text>
|
|
||||||
</g>
|
|
||||||
<g id="d2">
|
|
||||||
<circle cx="30" cy="67.5" r="15" fill="gray" filter="url(#drop-shadow)" />
|
|
||||||
<use xlink:href="#d1" x="137.0" y="71.0" />
|
|
||||||
</g>
|
|
||||||
<g id="effects">
|
|
||||||
<use xlink:href="#d2" x="0" y="0" />
|
|
||||||
</g>
|
|
||||||
<path d="M-2.9999999999999982,-2.0 L-29.6295824562643,-21.347524157501468 L-19.45798706418925,-52.652475842498525 L13.45798706418924,-52.65247584249853 L23.629582456264302,-21.34752415750148 Z" stroke-width="2" id="d3" />
|
|
||||||
<text x="-3" y="-20" font-size="28px" font-weight="bold" font-family="Helvetica" text-anchor="middle" id="d4">5</text>
|
|
||||||
<g id="champion_shield">
|
|
||||||
<use xlink:href="#d3" x="0" y="0" fill="black" stroke="lightgrey" />
|
|
||||||
<rect x="-28" y="-72" width="49" height="17" fill="black" stroke="lightgrey" stroke-width="2" />
|
|
||||||
<text x="-3" y="-59" font-size="12px" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">Garde</text>
|
|
||||||
<use xlink:href="#d4" x="0" y="0" fill="white" />
|
|
||||||
</g>
|
|
||||||
</defs>
|
</defs>
|
||||||
<use xlink:href="#drop-shadow" />
|
<use xlink:href="#drop-shadow" />
|
||||||
<g id="background">
|
<g id="background">
|
||||||
@@ -49,10 +23,32 @@
|
|||||||
<text x="149.0" y="36" font-size="19" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">Fettered Imp</text>
|
<text x="149.0" y="36" font-size="19" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">Fettered Imp</text>
|
||||||
<text x="149.0" y="53" font-size="13" text-anchor="middle" fill="black" font-family="Helvetica">Champion</text>
|
<text x="149.0" y="53" font-size="13" text-anchor="middle" fill="black" font-family="Helvetica">Champion</text>
|
||||||
</g>
|
</g>
|
||||||
<use xlink:href="#faction_icon" x="36" y="37" />
|
<g transform="translate(36,37)">
|
||||||
<use xlink:href="#d0" x="260" y="36" />
|
<g id="faction_icon">
|
||||||
|
<circle cx="1" cy="1" r="20" fill="black" filter="url(#drop-shadow)" />
|
||||||
|
<circle cx="0" cy="0" r="20" fill="url(#grad2)" />
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(260,36)">
|
||||||
|
<g class="svg_resource_icon" onclick="console.warn('unknown interaction')">
|
||||||
|
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
||||||
|
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">2</text>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
<rect x="0" y="65" width="298" height="200" />
|
<rect x="0" y="65" width="298" height="200" />
|
||||||
<image x="0" y="65" width="298" height="200" xlink:href="../../img/missing.png" />
|
<image x="0" y="65" width="298" height="200" xlink:href="../../img/missing.png" />
|
||||||
<use xlink:href="#effects" x="12" y="265" />
|
<g transform="translate(12,265)">
|
||||||
<use xlink:href="#champion_shield" x="268" y="417" />
|
<g>
|
||||||
|
<circle cx="30" cy="67.5" r="15" fill="gray" filter="url(#drop-shadow)" />
|
||||||
|
<g transform="translate(137.0,71.0)">
|
||||||
|
<text x="0" y="-5.5" font-size="11" text-anchor="middle" fill="black" font-family="Helvetica"><tspan x="0" dy="0em">Vous pouvez sacrifier une carte</tspan><tspan x="0" dy="1em">de votre main ou de votre défausse.</tspan></text>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(268,417)">
|
||||||
|
<path d="M-2.9999999999999982,-2.0 L-29.6295824562643,-21.347524157501468 L-19.45798706418925,-52.652475842498525 L13.45798706418924,-52.65247584249853 L23.629582456264302,-21.34752415750148 Z" fill="black" stroke="lightgrey" stroke-width="2" />
|
||||||
|
<rect x="-28" y="-72" width="49" height="17" fill="black" stroke="lightgrey" stroke-width="2" />
|
||||||
|
<text x="-3" y="-59" font-size="12px" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">Garde</text>
|
||||||
|
<text x="-3" y="-20" font-size="28px" font-weight="bold" font-family="Helvetica" text-anchor="middle" fill="white">5</text>
|
||||||
|
</g>
|
||||||
</svg>
|
</svg>
|
||||||
|
Before Width: | Height: | Size: 3.1 KiB After Width: | Height: | Size: 2.9 KiB |
@@ -1,6 +1,6 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||||
width="298" height="417" viewBox="0 0 298 417" id="card74">
|
width="298" height="417" viewBox="0 0 298 417" id="card74" class="card" xmlns:v-bind="https://heron.legonzaur.fr">
|
||||||
<defs>
|
<defs>
|
||||||
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
||||||
<stop offset="0" stop-color="blue" stop-opacity="1" />
|
<stop offset="0" stop-color="blue" stop-opacity="1" />
|
||||||
@@ -13,44 +13,6 @@
|
|||||||
<filter id="drop-shadow">
|
<filter id="drop-shadow">
|
||||||
<feDropShadow dx="1" dy="1" stdDeviation="0"></feDropShadow>
|
<feDropShadow dx="1" dy="1" stdDeviation="0"></feDropShadow>
|
||||||
</filter>
|
</filter>
|
||||||
<g id="faction_icon">
|
|
||||||
<circle cx="1" cy="1" r="20" fill="black" filter="url(#drop-shadow)" />
|
|
||||||
<circle cx="0" cy="0" r="20" fill="url(#grad2)" />
|
|
||||||
</g>
|
|
||||||
<g class="svg_resource_icon" onclick="console.warn('unknown interaction')" id="d0">
|
|
||||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
|
||||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">5</text>
|
|
||||||
</g>
|
|
||||||
<g id="d1">
|
|
||||||
<text x="0" y="-0.0" font-size="13.333333333333334" text-anchor="middle" fill="black" font-family="Helvetica"></text>
|
|
||||||
</g>
|
|
||||||
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '0' } ) );" id="d2">
|
|
||||||
<circle cx="0" cy="0" r="20" fill="red" x="0" y="0" />
|
|
||||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">4</text>
|
|
||||||
</g>
|
|
||||||
<g id="d3">
|
|
||||||
<circle cx="30" cy="40.0" r="15" fill="gray" filter="url(#drop-shadow)" />
|
|
||||||
<use xlink:href="#d1" x="137.0" y="70.66666666666667" />
|
|
||||||
<use xlink:href="#d2" x="137.0" y="40.0" />
|
|
||||||
</g>
|
|
||||||
<g id="d4">
|
|
||||||
<text x="0" y="-0.0" font-size="14" text-anchor="middle" fill="black" font-family="Helvetica">Assomez le champion ciblé.</text>
|
|
||||||
</g>
|
|
||||||
<g id="d5">
|
|
||||||
<circle cx="30" cy="27.5" r="15" fill="url(#grad2)" filter="url(#drop-shadow)" />
|
|
||||||
<use xlink:href="#d4" x="137.0" y="31.0" />
|
|
||||||
</g>
|
|
||||||
<g id="effects">
|
|
||||||
<path d="M10,80 L264,80" stroke="black" stroke-width="1" />
|
|
||||||
<use xlink:href="#d3" x="0" y="0" />
|
|
||||||
<use xlink:href="#d5" x="0" y="80" />
|
|
||||||
</g>
|
|
||||||
<path d="M-2.9999999999999982,-2.0 L-29.6295824562643,-21.347524157501468 L-19.45798706418925,-52.652475842498525 L13.45798706418924,-52.65247584249853 L23.629582456264302,-21.34752415750148 Z" stroke-width="2" id="d6" />
|
|
||||||
<text x="-3" y="-20" font-size="28px" font-weight="bold" font-family="Helvetica" text-anchor="middle" id="d7">5</text>
|
|
||||||
<g id="champion_shield">
|
|
||||||
<use xlink:href="#d6" x="0" y="0" fill="darkgrey" stroke="#eee" />
|
|
||||||
<use xlink:href="#d7" x="0" y="0" fill="black" />
|
|
||||||
</g>
|
|
||||||
</defs>
|
</defs>
|
||||||
<use xlink:href="#drop-shadow" />
|
<use xlink:href="#drop-shadow" />
|
||||||
<g id="background">
|
<g id="background">
|
||||||
@@ -61,10 +23,45 @@
|
|||||||
<text x="149.0" y="36" font-size="19" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">Lenka, the Hunter</text>
|
<text x="149.0" y="36" font-size="19" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">Lenka, the Hunter</text>
|
||||||
<text x="149.0" y="53" font-size="13" text-anchor="middle" fill="black" font-family="Helvetica">Champion</text>
|
<text x="149.0" y="53" font-size="13" text-anchor="middle" fill="black" font-family="Helvetica">Champion</text>
|
||||||
</g>
|
</g>
|
||||||
<use xlink:href="#faction_icon" x="36" y="37" />
|
<g transform="translate(36,37)">
|
||||||
<use xlink:href="#d0" x="260" y="36" />
|
<g id="faction_icon">
|
||||||
|
<circle cx="1" cy="1" r="20" fill="black" filter="url(#drop-shadow)" />
|
||||||
|
<circle cx="0" cy="0" r="20" fill="url(#grad2)" />
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(260,36)">
|
||||||
|
<g class="svg_resource_icon" onclick="console.warn('unknown interaction')">
|
||||||
|
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
||||||
|
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">5</text>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
<rect x="0" y="65" width="298" height="200" />
|
<rect x="0" y="65" width="298" height="200" />
|
||||||
<image x="0" y="65" width="298" height="200" xlink:href="../../img/missing.png" />
|
<image x="0" y="65" width="298" height="200" xlink:href="../../img/missing.png" />
|
||||||
<use xlink:href="#effects" x="12" y="265" />
|
<g transform="translate(12,265)">
|
||||||
<use xlink:href="#champion_shield" x="268" y="417" />
|
<path d="M10,80 L264,80" stroke="black" stroke-width="1" />
|
||||||
|
<g>
|
||||||
|
<circle cx="30" cy="40.0" r="15" fill="gray" filter="url(#drop-shadow)" />
|
||||||
|
<g transform="translate(137.0,70.66666666666667)">
|
||||||
|
<text x="0" y="-0.0" font-size="13.333333333333334" text-anchor="middle" fill="black" font-family="Helvetica"></text>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(137.0,40.0)" v-bind:class="{used:used_effects_indexes.includes(0)}">
|
||||||
|
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '0' } ) );">
|
||||||
|
<circle cx="0" cy="0" r="20" fill="red" x="0" y="0" />
|
||||||
|
<text x="0" y="9" font-size="24" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">4</text>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(0,80)">
|
||||||
|
<g>
|
||||||
|
<circle cx="30" cy="27.5" r="15" fill="url(#grad2)" filter="url(#drop-shadow)" />
|
||||||
|
<g transform="translate(137.0,31.0)">
|
||||||
|
<text x="0" y="-0.0" font-size="14" text-anchor="middle" fill="black" font-family="Helvetica">Assomez le champion ciblé.</text>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(268,417)">
|
||||||
|
<path d="M-2.9999999999999982,-2.0 L-29.6295824562643,-21.347524157501468 L-19.45798706418925,-52.652475842498525 L13.45798706418924,-52.65247584249853 L23.629582456264302,-21.34752415750148 Z" fill="darkgrey" stroke="#eee" stroke-width="2" />
|
||||||
|
<text x="-3" y="-20" font-size="28px" font-weight="bold" font-family="Helvetica" text-anchor="middle" fill="black">5</text>
|
||||||
|
</g>
|
||||||
</svg>
|
</svg>
|
||||||
|
Before Width: | Height: | Size: 3.5 KiB After Width: | Height: | Size: 3.3 KiB |
@@ -1,6 +1,6 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||||
width="298" height="417" viewBox="0 0 298 417" id="card75">
|
width="298" height="417" viewBox="0 0 298 417" id="card75" class="card" xmlns:v-bind="https://heron.legonzaur.fr">
|
||||||
<defs>
|
<defs>
|
||||||
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
||||||
<stop offset="0" stop-color="green" stop-opacity="1" />
|
<stop offset="0" stop-color="green" stop-opacity="1" />
|
||||||
@@ -13,49 +13,6 @@
|
|||||||
<filter id="drop-shadow">
|
<filter id="drop-shadow">
|
||||||
<feDropShadow dx="1" dy="1" stdDeviation="0"></feDropShadow>
|
<feDropShadow dx="1" dy="1" stdDeviation="0"></feDropShadow>
|
||||||
</filter>
|
</filter>
|
||||||
<g id="faction_icon">
|
|
||||||
<circle cx="1" cy="1" r="20" fill="black" filter="url(#drop-shadow)" />
|
|
||||||
<circle cx="0" cy="0" r="20" fill="url(#grad2)" />
|
|
||||||
</g>
|
|
||||||
<g class="svg_resource_icon" onclick="console.warn('unknown interaction')" id="d0">
|
|
||||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
|
||||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">3</text>
|
|
||||||
</g>
|
|
||||||
<g id="d1">
|
|
||||||
<text x="0" y="-0.0" font-size="13.333333333333334" text-anchor="middle" fill="black" font-family="Helvetica"></text>
|
|
||||||
</g>
|
|
||||||
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '0' } ) );" id="d2">
|
|
||||||
<circle cx="0" cy="0" r="20" fill="red" x="0" y="0" />
|
|
||||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">2</text>
|
|
||||||
</g>
|
|
||||||
<g id="d3">
|
|
||||||
<circle cx="30" cy="40.0" r="15" fill="gray" filter="url(#drop-shadow)" />
|
|
||||||
<use xlink:href="#d1" x="137.0" y="70.66666666666667" />
|
|
||||||
<use xlink:href="#d2" x="137.0" y="40.0" />
|
|
||||||
</g>
|
|
||||||
<g id="d4">
|
|
||||||
<text x="0" y="-0.0" font-size="11" text-anchor="middle" fill="black" font-family="Helvetica"></text>
|
|
||||||
</g>
|
|
||||||
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '1' } ) );" id="d5">
|
|
||||||
<circle cx="0" cy="0" r="18.333333333333332" fill="yellow" x="0" y="0" />
|
|
||||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">2</text>
|
|
||||||
</g>
|
|
||||||
<g id="d6">
|
|
||||||
<circle cx="30" cy="27.5" r="15" fill="url(#grad2)" filter="url(#drop-shadow)" />
|
|
||||||
<use xlink:href="#d4" x="137.0" y="45.666666666666664" />
|
|
||||||
<use xlink:href="#d5" x="137.0" y="27.5" />
|
|
||||||
</g>
|
|
||||||
<g id="effects">
|
|
||||||
<path d="M10,80 L264,80" stroke="black" stroke-width="1" />
|
|
||||||
<use xlink:href="#d3" x="0" y="0" />
|
|
||||||
<use xlink:href="#d6" x="0" y="80" />
|
|
||||||
</g>
|
|
||||||
<path d="M-2.9999999999999982,-2.0 L-29.6295824562643,-21.347524157501468 L-19.45798706418925,-52.652475842498525 L13.45798706418924,-52.65247584249853 L23.629582456264302,-21.34752415750148 Z" stroke-width="2" id="d7" />
|
|
||||||
<text x="-3" y="-20" font-size="28px" font-weight="bold" font-family="Helvetica" text-anchor="middle" id="d8">4</text>
|
|
||||||
<g id="champion_shield">
|
|
||||||
<use xlink:href="#d7" x="0" y="0" fill="darkgrey" stroke="#eee" />
|
|
||||||
<use xlink:href="#d8" x="0" y="0" fill="black" />
|
|
||||||
</g>
|
|
||||||
</defs>
|
</defs>
|
||||||
<use xlink:href="#drop-shadow" />
|
<use xlink:href="#drop-shadow" />
|
||||||
<g id="background">
|
<g id="background">
|
||||||
@@ -66,10 +23,51 @@
|
|||||||
<text x="149.0" y="36" font-size="19" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">Pathfinder</text>
|
<text x="149.0" y="36" font-size="19" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">Pathfinder</text>
|
||||||
<text x="149.0" y="53" font-size="13" text-anchor="middle" fill="black" font-family="Helvetica">Champion</text>
|
<text x="149.0" y="53" font-size="13" text-anchor="middle" fill="black" font-family="Helvetica">Champion</text>
|
||||||
</g>
|
</g>
|
||||||
<use xlink:href="#faction_icon" x="36" y="37" />
|
<g transform="translate(36,37)">
|
||||||
<use xlink:href="#d0" x="260" y="36" />
|
<g id="faction_icon">
|
||||||
|
<circle cx="1" cy="1" r="20" fill="black" filter="url(#drop-shadow)" />
|
||||||
|
<circle cx="0" cy="0" r="20" fill="url(#grad2)" />
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(260,36)">
|
||||||
|
<g class="svg_resource_icon" onclick="console.warn('unknown interaction')">
|
||||||
|
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
||||||
|
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">3</text>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
<rect x="0" y="65" width="298" height="200" />
|
<rect x="0" y="65" width="298" height="200" />
|
||||||
<image x="0" y="65" width="298" height="200" xlink:href="../../img/missing.png" />
|
<image x="0" y="65" width="298" height="200" xlink:href="../../img/missing.png" />
|
||||||
<use xlink:href="#effects" x="12" y="265" />
|
<g transform="translate(12,265)">
|
||||||
<use xlink:href="#champion_shield" x="268" y="417" />
|
<path d="M10,80 L264,80" stroke="black" stroke-width="1" />
|
||||||
|
<g>
|
||||||
|
<circle cx="30" cy="40.0" r="15" fill="gray" filter="url(#drop-shadow)" />
|
||||||
|
<g transform="translate(137.0,70.66666666666667)">
|
||||||
|
<text x="0" y="-0.0" font-size="13.333333333333334" text-anchor="middle" fill="black" font-family="Helvetica"></text>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(137.0,40.0)" v-bind:class="{used:used_effects_indexes.includes(0)}">
|
||||||
|
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '0' } ) );">
|
||||||
|
<circle cx="0" cy="0" r="20" fill="red" x="0" y="0" />
|
||||||
|
<text x="0" y="9" font-size="24" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">2</text>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(0,80)">
|
||||||
|
<g>
|
||||||
|
<circle cx="30" cy="27.5" r="15" fill="url(#grad2)" filter="url(#drop-shadow)" />
|
||||||
|
<g transform="translate(137.0,45.666666666666664)">
|
||||||
|
<text x="0" y="-0.0" font-size="11" text-anchor="middle" fill="black" font-family="Helvetica"></text>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(137.0,27.5)" v-bind:class="{used:used_effects_indexes.includes(1)}">
|
||||||
|
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '1' } ) );">
|
||||||
|
<circle cx="0" cy="0" r="18.333333333333332" fill="yellow" x="0" y="0" />
|
||||||
|
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">2</text>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(268,417)">
|
||||||
|
<path d="M-2.9999999999999982,-2.0 L-29.6295824562643,-21.347524157501468 L-19.45798706418925,-52.652475842498525 L13.45798706418924,-52.65247584249853 L23.629582456264302,-21.34752415750148 Z" fill="darkgrey" stroke="#eee" stroke-width="2" />
|
||||||
|
<text x="-3" y="-20" font-size="28px" font-weight="bold" font-family="Helvetica" text-anchor="middle" fill="black">4</text>
|
||||||
|
</g>
|
||||||
</svg>
|
</svg>
|
||||||
|
Before Width: | Height: | Size: 3.9 KiB After Width: | Height: | Size: 3.8 KiB |
@@ -1,6 +1,6 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||||
width="298" height="417" viewBox="0 0 298 417" id="card76">
|
width="298" height="417" viewBox="0 0 298 417" id="card76" class="card" xmlns:v-bind="https://heron.legonzaur.fr">
|
||||||
<defs>
|
<defs>
|
||||||
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
||||||
<stop offset="0" stop-color="gray" stop-opacity="1" />
|
<stop offset="0" stop-color="gray" stop-opacity="1" />
|
||||||
@@ -13,40 +13,6 @@
|
|||||||
<filter id="drop-shadow">
|
<filter id="drop-shadow">
|
||||||
<feDropShadow dx="1" dy="1" stdDeviation="0"></feDropShadow>
|
<feDropShadow dx="1" dy="1" stdDeviation="0"></feDropShadow>
|
||||||
</filter>
|
</filter>
|
||||||
<g id="faction_icon">
|
|
||||||
<circle cx="1" cy="1" r="20" fill="black" filter="url(#drop-shadow)" />
|
|
||||||
<circle cx="0" cy="0" r="20" fill="url(#grad2)" />
|
|
||||||
</g>
|
|
||||||
<g id="d0">
|
|
||||||
<text x="0" y="-0.0" font-size="14" text-anchor="middle" fill="black" font-family="Helvetica"></text>
|
|
||||||
</g>
|
|
||||||
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '0' } ) );" id="d1">
|
|
||||||
<circle cx="0" cy="0" r="20" fill="red" x="0" y="0" />
|
|
||||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">1</text>
|
|
||||||
</g>
|
|
||||||
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '1' } ) );" id="d2">
|
|
||||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
|
||||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">1</text>
|
|
||||||
</g>
|
|
||||||
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '2' } ) );" id="d3">
|
|
||||||
<circle cx="0" cy="0" r="20" fill="green" x="0" y="0" />
|
|
||||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">1</text>
|
|
||||||
</g>
|
|
||||||
<g id="d4">
|
|
||||||
<use xlink:href="#d0" x="137.0" y="101.5" />
|
|
||||||
<use xlink:href="#d1" x="77.0" y="67.5" />
|
|
||||||
<use xlink:href="#d2" x="137.0" y="67.5" />
|
|
||||||
<use xlink:href="#d3" x="197.0" y="67.5" />
|
|
||||||
</g>
|
|
||||||
<g id="effects">
|
|
||||||
<use xlink:href="#d4" x="0" y="0" />
|
|
||||||
</g>
|
|
||||||
<path d="M-2.9999999999999982,-2.0 L-29.6295824562643,-21.347524157501468 L-19.45798706418925,-52.652475842498525 L13.45798706418924,-52.65247584249853 L23.629582456264302,-21.34752415750148 Z" stroke-width="2" id="d5" />
|
|
||||||
<text x="-3" y="-20" font-size="28px" font-weight="bold" font-family="Helvetica" text-anchor="middle" id="d6">2</text>
|
|
||||||
<g id="champion_shield">
|
|
||||||
<use xlink:href="#d5" x="0" y="0" fill="darkgrey" stroke="#eee" />
|
|
||||||
<use xlink:href="#d6" x="0" y="0" fill="black" />
|
|
||||||
</g>
|
|
||||||
</defs>
|
</defs>
|
||||||
<use xlink:href="#drop-shadow" />
|
<use xlink:href="#drop-shadow" />
|
||||||
<g id="background">
|
<g id="background">
|
||||||
@@ -57,9 +23,41 @@
|
|||||||
<text x="149.0" y="36" font-size="19" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">Cat Familiar</text>
|
<text x="149.0" y="36" font-size="19" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">Cat Familiar</text>
|
||||||
<text x="149.0" y="53" font-size="13" text-anchor="middle" fill="black" font-family="Helvetica">Champion</text>
|
<text x="149.0" y="53" font-size="13" text-anchor="middle" fill="black" font-family="Helvetica">Champion</text>
|
||||||
</g>
|
</g>
|
||||||
<use xlink:href="#faction_icon" x="36" y="37" />
|
<g transform="translate(36,37)">
|
||||||
|
<g id="faction_icon">
|
||||||
|
<circle cx="1" cy="1" r="20" fill="black" filter="url(#drop-shadow)" />
|
||||||
|
<circle cx="0" cy="0" r="20" fill="url(#grad2)" />
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
<rect x="0" y="65" width="298" height="200" />
|
<rect x="0" y="65" width="298" height="200" />
|
||||||
<image x="0" y="65" width="298" height="200" xlink:href="../../img/missing.png" />
|
<image x="0" y="65" width="298" height="200" xlink:href="../../img/missing.png" />
|
||||||
<use xlink:href="#effects" x="12" y="265" />
|
<g transform="translate(12,265)">
|
||||||
<use xlink:href="#champion_shield" x="268" y="417" />
|
<g>
|
||||||
|
<g transform="translate(137.0,101.5)">
|
||||||
|
<text x="0" y="-0.0" font-size="14" text-anchor="middle" fill="black" font-family="Helvetica"></text>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(77.0,67.5)" v-bind:class="{used:used_effects_indexes.includes(0)}">
|
||||||
|
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '0' } ) );">
|
||||||
|
<circle cx="0" cy="0" r="20" fill="red" x="0" y="0" />
|
||||||
|
<text x="0" y="9" font-size="24" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">1</text>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(137.0,67.5)" v-bind:class="{used:used_effects_indexes.includes(1)}">
|
||||||
|
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '1' } ) );">
|
||||||
|
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
||||||
|
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">1</text>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(197.0,67.5)" v-bind:class="{used:used_effects_indexes.includes(2)}">
|
||||||
|
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '2' } ) );">
|
||||||
|
<circle cx="0" cy="0" r="20" fill="green" x="0" y="0" />
|
||||||
|
<text x="0" y="9" font-size="24" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">1</text>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(268,417)">
|
||||||
|
<path d="M-2.9999999999999982,-2.0 L-29.6295824562643,-21.347524157501468 L-19.45798706418925,-52.652475842498525 L13.45798706418924,-52.65247584249853 L23.629582456264302,-21.34752415750148 Z" fill="darkgrey" stroke="#eee" stroke-width="2" />
|
||||||
|
<text x="-3" y="-20" font-size="28px" font-weight="bold" font-family="Helvetica" text-anchor="middle" fill="black">2</text>
|
||||||
|
</g>
|
||||||
</svg>
|
</svg>
|
||||||
|
Before Width: | Height: | Size: 3.5 KiB After Width: | Height: | Size: 3.4 KiB |
@@ -1,6 +1,6 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||||
width="298" height="417" viewBox="0 0 298 417" id="card77">
|
width="298" height="417" viewBox="0 0 298 417" id="card77" class="card" xmlns:v-bind="https://heron.legonzaur.fr">
|
||||||
<defs>
|
<defs>
|
||||||
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
||||||
<stop offset="0" stop-color="gray" stop-opacity="1" />
|
<stop offset="0" stop-color="gray" stop-opacity="1" />
|
||||||
@@ -13,24 +13,6 @@
|
|||||||
<filter id="drop-shadow">
|
<filter id="drop-shadow">
|
||||||
<feDropShadow dx="1" dy="1" stdDeviation="0"></feDropShadow>
|
<feDropShadow dx="1" dy="1" stdDeviation="0"></feDropShadow>
|
||||||
</filter>
|
</filter>
|
||||||
<g id="faction_icon">
|
|
||||||
<circle cx="1" cy="1" r="20" fill="black" filter="url(#drop-shadow)" />
|
|
||||||
<circle cx="0" cy="0" r="20" fill="url(#grad2)" />
|
|
||||||
</g>
|
|
||||||
<g id="d0">
|
|
||||||
<text x="0" y="-0.0" font-size="14" text-anchor="middle" fill="black" font-family="Helvetica"></text>
|
|
||||||
</g>
|
|
||||||
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '0' } ) );" id="d1">
|
|
||||||
<circle cx="0" cy="0" r="20" fill="red" x="0" y="0" />
|
|
||||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">2</text>
|
|
||||||
</g>
|
|
||||||
<g id="d2">
|
|
||||||
<use xlink:href="#d0" x="137.0" y="101.5" />
|
|
||||||
<use xlink:href="#d1" x="137.0" y="67.5" />
|
|
||||||
</g>
|
|
||||||
<g id="effects">
|
|
||||||
<use xlink:href="#d2" x="0" y="0" />
|
|
||||||
</g>
|
|
||||||
</defs>
|
</defs>
|
||||||
<use xlink:href="#drop-shadow" />
|
<use xlink:href="#drop-shadow" />
|
||||||
<g id="background">
|
<g id="background">
|
||||||
@@ -41,8 +23,25 @@
|
|||||||
<text x="149.0" y="36" font-size="19" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">Ignite</text>
|
<text x="149.0" y="36" font-size="19" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">Ignite</text>
|
||||||
<text x="149.0" y="53" font-size="13" text-anchor="middle" fill="black" font-family="Helvetica">Action</text>
|
<text x="149.0" y="53" font-size="13" text-anchor="middle" fill="black" font-family="Helvetica">Action</text>
|
||||||
</g>
|
</g>
|
||||||
<use xlink:href="#faction_icon" x="36" y="37" />
|
<g transform="translate(36,37)">
|
||||||
|
<g id="faction_icon">
|
||||||
|
<circle cx="1" cy="1" r="20" fill="black" filter="url(#drop-shadow)" />
|
||||||
|
<circle cx="0" cy="0" r="20" fill="url(#grad2)" />
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
<rect x="0" y="65" width="298" height="200" />
|
<rect x="0" y="65" width="298" height="200" />
|
||||||
<image x="0" y="65" width="298" height="200" xlink:href="../../img/missing.png" />
|
<image x="0" y="65" width="298" height="200" xlink:href="../../img/missing.png" />
|
||||||
<use xlink:href="#effects" x="12" y="265" />
|
<g transform="translate(12,265)">
|
||||||
|
<g>
|
||||||
|
<g transform="translate(137.0,101.5)">
|
||||||
|
<text x="0" y="-0.0" font-size="14" text-anchor="middle" fill="black" font-family="Helvetica"></text>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(137.0,67.5)" v-bind:class="{used:used_effects_indexes.includes(0)}">
|
||||||
|
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '0' } ) );">
|
||||||
|
<circle cx="0" cy="0" r="20" fill="red" x="0" y="0" />
|
||||||
|
<text x="0" y="9" font-size="24" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">2</text>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
</svg>
|
</svg>
|
||||||
|
Before Width: | Height: | Size: 2.2 KiB After Width: | Height: | Size: 2.2 KiB |
@@ -1,6 +1,6 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||||
width="298" height="417" viewBox="0 0 298 417" id="card78">
|
width="298" height="417" viewBox="0 0 298 417" id="card78" class="card" xmlns:v-bind="https://heron.legonzaur.fr">
|
||||||
<defs>
|
<defs>
|
||||||
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
||||||
<stop offset="0" stop-color="gray" stop-opacity="1" />
|
<stop offset="0" stop-color="gray" stop-opacity="1" />
|
||||||
@@ -13,24 +13,6 @@
|
|||||||
<filter id="drop-shadow">
|
<filter id="drop-shadow">
|
||||||
<feDropShadow dx="1" dy="1" stdDeviation="0"></feDropShadow>
|
<feDropShadow dx="1" dy="1" stdDeviation="0"></feDropShadow>
|
||||||
</filter>
|
</filter>
|
||||||
<g id="faction_icon">
|
|
||||||
<circle cx="1" cy="1" r="20" fill="black" filter="url(#drop-shadow)" />
|
|
||||||
<circle cx="0" cy="0" r="20" fill="url(#grad2)" />
|
|
||||||
</g>
|
|
||||||
<g id="d0">
|
|
||||||
<text x="0" y="-0.0" font-size="14" text-anchor="middle" fill="black" font-family="Helvetica">cheaper_action</text>
|
|
||||||
</g>
|
|
||||||
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '0' } ) );" id="d1">
|
|
||||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
|
||||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">1</text>
|
|
||||||
</g>
|
|
||||||
<g id="d2">
|
|
||||||
<use xlink:href="#d0" x="137.0" y="101.5" />
|
|
||||||
<use xlink:href="#d1" x="137.0" y="60.5" />
|
|
||||||
</g>
|
|
||||||
<g id="effects">
|
|
||||||
<use xlink:href="#d2" x="0" y="0" />
|
|
||||||
</g>
|
|
||||||
</defs>
|
</defs>
|
||||||
<use xlink:href="#drop-shadow" />
|
<use xlink:href="#drop-shadow" />
|
||||||
<g id="background">
|
<g id="background">
|
||||||
@@ -41,8 +23,25 @@
|
|||||||
<text x="149.0" y="36" font-size="19" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">Spell Components</text>
|
<text x="149.0" y="36" font-size="19" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">Spell Components</text>
|
||||||
<text x="149.0" y="53" font-size="13" text-anchor="middle" fill="black" font-family="Helvetica">item</text>
|
<text x="149.0" y="53" font-size="13" text-anchor="middle" fill="black" font-family="Helvetica">item</text>
|
||||||
</g>
|
</g>
|
||||||
<use xlink:href="#faction_icon" x="36" y="37" />
|
<g transform="translate(36,37)">
|
||||||
|
<g id="faction_icon">
|
||||||
|
<circle cx="1" cy="1" r="20" fill="black" filter="url(#drop-shadow)" />
|
||||||
|
<circle cx="0" cy="0" r="20" fill="url(#grad2)" />
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
<rect x="0" y="65" width="298" height="200" />
|
<rect x="0" y="65" width="298" height="200" />
|
||||||
<image x="0" y="65" width="298" height="200" xlink:href="../../img/missing.png" />
|
<image x="0" y="65" width="298" height="200" xlink:href="../../img/missing.png" />
|
||||||
<use xlink:href="#effects" x="12" y="265" />
|
<g transform="translate(12,265)">
|
||||||
|
<g>
|
||||||
|
<g transform="translate(137.0,101.5)">
|
||||||
|
<text x="0" y="-0.0" font-size="14" text-anchor="middle" fill="black" font-family="Helvetica">cheaper_action</text>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(137.0,60.5)" v-bind:class="{used:used_effects_indexes.includes(0)}">
|
||||||
|
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '0' } ) );">
|
||||||
|
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
||||||
|
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">1</text>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
</svg>
|
</svg>
|
||||||
|
Before Width: | Height: | Size: 2.2 KiB After Width: | Height: | Size: 2.2 KiB |
@@ -1,6 +1,6 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||||
width="298" height="417" viewBox="0 0 298 417" id="card79">
|
width="298" height="417" viewBox="0 0 298 417" id="card79" class="card" xmlns:v-bind="https://heron.legonzaur.fr">
|
||||||
<defs>
|
<defs>
|
||||||
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
||||||
<stop offset="0" stop-color="gray" stop-opacity="1" />
|
<stop offset="0" stop-color="gray" stop-opacity="1" />
|
||||||
@@ -13,32 +13,6 @@
|
|||||||
<filter id="drop-shadow">
|
<filter id="drop-shadow">
|
||||||
<feDropShadow dx="1" dy="1" stdDeviation="0"></feDropShadow>
|
<feDropShadow dx="1" dy="1" stdDeviation="0"></feDropShadow>
|
||||||
</filter>
|
</filter>
|
||||||
<g id="faction_icon">
|
|
||||||
<circle cx="1" cy="1" r="20" fill="black" filter="url(#drop-shadow)" />
|
|
||||||
<circle cx="0" cy="0" r="20" fill="url(#grad2)" />
|
|
||||||
</g>
|
|
||||||
<g id="d0">
|
|
||||||
<text x="0" y="-0.0" font-size="13.333333333333334" text-anchor="middle" fill="black" font-family="Helvetica"></text>
|
|
||||||
</g>
|
|
||||||
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '0' } ) );" id="d1">
|
|
||||||
<circle cx="0" cy="0" r="20" fill="red" x="0" y="0" />
|
|
||||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">1</text>
|
|
||||||
</g>
|
|
||||||
<g id="d2">
|
|
||||||
<use xlink:href="#d0" x="137.0" y="70.66666666666667" />
|
|
||||||
<use xlink:href="#d1" x="137.0" y="40.0" />
|
|
||||||
</g>
|
|
||||||
<g id="d3">
|
|
||||||
<text x="0" y="-0.0" font-size="14" text-anchor="middle" fill="black" font-family="Helvetica">Piochez une carte.</text>
|
|
||||||
</g>
|
|
||||||
<g id="d4">
|
|
||||||
<use xlink:href="#d3" x="137.0" y="31.0" />
|
|
||||||
</g>
|
|
||||||
<g id="effects">
|
|
||||||
<path d="M10,80 L264,80" stroke="black" stroke-width="1" />
|
|
||||||
<use xlink:href="#d2" x="0" y="0" />
|
|
||||||
<use xlink:href="#d4" x="0" y="80" />
|
|
||||||
</g>
|
|
||||||
</defs>
|
</defs>
|
||||||
<use xlink:href="#drop-shadow" />
|
<use xlink:href="#drop-shadow" />
|
||||||
<g id="background">
|
<g id="background">
|
||||||
@@ -49,8 +23,33 @@
|
|||||||
<text x="149.0" y="36" font-size="19" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">Fire Staff</text>
|
<text x="149.0" y="36" font-size="19" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">Fire Staff</text>
|
||||||
<text x="149.0" y="53" font-size="13" text-anchor="middle" fill="black" font-family="Helvetica">item</text>
|
<text x="149.0" y="53" font-size="13" text-anchor="middle" fill="black" font-family="Helvetica">item</text>
|
||||||
</g>
|
</g>
|
||||||
<use xlink:href="#faction_icon" x="36" y="37" />
|
<g transform="translate(36,37)">
|
||||||
|
<g id="faction_icon">
|
||||||
|
<circle cx="1" cy="1" r="20" fill="black" filter="url(#drop-shadow)" />
|
||||||
|
<circle cx="0" cy="0" r="20" fill="url(#grad2)" />
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
<rect x="0" y="65" width="298" height="200" />
|
<rect x="0" y="65" width="298" height="200" />
|
||||||
<image x="0" y="65" width="298" height="200" xlink:href="../../img/missing.png" />
|
<image x="0" y="65" width="298" height="200" xlink:href="../../img/missing.png" />
|
||||||
<use xlink:href="#effects" x="12" y="265" />
|
<g transform="translate(12,265)">
|
||||||
|
<path d="M10,80 L264,80" stroke="black" stroke-width="1" />
|
||||||
|
<g>
|
||||||
|
<g transform="translate(137.0,70.66666666666667)">
|
||||||
|
<text x="0" y="-0.0" font-size="13.333333333333334" text-anchor="middle" fill="black" font-family="Helvetica"></text>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(137.0,40.0)" v-bind:class="{used:used_effects_indexes.includes(0)}">
|
||||||
|
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '0' } ) );">
|
||||||
|
<circle cx="0" cy="0" r="20" fill="red" x="0" y="0" />
|
||||||
|
<text x="0" y="9" font-size="24" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">1</text>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(0,80)">
|
||||||
|
<g>
|
||||||
|
<g transform="translate(137.0,31.0)">
|
||||||
|
<text x="0" y="-0.0" font-size="14" text-anchor="middle" fill="black" font-family="Helvetica">Piochez une carte.</text>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
</svg>
|
</svg>
|
||||||
|
Before Width: | Height: | Size: 2.5 KiB After Width: | Height: | Size: 2.5 KiB |
@@ -1,6 +1,6 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||||
width="298" height="417" viewBox="0 0 298 417" id="card80">
|
width="298" height="417" viewBox="0 0 298 417" id="card80" class="card" xmlns:v-bind="https://heron.legonzaur.fr">
|
||||||
<defs>
|
<defs>
|
||||||
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
||||||
<stop offset="0" stop-color="gray" stop-opacity="1" />
|
<stop offset="0" stop-color="gray" stop-opacity="1" />
|
||||||
@@ -13,24 +13,6 @@
|
|||||||
<filter id="drop-shadow">
|
<filter id="drop-shadow">
|
||||||
<feDropShadow dx="1" dy="1" stdDeviation="0"></feDropShadow>
|
<feDropShadow dx="1" dy="1" stdDeviation="0"></feDropShadow>
|
||||||
</filter>
|
</filter>
|
||||||
<g id="faction_icon">
|
|
||||||
<circle cx="1" cy="1" r="20" fill="black" filter="url(#drop-shadow)" />
|
|
||||||
<circle cx="0" cy="0" r="20" fill="url(#grad2)" />
|
|
||||||
</g>
|
|
||||||
<g id="d0">
|
|
||||||
<text x="0" y="-7.0" font-size="14" text-anchor="middle" fill="black" font-family="Helvetica"><tspan x="0" dy="0em">+ x pour chaque autre Couteau</tspan><tspan x="0" dy="1em">que vous avez en jeu</tspan></text>
|
|
||||||
</g>
|
|
||||||
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '0' } ) );" id="d1">
|
|
||||||
<circle cx="0" cy="0" r="20" fill="red" x="0" y="0" />
|
|
||||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">1</text>
|
|
||||||
</g>
|
|
||||||
<g id="d2">
|
|
||||||
<use xlink:href="#d0" x="137.0" y="101.5" />
|
|
||||||
<use xlink:href="#d1" x="137.0" y="60.5" />
|
|
||||||
</g>
|
|
||||||
<g id="effects">
|
|
||||||
<use xlink:href="#d2" x="0" y="0" />
|
|
||||||
</g>
|
|
||||||
</defs>
|
</defs>
|
||||||
<use xlink:href="#drop-shadow" />
|
<use xlink:href="#drop-shadow" />
|
||||||
<g id="background">
|
<g id="background">
|
||||||
@@ -41,8 +23,25 @@
|
|||||||
<text x="149.0" y="36" font-size="19" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">Throwing Knife</text>
|
<text x="149.0" y="36" font-size="19" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">Throwing Knife</text>
|
||||||
<text x="149.0" y="53" font-size="13" text-anchor="middle" fill="black" font-family="Helvetica">item</text>
|
<text x="149.0" y="53" font-size="13" text-anchor="middle" fill="black" font-family="Helvetica">item</text>
|
||||||
</g>
|
</g>
|
||||||
<use xlink:href="#faction_icon" x="36" y="37" />
|
<g transform="translate(36,37)">
|
||||||
|
<g id="faction_icon">
|
||||||
|
<circle cx="1" cy="1" r="20" fill="black" filter="url(#drop-shadow)" />
|
||||||
|
<circle cx="0" cy="0" r="20" fill="url(#grad2)" />
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
<rect x="0" y="65" width="298" height="200" />
|
<rect x="0" y="65" width="298" height="200" />
|
||||||
<image x="0" y="65" width="298" height="200" xlink:href="../../img/missing.png" />
|
<image x="0" y="65" width="298" height="200" xlink:href="../../img/missing.png" />
|
||||||
<use xlink:href="#effects" x="12" y="265" />
|
<g transform="translate(12,265)">
|
||||||
|
<g>
|
||||||
|
<g transform="translate(137.0,101.5)">
|
||||||
|
<text x="0" y="-7.0" font-size="14" text-anchor="middle" fill="black" font-family="Helvetica"><tspan x="0" dy="0em">+ x pour chaque autre Couteau</tspan><tspan x="0" dy="1em">que vous avez en jeu</tspan></text>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(137.0,60.5)" v-bind:class="{used:used_effects_indexes.includes(0)}">
|
||||||
|
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '0' } ) );">
|
||||||
|
<circle cx="0" cy="0" r="20" fill="red" x="0" y="0" />
|
||||||
|
<text x="0" y="9" font-size="24" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">1</text>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
</svg>
|
</svg>
|
||||||
|
Before Width: | Height: | Size: 2.3 KiB After Width: | Height: | Size: 2.3 KiB |
@@ -1,6 +1,6 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||||
width="298" height="417" viewBox="0 0 298 417" id="card81">
|
width="298" height="417" viewBox="0 0 298 417" id="card81" class="card" xmlns:v-bind="https://heron.legonzaur.fr">
|
||||||
<defs>
|
<defs>
|
||||||
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
||||||
<stop offset="0" stop-color="gray" stop-opacity="1" />
|
<stop offset="0" stop-color="gray" stop-opacity="1" />
|
||||||
@@ -13,32 +13,6 @@
|
|||||||
<filter id="drop-shadow">
|
<filter id="drop-shadow">
|
||||||
<feDropShadow dx="1" dy="1" stdDeviation="0"></feDropShadow>
|
<feDropShadow dx="1" dy="1" stdDeviation="0"></feDropShadow>
|
||||||
</filter>
|
</filter>
|
||||||
<g id="faction_icon">
|
|
||||||
<circle cx="1" cy="1" r="20" fill="black" filter="url(#drop-shadow)" />
|
|
||||||
<circle cx="0" cy="0" r="20" fill="url(#grad2)" />
|
|
||||||
</g>
|
|
||||||
<g id="d0">
|
|
||||||
<text x="0" y="-0.0" font-size="13.333333333333334" text-anchor="middle" fill="black" font-family="Helvetica"></text>
|
|
||||||
</g>
|
|
||||||
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '0' } ) );" id="d1">
|
|
||||||
<circle cx="0" cy="0" r="20" fill="red" x="0" y="0" />
|
|
||||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">1</text>
|
|
||||||
</g>
|
|
||||||
<g id="d2">
|
|
||||||
<use xlink:href="#d0" x="137.0" y="70.66666666666667" />
|
|
||||||
<use xlink:href="#d1" x="137.0" y="40.0" />
|
|
||||||
</g>
|
|
||||||
<g id="d3">
|
|
||||||
<text x="0" y="-0.0" font-size="14" text-anchor="middle" fill="black" font-family="Helvetica">Piochez une carte.</text>
|
|
||||||
</g>
|
|
||||||
<g id="d4">
|
|
||||||
<use xlink:href="#d3" x="137.0" y="31.0" />
|
|
||||||
</g>
|
|
||||||
<g id="effects">
|
|
||||||
<path d="M10,80 L264,80" stroke="black" stroke-width="1" />
|
|
||||||
<use xlink:href="#d2" x="0" y="0" />
|
|
||||||
<use xlink:href="#d4" x="0" y="80" />
|
|
||||||
</g>
|
|
||||||
</defs>
|
</defs>
|
||||||
<use xlink:href="#drop-shadow" />
|
<use xlink:href="#drop-shadow" />
|
||||||
<g id="background">
|
<g id="background">
|
||||||
@@ -49,8 +23,33 @@
|
|||||||
<text x="149.0" y="36" font-size="19" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">Black Arrow</text>
|
<text x="149.0" y="36" font-size="19" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">Black Arrow</text>
|
||||||
<text x="149.0" y="53" font-size="13" text-anchor="middle" fill="black" font-family="Helvetica">item</text>
|
<text x="149.0" y="53" font-size="13" text-anchor="middle" fill="black" font-family="Helvetica">item</text>
|
||||||
</g>
|
</g>
|
||||||
<use xlink:href="#faction_icon" x="36" y="37" />
|
<g transform="translate(36,37)">
|
||||||
|
<g id="faction_icon">
|
||||||
|
<circle cx="1" cy="1" r="20" fill="black" filter="url(#drop-shadow)" />
|
||||||
|
<circle cx="0" cy="0" r="20" fill="url(#grad2)" />
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
<rect x="0" y="65" width="298" height="200" />
|
<rect x="0" y="65" width="298" height="200" />
|
||||||
<image x="0" y="65" width="298" height="200" xlink:href="../../img/missing.png" />
|
<image x="0" y="65" width="298" height="200" xlink:href="../../img/missing.png" />
|
||||||
<use xlink:href="#effects" x="12" y="265" />
|
<g transform="translate(12,265)">
|
||||||
|
<path d="M10,80 L264,80" stroke="black" stroke-width="1" />
|
||||||
|
<g>
|
||||||
|
<g transform="translate(137.0,70.66666666666667)">
|
||||||
|
<text x="0" y="-0.0" font-size="13.333333333333334" text-anchor="middle" fill="black" font-family="Helvetica"></text>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(137.0,40.0)" v-bind:class="{used:used_effects_indexes.includes(0)}">
|
||||||
|
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '0' } ) );">
|
||||||
|
<circle cx="0" cy="0" r="20" fill="red" x="0" y="0" />
|
||||||
|
<text x="0" y="9" font-size="24" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">1</text>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(0,80)">
|
||||||
|
<g>
|
||||||
|
<g transform="translate(137.0,31.0)">
|
||||||
|
<text x="0" y="-0.0" font-size="14" text-anchor="middle" fill="black" font-family="Helvetica">Piochez une carte.</text>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
</svg>
|
</svg>
|
||||||
|
Before Width: | Height: | Size: 2.5 KiB After Width: | Height: | Size: 2.5 KiB |
@@ -1,6 +1,6 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||||
width="298" height="417" viewBox="0 0 298 417" id="card82">
|
width="298" height="417" viewBox="0 0 298 417" id="card82" class="card" xmlns:v-bind="https://heron.legonzaur.fr">
|
||||||
<defs>
|
<defs>
|
||||||
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
||||||
<stop offset="0" stop-color="gray" stop-opacity="1" />
|
<stop offset="0" stop-color="gray" stop-opacity="1" />
|
||||||
@@ -13,24 +13,6 @@
|
|||||||
<filter id="drop-shadow">
|
<filter id="drop-shadow">
|
||||||
<feDropShadow dx="1" dy="1" stdDeviation="0"></feDropShadow>
|
<feDropShadow dx="1" dy="1" stdDeviation="0"></feDropShadow>
|
||||||
</filter>
|
</filter>
|
||||||
<g id="faction_icon">
|
|
||||||
<circle cx="1" cy="1" r="20" fill="black" filter="url(#drop-shadow)" />
|
|
||||||
<circle cx="0" cy="0" r="20" fill="url(#grad2)" />
|
|
||||||
</g>
|
|
||||||
<g id="d0">
|
|
||||||
<text x="0" y="-0.0" font-size="14" text-anchor="middle" fill="black" font-family="Helvetica">cheaper_champion</text>
|
|
||||||
</g>
|
|
||||||
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '0' } ) );" id="d1">
|
|
||||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
|
||||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">1</text>
|
|
||||||
</g>
|
|
||||||
<g id="d2">
|
|
||||||
<use xlink:href="#d0" x="137.0" y="101.5" />
|
|
||||||
<use xlink:href="#d1" x="137.0" y="60.5" />
|
|
||||||
</g>
|
|
||||||
<g id="effects">
|
|
||||||
<use xlink:href="#d2" x="0" y="0" />
|
|
||||||
</g>
|
|
||||||
</defs>
|
</defs>
|
||||||
<use xlink:href="#drop-shadow" />
|
<use xlink:href="#drop-shadow" />
|
||||||
<g id="background">
|
<g id="background">
|
||||||
@@ -41,8 +23,25 @@
|
|||||||
<text x="149.0" y="36" font-size="19" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">Horn of Calling</text>
|
<text x="149.0" y="36" font-size="19" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">Horn of Calling</text>
|
||||||
<text x="149.0" y="53" font-size="13" text-anchor="middle" fill="black" font-family="Helvetica">item</text>
|
<text x="149.0" y="53" font-size="13" text-anchor="middle" fill="black" font-family="Helvetica">item</text>
|
||||||
</g>
|
</g>
|
||||||
<use xlink:href="#faction_icon" x="36" y="37" />
|
<g transform="translate(36,37)">
|
||||||
|
<g id="faction_icon">
|
||||||
|
<circle cx="1" cy="1" r="20" fill="black" filter="url(#drop-shadow)" />
|
||||||
|
<circle cx="0" cy="0" r="20" fill="url(#grad2)" />
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
<rect x="0" y="65" width="298" height="200" />
|
<rect x="0" y="65" width="298" height="200" />
|
||||||
<image x="0" y="65" width="298" height="200" xlink:href="../../img/missing.png" />
|
<image x="0" y="65" width="298" height="200" xlink:href="../../img/missing.png" />
|
||||||
<use xlink:href="#effects" x="12" y="265" />
|
<g transform="translate(12,265)">
|
||||||
|
<g>
|
||||||
|
<g transform="translate(137.0,101.5)">
|
||||||
|
<text x="0" y="-0.0" font-size="14" text-anchor="middle" fill="black" font-family="Helvetica">cheaper_champion</text>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(137.0,60.5)" v-bind:class="{used:used_effects_indexes.includes(0)}">
|
||||||
|
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '0' } ) );">
|
||||||
|
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
||||||
|
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">1</text>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
</svg>
|
</svg>
|
||||||
|
Before Width: | Height: | Size: 2.2 KiB After Width: | Height: | Size: 2.2 KiB |
@@ -1,6 +1,6 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||||
width="298" height="417" viewBox="0 0 298 417" id="card83">
|
width="298" height="417" viewBox="0 0 298 417" id="card83" class="card" xmlns:v-bind="https://heron.legonzaur.fr">
|
||||||
<defs>
|
<defs>
|
||||||
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
||||||
<stop offset="0" stop-color="gray" stop-opacity="1" />
|
<stop offset="0" stop-color="gray" stop-opacity="1" />
|
||||||
@@ -13,24 +13,6 @@
|
|||||||
<filter id="drop-shadow">
|
<filter id="drop-shadow">
|
||||||
<feDropShadow dx="1" dy="1" stdDeviation="0"></feDropShadow>
|
<feDropShadow dx="1" dy="1" stdDeviation="0"></feDropShadow>
|
||||||
</filter>
|
</filter>
|
||||||
<g id="faction_icon">
|
|
||||||
<circle cx="1" cy="1" r="20" fill="black" filter="url(#drop-shadow)" />
|
|
||||||
<circle cx="0" cy="0" r="20" fill="url(#grad2)" />
|
|
||||||
</g>
|
|
||||||
<g id="d0">
|
|
||||||
<text x="0" y="-0.0" font-size="14" text-anchor="middle" fill="black" font-family="Helvetica"></text>
|
|
||||||
</g>
|
|
||||||
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '0' } ) );" id="d1">
|
|
||||||
<circle cx="0" cy="0" r="20" fill="red" x="0" y="0" />
|
|
||||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">2</text>
|
|
||||||
</g>
|
|
||||||
<g id="d2">
|
|
||||||
<use xlink:href="#d0" x="137.0" y="101.5" />
|
|
||||||
<use xlink:href="#d1" x="137.0" y="67.5" />
|
|
||||||
</g>
|
|
||||||
<g id="effects">
|
|
||||||
<use xlink:href="#d2" x="0" y="0" />
|
|
||||||
</g>
|
|
||||||
</defs>
|
</defs>
|
||||||
<use xlink:href="#drop-shadow" />
|
<use xlink:href="#drop-shadow" />
|
||||||
<g id="background">
|
<g id="background">
|
||||||
@@ -41,8 +23,25 @@
|
|||||||
<text x="149.0" y="36" font-size="19" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">Hunting Bow</text>
|
<text x="149.0" y="36" font-size="19" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">Hunting Bow</text>
|
||||||
<text x="149.0" y="53" font-size="13" text-anchor="middle" fill="black" font-family="Helvetica">item</text>
|
<text x="149.0" y="53" font-size="13" text-anchor="middle" fill="black" font-family="Helvetica">item</text>
|
||||||
</g>
|
</g>
|
||||||
<use xlink:href="#faction_icon" x="36" y="37" />
|
<g transform="translate(36,37)">
|
||||||
|
<g id="faction_icon">
|
||||||
|
<circle cx="1" cy="1" r="20" fill="black" filter="url(#drop-shadow)" />
|
||||||
|
<circle cx="0" cy="0" r="20" fill="url(#grad2)" />
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
<rect x="0" y="65" width="298" height="200" />
|
<rect x="0" y="65" width="298" height="200" />
|
||||||
<image x="0" y="65" width="298" height="200" xlink:href="../../img/missing.png" />
|
<image x="0" y="65" width="298" height="200" xlink:href="../../img/missing.png" />
|
||||||
<use xlink:href="#effects" x="12" y="265" />
|
<g transform="translate(12,265)">
|
||||||
|
<g>
|
||||||
|
<g transform="translate(137.0,101.5)">
|
||||||
|
<text x="0" y="-0.0" font-size="14" text-anchor="middle" fill="black" font-family="Helvetica"></text>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(137.0,67.5)" v-bind:class="{used:used_effects_indexes.includes(0)}">
|
||||||
|
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '0' } ) );">
|
||||||
|
<circle cx="0" cy="0" r="20" fill="red" x="0" y="0" />
|
||||||
|
<text x="0" y="9" font-size="24" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">2</text>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
</svg>
|
</svg>
|
||||||
|
Before Width: | Height: | Size: 2.2 KiB After Width: | Height: | Size: 2.2 KiB |
@@ -1,6 +1,6 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||||
width="298" height="417" viewBox="0 0 298 417" id="card84">
|
width="298" height="417" viewBox="0 0 298 417" id="card84" class="card" xmlns:v-bind="https://heron.legonzaur.fr">
|
||||||
<defs>
|
<defs>
|
||||||
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
||||||
<stop offset="0" stop-color="gray" stop-opacity="1" />
|
<stop offset="0" stop-color="gray" stop-opacity="1" />
|
||||||
@@ -13,24 +13,6 @@
|
|||||||
<filter id="drop-shadow">
|
<filter id="drop-shadow">
|
||||||
<feDropShadow dx="1" dy="1" stdDeviation="0"></feDropShadow>
|
<feDropShadow dx="1" dy="1" stdDeviation="0"></feDropShadow>
|
||||||
</filter>
|
</filter>
|
||||||
<g id="faction_icon">
|
|
||||||
<circle cx="1" cy="1" r="20" fill="black" filter="url(#drop-shadow)" />
|
|
||||||
<circle cx="0" cy="0" r="20" fill="url(#grad2)" />
|
|
||||||
</g>
|
|
||||||
<g id="d0">
|
|
||||||
<text x="0" y="-0.0" font-size="14" text-anchor="middle" fill="black" font-family="Helvetica"></text>
|
|
||||||
</g>
|
|
||||||
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '0' } ) );" id="d1">
|
|
||||||
<circle cx="0" cy="0" r="20" fill="red" x="0" y="0" />
|
|
||||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">3</text>
|
|
||||||
</g>
|
|
||||||
<g id="d2">
|
|
||||||
<use xlink:href="#d0" x="137.0" y="101.5" />
|
|
||||||
<use xlink:href="#d1" x="137.0" y="67.5" />
|
|
||||||
</g>
|
|
||||||
<g id="effects">
|
|
||||||
<use xlink:href="#d2" x="0" y="0" />
|
|
||||||
</g>
|
|
||||||
</defs>
|
</defs>
|
||||||
<use xlink:href="#drop-shadow" />
|
<use xlink:href="#drop-shadow" />
|
||||||
<g id="background">
|
<g id="background">
|
||||||
@@ -41,8 +23,25 @@
|
|||||||
<text x="149.0" y="36" font-size="19" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">Longsword</text>
|
<text x="149.0" y="36" font-size="19" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">Longsword</text>
|
||||||
<text x="149.0" y="53" font-size="13" text-anchor="middle" fill="black" font-family="Helvetica">item</text>
|
<text x="149.0" y="53" font-size="13" text-anchor="middle" fill="black" font-family="Helvetica">item</text>
|
||||||
</g>
|
</g>
|
||||||
<use xlink:href="#faction_icon" x="36" y="37" />
|
<g transform="translate(36,37)">
|
||||||
|
<g id="faction_icon">
|
||||||
|
<circle cx="1" cy="1" r="20" fill="black" filter="url(#drop-shadow)" />
|
||||||
|
<circle cx="0" cy="0" r="20" fill="url(#grad2)" />
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
<rect x="0" y="65" width="298" height="200" />
|
<rect x="0" y="65" width="298" height="200" />
|
||||||
<image x="0" y="65" width="298" height="200" xlink:href="../../img/missing.png" />
|
<image x="0" y="65" width="298" height="200" xlink:href="../../img/missing.png" />
|
||||||
<use xlink:href="#effects" x="12" y="265" />
|
<g transform="translate(12,265)">
|
||||||
|
<g>
|
||||||
|
<g transform="translate(137.0,101.5)">
|
||||||
|
<text x="0" y="-0.0" font-size="14" text-anchor="middle" fill="black" font-family="Helvetica"></text>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(137.0,67.5)" v-bind:class="{used:used_effects_indexes.includes(0)}">
|
||||||
|
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '0' } ) );">
|
||||||
|
<circle cx="0" cy="0" r="20" fill="red" x="0" y="0" />
|
||||||
|
<text x="0" y="9" font-size="24" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">3</text>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
</svg>
|
</svg>
|
||||||
|
Before Width: | Height: | Size: 2.2 KiB After Width: | Height: | Size: 2.2 KiB |
@@ -1,6 +1,6 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||||
width="298" height="417" viewBox="0 0 298 417" id="card85">
|
width="298" height="417" viewBox="0 0 298 417" id="card85" class="card" xmlns:v-bind="https://heron.legonzaur.fr">
|
||||||
<defs>
|
<defs>
|
||||||
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
||||||
<stop offset="0" stop-color="gray" stop-opacity="1" />
|
<stop offset="0" stop-color="gray" stop-opacity="1" />
|
||||||
@@ -13,18 +13,6 @@
|
|||||||
<filter id="drop-shadow">
|
<filter id="drop-shadow">
|
||||||
<feDropShadow dx="1" dy="1" stdDeviation="0"></feDropShadow>
|
<feDropShadow dx="1" dy="1" stdDeviation="0"></feDropShadow>
|
||||||
</filter>
|
</filter>
|
||||||
<g id="faction_icon">
|
|
||||||
<circle cx="1" cy="1" r="20" fill="black" filter="url(#drop-shadow)" />
|
|
||||||
<circle cx="0" cy="0" r="20" fill="url(#grad2)" />
|
|
||||||
</g>
|
|
||||||
<path d="M-2.9999999999999982,-2.0 L-29.6295824562643,-21.347524157501468 L-19.45798706418925,-52.652475842498525 L13.45798706418924,-52.65247584249853 L23.629582456264302,-21.34752415750148 Z" stroke-width="2" id="d0" />
|
|
||||||
<text x="-3" y="-20" font-size="28px" font-weight="bold" font-family="Helvetica" text-anchor="middle" id="d1">3</text>
|
|
||||||
<g id="champion_shield">
|
|
||||||
<use xlink:href="#d0" x="0" y="0" fill="black" stroke="lightgrey" />
|
|
||||||
<rect x="-28" y="-72" width="49" height="17" fill="black" stroke="lightgrey" stroke-width="2" />
|
|
||||||
<text x="-3" y="-59" font-size="12px" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">Garde</text>
|
|
||||||
<use xlink:href="#d1" x="0" y="0" fill="white" />
|
|
||||||
</g>
|
|
||||||
</defs>
|
</defs>
|
||||||
<use xlink:href="#drop-shadow" />
|
<use xlink:href="#drop-shadow" />
|
||||||
<g id="background">
|
<g id="background">
|
||||||
@@ -35,8 +23,18 @@
|
|||||||
<text x="149.0" y="36" font-size="19" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">Shield Bearer</text>
|
<text x="149.0" y="36" font-size="19" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">Shield Bearer</text>
|
||||||
<text x="149.0" y="53" font-size="13" text-anchor="middle" fill="black" font-family="Helvetica">Champion</text>
|
<text x="149.0" y="53" font-size="13" text-anchor="middle" fill="black" font-family="Helvetica">Champion</text>
|
||||||
</g>
|
</g>
|
||||||
<use xlink:href="#faction_icon" x="36" y="37" />
|
<g transform="translate(36,37)">
|
||||||
|
<g id="faction_icon">
|
||||||
|
<circle cx="1" cy="1" r="20" fill="black" filter="url(#drop-shadow)" />
|
||||||
|
<circle cx="0" cy="0" r="20" fill="url(#grad2)" />
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
<rect x="0" y="65" width="298" height="200" />
|
<rect x="0" y="65" width="298" height="200" />
|
||||||
<image x="0" y="65" width="298" height="200" xlink:href="../../img/missing.png" />
|
<image x="0" y="65" width="298" height="200" xlink:href="../../img/missing.png" />
|
||||||
<use xlink:href="#champion_shield" x="268" y="417" />
|
<g transform="translate(268,417)">
|
||||||
|
<path d="M-2.9999999999999982,-2.0 L-29.6295824562643,-21.347524157501468 L-19.45798706418925,-52.652475842498525 L13.45798706418924,-52.65247584249853 L23.629582456264302,-21.34752415750148 Z" fill="black" stroke="lightgrey" stroke-width="2" />
|
||||||
|
<rect x="-28" y="-72" width="49" height="17" fill="black" stroke="lightgrey" stroke-width="2" />
|
||||||
|
<text x="-3" y="-59" font-size="12px" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">Garde</text>
|
||||||
|
<text x="-3" y="-20" font-size="28px" font-weight="bold" font-family="Helvetica" text-anchor="middle" fill="white">3</text>
|
||||||
|
</g>
|
||||||
</svg>
|
</svg>
|
||||||
|
Before Width: | Height: | Size: 2.3 KiB After Width: | Height: | Size: 2.2 KiB |
@@ -1,6 +1,6 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||||
width="298" height="417" viewBox="0 0 298 417" id="card86">
|
width="298" height="417" viewBox="0 0 298 417" id="card86" class="card" xmlns:v-bind="https://heron.legonzaur.fr">
|
||||||
<defs>
|
<defs>
|
||||||
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
||||||
<stop offset="0" stop-color="gray" stop-opacity="1" />
|
<stop offset="0" stop-color="gray" stop-opacity="1" />
|
||||||
@@ -13,32 +13,6 @@
|
|||||||
<filter id="drop-shadow">
|
<filter id="drop-shadow">
|
||||||
<feDropShadow dx="1" dy="1" stdDeviation="0"></feDropShadow>
|
<feDropShadow dx="1" dy="1" stdDeviation="0"></feDropShadow>
|
||||||
</filter>
|
</filter>
|
||||||
<g id="faction_icon">
|
|
||||||
<circle cx="1" cy="1" r="20" fill="black" filter="url(#drop-shadow)" />
|
|
||||||
<circle cx="0" cy="0" r="20" fill="url(#grad2)" />
|
|
||||||
</g>
|
|
||||||
<g id="d0">
|
|
||||||
<text x="0" y="-0.0" font-size="13.333333333333334" text-anchor="middle" fill="black" font-family="Helvetica"></text>
|
|
||||||
</g>
|
|
||||||
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '0' } ) );" id="d1">
|
|
||||||
<circle cx="0" cy="0" r="20" fill="red" x="0" y="0" />
|
|
||||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">2</text>
|
|
||||||
</g>
|
|
||||||
<g id="d2">
|
|
||||||
<use xlink:href="#d0" x="137.0" y="70.66666666666667" />
|
|
||||||
<use xlink:href="#d1" x="137.0" y="40.0" />
|
|
||||||
</g>
|
|
||||||
<g id="d3">
|
|
||||||
<text x="0" y="-0.0" font-size="14" text-anchor="middle" fill="black" font-family="Helvetica">Piochez une carte.</text>
|
|
||||||
</g>
|
|
||||||
<g id="d4">
|
|
||||||
<use xlink:href="#d3" x="137.0" y="31.0" />
|
|
||||||
</g>
|
|
||||||
<g id="effects">
|
|
||||||
<path d="M10,80 L264,80" stroke="black" stroke-width="1" />
|
|
||||||
<use xlink:href="#d2" x="0" y="0" />
|
|
||||||
<use xlink:href="#d4" x="0" y="80" />
|
|
||||||
</g>
|
|
||||||
</defs>
|
</defs>
|
||||||
<use xlink:href="#drop-shadow" />
|
<use xlink:href="#drop-shadow" />
|
||||||
<g id="background">
|
<g id="background">
|
||||||
@@ -49,8 +23,33 @@
|
|||||||
<text x="149.0" y="36" font-size="19" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">Throwing Axe</text>
|
<text x="149.0" y="36" font-size="19" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">Throwing Axe</text>
|
||||||
<text x="149.0" y="53" font-size="13" text-anchor="middle" fill="black" font-family="Helvetica">item</text>
|
<text x="149.0" y="53" font-size="13" text-anchor="middle" fill="black" font-family="Helvetica">item</text>
|
||||||
</g>
|
</g>
|
||||||
<use xlink:href="#faction_icon" x="36" y="37" />
|
<g transform="translate(36,37)">
|
||||||
|
<g id="faction_icon">
|
||||||
|
<circle cx="1" cy="1" r="20" fill="black" filter="url(#drop-shadow)" />
|
||||||
|
<circle cx="0" cy="0" r="20" fill="url(#grad2)" />
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
<rect x="0" y="65" width="298" height="200" />
|
<rect x="0" y="65" width="298" height="200" />
|
||||||
<image x="0" y="65" width="298" height="200" xlink:href="../../img/missing.png" />
|
<image x="0" y="65" width="298" height="200" xlink:href="../../img/missing.png" />
|
||||||
<use xlink:href="#effects" x="12" y="265" />
|
<g transform="translate(12,265)">
|
||||||
|
<path d="M10,80 L264,80" stroke="black" stroke-width="1" />
|
||||||
|
<g>
|
||||||
|
<g transform="translate(137.0,70.66666666666667)">
|
||||||
|
<text x="0" y="-0.0" font-size="13.333333333333334" text-anchor="middle" fill="black" font-family="Helvetica"></text>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(137.0,40.0)" v-bind:class="{used:used_effects_indexes.includes(0)}">
|
||||||
|
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '0' } ) );">
|
||||||
|
<circle cx="0" cy="0" r="20" fill="red" x="0" y="0" />
|
||||||
|
<text x="0" y="9" font-size="24" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">2</text>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(0,80)">
|
||||||
|
<g>
|
||||||
|
<g transform="translate(137.0,31.0)">
|
||||||
|
<text x="0" y="-0.0" font-size="14" text-anchor="middle" fill="black" font-family="Helvetica">Piochez une carte.</text>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
</svg>
|
</svg>
|
||||||
|
Before Width: | Height: | Size: 2.5 KiB After Width: | Height: | Size: 2.5 KiB |
@@ -1,6 +1,6 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||||
width="298" height="417" viewBox="0 0 298 417" id="card87">
|
width="298" height="417" viewBox="0 0 298 417" id="card87" class="card" xmlns:v-bind="https://heron.legonzaur.fr">
|
||||||
<defs>
|
<defs>
|
||||||
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
||||||
<stop offset="0" stop-color="gray" stop-opacity="1" />
|
<stop offset="0" stop-color="gray" stop-opacity="1" />
|
||||||
@@ -13,32 +13,6 @@
|
|||||||
<filter id="drop-shadow">
|
<filter id="drop-shadow">
|
||||||
<feDropShadow dx="1" dy="1" stdDeviation="0"></feDropShadow>
|
<feDropShadow dx="1" dy="1" stdDeviation="0"></feDropShadow>
|
||||||
</filter>
|
</filter>
|
||||||
<g id="faction_icon">
|
|
||||||
<circle cx="1" cy="1" r="20" fill="black" filter="url(#drop-shadow)" />
|
|
||||||
<circle cx="0" cy="0" r="20" fill="url(#grad2)" />
|
|
||||||
</g>
|
|
||||||
<g id="d0">
|
|
||||||
<text x="0" y="-0.0" font-size="14" text-anchor="middle" fill="black" font-family="Helvetica"></text>
|
|
||||||
</g>
|
|
||||||
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '0' } ) );" id="d1">
|
|
||||||
<circle cx="0" cy="0" r="20" fill="red" x="0" y="0" />
|
|
||||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">1</text>
|
|
||||||
</g>
|
|
||||||
<g id="d2">
|
|
||||||
<use xlink:href="#d0" x="137.0" y="101.5" />
|
|
||||||
<use xlink:href="#d1" x="137.0" y="67.5" />
|
|
||||||
</g>
|
|
||||||
<g id="effects">
|
|
||||||
<use xlink:href="#d2" x="0" y="0" />
|
|
||||||
</g>
|
|
||||||
<path d="M-2.9999999999999982,-2.0 L-29.6295824562643,-21.347524157501468 L-19.45798706418925,-52.652475842498525 L13.45798706418924,-52.65247584249853 L23.629582456264302,-21.34752415750148 Z" stroke-width="2" id="d3" />
|
|
||||||
<text x="-3" y="-20" font-size="28px" font-weight="bold" font-family="Helvetica" text-anchor="middle" id="d4">1</text>
|
|
||||||
<g id="champion_shield">
|
|
||||||
<use xlink:href="#d3" x="0" y="0" fill="black" stroke="lightgrey" />
|
|
||||||
<rect x="-28" y="-72" width="49" height="17" fill="black" stroke="lightgrey" stroke-width="2" />
|
|
||||||
<text x="-3" y="-59" font-size="12px" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">Garde</text>
|
|
||||||
<use xlink:href="#d4" x="0" y="0" fill="white" />
|
|
||||||
</g>
|
|
||||||
</defs>
|
</defs>
|
||||||
<use xlink:href="#drop-shadow" />
|
<use xlink:href="#drop-shadow" />
|
||||||
<g id="background">
|
<g id="background">
|
||||||
@@ -49,9 +23,31 @@
|
|||||||
<text x="149.0" y="36" font-size="19" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">Follower A</text>
|
<text x="149.0" y="36" font-size="19" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">Follower A</text>
|
||||||
<text x="149.0" y="53" font-size="13" text-anchor="middle" fill="black" font-family="Helvetica">Champion</text>
|
<text x="149.0" y="53" font-size="13" text-anchor="middle" fill="black" font-family="Helvetica">Champion</text>
|
||||||
</g>
|
</g>
|
||||||
<use xlink:href="#faction_icon" x="36" y="37" />
|
<g transform="translate(36,37)">
|
||||||
|
<g id="faction_icon">
|
||||||
|
<circle cx="1" cy="1" r="20" fill="black" filter="url(#drop-shadow)" />
|
||||||
|
<circle cx="0" cy="0" r="20" fill="url(#grad2)" />
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
<rect x="0" y="65" width="298" height="200" />
|
<rect x="0" y="65" width="298" height="200" />
|
||||||
<image x="0" y="65" width="298" height="200" xlink:href="../../img/missing.png" />
|
<image x="0" y="65" width="298" height="200" xlink:href="../../img/missing.png" />
|
||||||
<use xlink:href="#effects" x="12" y="265" />
|
<g transform="translate(12,265)">
|
||||||
<use xlink:href="#champion_shield" x="268" y="417" />
|
<g>
|
||||||
|
<g transform="translate(137.0,101.5)">
|
||||||
|
<text x="0" y="-0.0" font-size="14" text-anchor="middle" fill="black" font-family="Helvetica"></text>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(137.0,67.5)" v-bind:class="{used:used_effects_indexes.includes(0)}">
|
||||||
|
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '0' } ) );">
|
||||||
|
<circle cx="0" cy="0" r="20" fill="red" x="0" y="0" />
|
||||||
|
<text x="0" y="9" font-size="24" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">1</text>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(268,417)">
|
||||||
|
<path d="M-2.9999999999999982,-2.0 L-29.6295824562643,-21.347524157501468 L-19.45798706418925,-52.652475842498525 L13.45798706418924,-52.65247584249853 L23.629582456264302,-21.34752415750148 Z" fill="black" stroke="lightgrey" stroke-width="2" />
|
||||||
|
<rect x="-28" y="-72" width="49" height="17" fill="black" stroke="lightgrey" stroke-width="2" />
|
||||||
|
<text x="-3" y="-59" font-size="12px" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">Garde</text>
|
||||||
|
<text x="-3" y="-20" font-size="28px" font-weight="bold" font-family="Helvetica" text-anchor="middle" fill="white">1</text>
|
||||||
|
</g>
|
||||||
</svg>
|
</svg>
|
||||||
|
Before Width: | Height: | Size: 2.9 KiB After Width: | Height: | Size: 2.8 KiB |
@@ -1,6 +1,6 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||||
width="298" height="417" viewBox="0 0 298 417" id="card88">
|
width="298" height="417" viewBox="0 0 298 417" id="card88" class="card" xmlns:v-bind="https://heron.legonzaur.fr">
|
||||||
<defs>
|
<defs>
|
||||||
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
||||||
<stop offset="0" stop-color="gray" stop-opacity="1" />
|
<stop offset="0" stop-color="gray" stop-opacity="1" />
|
||||||
@@ -13,32 +13,6 @@
|
|||||||
<filter id="drop-shadow">
|
<filter id="drop-shadow">
|
||||||
<feDropShadow dx="1" dy="1" stdDeviation="0"></feDropShadow>
|
<feDropShadow dx="1" dy="1" stdDeviation="0"></feDropShadow>
|
||||||
</filter>
|
</filter>
|
||||||
<g id="faction_icon">
|
|
||||||
<circle cx="1" cy="1" r="20" fill="black" filter="url(#drop-shadow)" />
|
|
||||||
<circle cx="0" cy="0" r="20" fill="url(#grad2)" />
|
|
||||||
</g>
|
|
||||||
<g id="d0">
|
|
||||||
<text x="0" y="-0.0" font-size="14" text-anchor="middle" fill="black" font-family="Helvetica"></text>
|
|
||||||
</g>
|
|
||||||
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '0' } ) );" id="d1">
|
|
||||||
<circle cx="0" cy="0" r="20" fill="red" x="0" y="0" />
|
|
||||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">1</text>
|
|
||||||
</g>
|
|
||||||
<g id="d2">
|
|
||||||
<use xlink:href="#d0" x="137.0" y="101.5" />
|
|
||||||
<use xlink:href="#d1" x="137.0" y="67.5" />
|
|
||||||
</g>
|
|
||||||
<g id="effects">
|
|
||||||
<use xlink:href="#d2" x="0" y="0" />
|
|
||||||
</g>
|
|
||||||
<path d="M-2.9999999999999982,-2.0 L-29.6295824562643,-21.347524157501468 L-19.45798706418925,-52.652475842498525 L13.45798706418924,-52.65247584249853 L23.629582456264302,-21.34752415750148 Z" stroke-width="2" id="d3" />
|
|
||||||
<text x="-3" y="-20" font-size="28px" font-weight="bold" font-family="Helvetica" text-anchor="middle" id="d4">1</text>
|
|
||||||
<g id="champion_shield">
|
|
||||||
<use xlink:href="#d3" x="0" y="0" fill="black" stroke="lightgrey" />
|
|
||||||
<rect x="-28" y="-72" width="49" height="17" fill="black" stroke="lightgrey" stroke-width="2" />
|
|
||||||
<text x="-3" y="-59" font-size="12px" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">Garde</text>
|
|
||||||
<use xlink:href="#d4" x="0" y="0" fill="white" />
|
|
||||||
</g>
|
|
||||||
</defs>
|
</defs>
|
||||||
<use xlink:href="#drop-shadow" />
|
<use xlink:href="#drop-shadow" />
|
||||||
<g id="background">
|
<g id="background">
|
||||||
@@ -49,9 +23,31 @@
|
|||||||
<text x="149.0" y="36" font-size="19" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">Follower B</text>
|
<text x="149.0" y="36" font-size="19" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">Follower B</text>
|
||||||
<text x="149.0" y="53" font-size="13" text-anchor="middle" fill="black" font-family="Helvetica">Champion</text>
|
<text x="149.0" y="53" font-size="13" text-anchor="middle" fill="black" font-family="Helvetica">Champion</text>
|
||||||
</g>
|
</g>
|
||||||
<use xlink:href="#faction_icon" x="36" y="37" />
|
<g transform="translate(36,37)">
|
||||||
|
<g id="faction_icon">
|
||||||
|
<circle cx="1" cy="1" r="20" fill="black" filter="url(#drop-shadow)" />
|
||||||
|
<circle cx="0" cy="0" r="20" fill="url(#grad2)" />
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
<rect x="0" y="65" width="298" height="200" />
|
<rect x="0" y="65" width="298" height="200" />
|
||||||
<image x="0" y="65" width="298" height="200" xlink:href="../../img/missing.png" />
|
<image x="0" y="65" width="298" height="200" xlink:href="../../img/missing.png" />
|
||||||
<use xlink:href="#effects" x="12" y="265" />
|
<g transform="translate(12,265)">
|
||||||
<use xlink:href="#champion_shield" x="268" y="417" />
|
<g>
|
||||||
|
<g transform="translate(137.0,101.5)">
|
||||||
|
<text x="0" y="-0.0" font-size="14" text-anchor="middle" fill="black" font-family="Helvetica"></text>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(137.0,67.5)" v-bind:class="{used:used_effects_indexes.includes(0)}">
|
||||||
|
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '0' } ) );">
|
||||||
|
<circle cx="0" cy="0" r="20" fill="red" x="0" y="0" />
|
||||||
|
<text x="0" y="9" font-size="24" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">1</text>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(268,417)">
|
||||||
|
<path d="M-2.9999999999999982,-2.0 L-29.6295824562643,-21.347524157501468 L-19.45798706418925,-52.652475842498525 L13.45798706418924,-52.65247584249853 L23.629582456264302,-21.34752415750148 Z" fill="black" stroke="lightgrey" stroke-width="2" />
|
||||||
|
<rect x="-28" y="-72" width="49" height="17" fill="black" stroke="lightgrey" stroke-width="2" />
|
||||||
|
<text x="-3" y="-59" font-size="12px" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">Garde</text>
|
||||||
|
<text x="-3" y="-20" font-size="28px" font-weight="bold" font-family="Helvetica" text-anchor="middle" fill="white">1</text>
|
||||||
|
</g>
|
||||||
</svg>
|
</svg>
|
||||||
|
Before Width: | Height: | Size: 2.9 KiB After Width: | Height: | Size: 2.8 KiB |
@@ -1,6 +1,6 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||||
width="298" height="417" viewBox="0 0 298 417" id="card89">
|
width="298" height="417" viewBox="0 0 298 417" id="card89" class="card" xmlns:v-bind="https://heron.legonzaur.fr">
|
||||||
<defs>
|
<defs>
|
||||||
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
||||||
<stop offset="0" stop-color="gray" stop-opacity="1" />
|
<stop offset="0" stop-color="gray" stop-opacity="1" />
|
||||||
@@ -13,24 +13,6 @@
|
|||||||
<filter id="drop-shadow">
|
<filter id="drop-shadow">
|
||||||
<feDropShadow dx="1" dy="1" stdDeviation="0"></feDropShadow>
|
<feDropShadow dx="1" dy="1" stdDeviation="0"></feDropShadow>
|
||||||
</filter>
|
</filter>
|
||||||
<g id="faction_icon">
|
|
||||||
<circle cx="1" cy="1" r="20" fill="black" filter="url(#drop-shadow)" />
|
|
||||||
<circle cx="0" cy="0" r="20" fill="url(#grad2)" />
|
|
||||||
</g>
|
|
||||||
<g id="d0">
|
|
||||||
<text x="0" y="-0.0" font-size="14" text-anchor="middle" fill="black" font-family="Helvetica"></text>
|
|
||||||
</g>
|
|
||||||
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '0' } ) );" id="d1">
|
|
||||||
<circle cx="0" cy="0" r="20" fill="red" x="0" y="0" />
|
|
||||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">2</text>
|
|
||||||
</g>
|
|
||||||
<g id="d2">
|
|
||||||
<use xlink:href="#d0" x="137.0" y="101.5" />
|
|
||||||
<use xlink:href="#d1" x="137.0" y="67.5" />
|
|
||||||
</g>
|
|
||||||
<g id="effects">
|
|
||||||
<use xlink:href="#d2" x="0" y="0" />
|
|
||||||
</g>
|
|
||||||
</defs>
|
</defs>
|
||||||
<use xlink:href="#drop-shadow" />
|
<use xlink:href="#drop-shadow" />
|
||||||
<g id="background">
|
<g id="background">
|
||||||
@@ -41,8 +23,25 @@
|
|||||||
<text x="149.0" y="36" font-size="19" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">Spiked Mace</text>
|
<text x="149.0" y="36" font-size="19" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">Spiked Mace</text>
|
||||||
<text x="149.0" y="53" font-size="13" text-anchor="middle" fill="black" font-family="Helvetica">item</text>
|
<text x="149.0" y="53" font-size="13" text-anchor="middle" fill="black" font-family="Helvetica">item</text>
|
||||||
</g>
|
</g>
|
||||||
<use xlink:href="#faction_icon" x="36" y="37" />
|
<g transform="translate(36,37)">
|
||||||
|
<g id="faction_icon">
|
||||||
|
<circle cx="1" cy="1" r="20" fill="black" filter="url(#drop-shadow)" />
|
||||||
|
<circle cx="0" cy="0" r="20" fill="url(#grad2)" />
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
<rect x="0" y="65" width="298" height="200" />
|
<rect x="0" y="65" width="298" height="200" />
|
||||||
<image x="0" y="65" width="298" height="200" xlink:href="../../img/missing.png" />
|
<image x="0" y="65" width="298" height="200" xlink:href="../../img/missing.png" />
|
||||||
<use xlink:href="#effects" x="12" y="265" />
|
<g transform="translate(12,265)">
|
||||||
|
<g>
|
||||||
|
<g transform="translate(137.0,101.5)">
|
||||||
|
<text x="0" y="-0.0" font-size="14" text-anchor="middle" fill="black" font-family="Helvetica"></text>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(137.0,67.5)" v-bind:class="{used:used_effects_indexes.includes(0)}">
|
||||||
|
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '0' } ) );">
|
||||||
|
<circle cx="0" cy="0" r="20" fill="red" x="0" y="0" />
|
||||||
|
<text x="0" y="9" font-size="24" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">2</text>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
</svg>
|
</svg>
|
||||||
|
Before Width: | Height: | Size: 2.2 KiB After Width: | Height: | Size: 2.2 KiB |
@@ -1,6 +1,6 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||||
width="298" height="417" viewBox="0 0 298 417" id="card90">
|
width="298" height="417" viewBox="0 0 298 417" id="card90" class="card" xmlns:v-bind="https://heron.legonzaur.fr">
|
||||||
<defs>
|
<defs>
|
||||||
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
||||||
<stop offset="0" stop-color="gray" stop-opacity="1" />
|
<stop offset="0" stop-color="gray" stop-opacity="1" />
|
||||||
@@ -13,29 +13,6 @@
|
|||||||
<filter id="drop-shadow">
|
<filter id="drop-shadow">
|
||||||
<feDropShadow dx="1" dy="1" stdDeviation="0"></feDropShadow>
|
<feDropShadow dx="1" dy="1" stdDeviation="0"></feDropShadow>
|
||||||
</filter>
|
</filter>
|
||||||
<g id="faction_icon">
|
|
||||||
<circle cx="1" cy="1" r="20" fill="black" filter="url(#drop-shadow)" />
|
|
||||||
<circle cx="0" cy="0" r="20" fill="url(#grad2)" />
|
|
||||||
</g>
|
|
||||||
<g id="d0">
|
|
||||||
<text x="0" y="-0.0" font-size="14" text-anchor="middle" fill="black" font-family="Helvetica"></text>
|
|
||||||
</g>
|
|
||||||
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '0' } ) );" id="d1">
|
|
||||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
|
||||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">2</text>
|
|
||||||
</g>
|
|
||||||
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '1' } ) );" id="d2">
|
|
||||||
<circle cx="0" cy="0" r="20" fill="green" x="0" y="0" />
|
|
||||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">5</text>
|
|
||||||
</g>
|
|
||||||
<g id="d3">
|
|
||||||
<use xlink:href="#d0" x="137.0" y="101.5" />
|
|
||||||
<use xlink:href="#d1" x="107.0" y="67.5" />
|
|
||||||
<use xlink:href="#d2" x="167.0" y="67.5" />
|
|
||||||
</g>
|
|
||||||
<g id="effects">
|
|
||||||
<use xlink:href="#d3" x="0" y="0" />
|
|
||||||
</g>
|
|
||||||
</defs>
|
</defs>
|
||||||
<use xlink:href="#drop-shadow" />
|
<use xlink:href="#drop-shadow" />
|
||||||
<g id="background">
|
<g id="background">
|
||||||
@@ -46,8 +23,31 @@
|
|||||||
<text x="149.0" y="36" font-size="19" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">Prayer Beads</text>
|
<text x="149.0" y="36" font-size="19" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">Prayer Beads</text>
|
||||||
<text x="149.0" y="53" font-size="13" text-anchor="middle" fill="black" font-family="Helvetica">item</text>
|
<text x="149.0" y="53" font-size="13" text-anchor="middle" fill="black" font-family="Helvetica">item</text>
|
||||||
</g>
|
</g>
|
||||||
<use xlink:href="#faction_icon" x="36" y="37" />
|
<g transform="translate(36,37)">
|
||||||
|
<g id="faction_icon">
|
||||||
|
<circle cx="1" cy="1" r="20" fill="black" filter="url(#drop-shadow)" />
|
||||||
|
<circle cx="0" cy="0" r="20" fill="url(#grad2)" />
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
<rect x="0" y="65" width="298" height="200" />
|
<rect x="0" y="65" width="298" height="200" />
|
||||||
<image x="0" y="65" width="298" height="200" xlink:href="../../img/missing.png" />
|
<image x="0" y="65" width="298" height="200" xlink:href="../../img/missing.png" />
|
||||||
<use xlink:href="#effects" x="12" y="265" />
|
<g transform="translate(12,265)">
|
||||||
|
<g>
|
||||||
|
<g transform="translate(137.0,101.5)">
|
||||||
|
<text x="0" y="-0.0" font-size="14" text-anchor="middle" fill="black" font-family="Helvetica"></text>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(107.0,67.5)" v-bind:class="{used:used_effects_indexes.includes(0)}">
|
||||||
|
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '0' } ) );">
|
||||||
|
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
||||||
|
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">2</text>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(167.0,67.5)" v-bind:class="{used:used_effects_indexes.includes(1)}">
|
||||||
|
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '1' } ) );">
|
||||||
|
<circle cx="0" cy="0" r="20" fill="green" x="0" y="0" />
|
||||||
|
<text x="0" y="9" font-size="24" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">5</text>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
</svg>
|
</svg>
|
||||||
|
Before Width: | Height: | Size: 2.6 KiB After Width: | Height: | Size: 2.6 KiB |
@@ -1,6 +1,6 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||||
width="298" height="417" viewBox="0 0 298 417" id="card91">
|
width="298" height="417" viewBox="0 0 298 417" id="card91" class="card" xmlns:v-bind="https://heron.legonzaur.fr">
|
||||||
<defs>
|
<defs>
|
||||||
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
||||||
<stop offset="0" stop-color="red" stop-opacity="1" />
|
<stop offset="0" stop-color="red" stop-opacity="1" />
|
||||||
@@ -13,24 +13,6 @@
|
|||||||
<filter id="drop-shadow">
|
<filter id="drop-shadow">
|
||||||
<feDropShadow dx="1" dy="1" stdDeviation="0"></feDropShadow>
|
<feDropShadow dx="1" dy="1" stdDeviation="0"></feDropShadow>
|
||||||
</filter>
|
</filter>
|
||||||
<g id="faction_icon">
|
|
||||||
<circle cx="1" cy="1" r="20" fill="black" filter="url(#drop-shadow)" />
|
|
||||||
<circle cx="0" cy="0" r="20" fill="url(#grad2)" />
|
|
||||||
</g>
|
|
||||||
<g id="d0">
|
|
||||||
<text x="0" y="-5.5" font-size="11" text-anchor="middle" fill="black" font-family="Helvetica"><tspan x="0" dy="0em">Vous pouvez sacrifier une carte</tspan><tspan x="0" dy="1em">de votre main ou de votre défausse.</tspan></text>
|
|
||||||
</g>
|
|
||||||
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '0' } ) );" id="d1">
|
|
||||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
|
||||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">1</text>
|
|
||||||
</g>
|
|
||||||
<g id="d2">
|
|
||||||
<use xlink:href="#d0" x="137.0" y="101.5" />
|
|
||||||
<use xlink:href="#d1" x="137.0" y="60.5" />
|
|
||||||
</g>
|
|
||||||
<g id="effects">
|
|
||||||
<use xlink:href="#d2" x="0" y="0" />
|
|
||||||
</g>
|
|
||||||
</defs>
|
</defs>
|
||||||
<use xlink:href="#drop-shadow" />
|
<use xlink:href="#drop-shadow" />
|
||||||
<g id="background">
|
<g id="background">
|
||||||
@@ -41,8 +23,25 @@
|
|||||||
<text x="149.0" y="36" font-size="19" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">Demon Blood</text>
|
<text x="149.0" y="36" font-size="19" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">Demon Blood</text>
|
||||||
<text x="149.0" y="53" font-size="13" text-anchor="middle" fill="black" font-family="Helvetica">Action</text>
|
<text x="149.0" y="53" font-size="13" text-anchor="middle" fill="black" font-family="Helvetica">Action</text>
|
||||||
</g>
|
</g>
|
||||||
<use xlink:href="#faction_icon" x="36" y="37" />
|
<g transform="translate(36,37)">
|
||||||
|
<g id="faction_icon">
|
||||||
|
<circle cx="1" cy="1" r="20" fill="black" filter="url(#drop-shadow)" />
|
||||||
|
<circle cx="0" cy="0" r="20" fill="url(#grad2)" />
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
<rect x="0" y="65" width="298" height="200" />
|
<rect x="0" y="65" width="298" height="200" />
|
||||||
<image x="0" y="65" width="298" height="200" xlink:href="../../img/missing.png" />
|
<image x="0" y="65" width="298" height="200" xlink:href="../../img/missing.png" />
|
||||||
<use xlink:href="#effects" x="12" y="265" />
|
<g transform="translate(12,265)">
|
||||||
|
<g>
|
||||||
|
<g transform="translate(137.0,101.5)">
|
||||||
|
<text x="0" y="-5.5" font-size="11" text-anchor="middle" fill="black" font-family="Helvetica"><tspan x="0" dy="0em">Vous pouvez sacrifier une carte</tspan><tspan x="0" dy="1em">de votre main ou de votre défausse.</tspan></text>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(137.0,60.5)" v-bind:class="{used:used_effects_indexes.includes(0)}">
|
||||||
|
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '0' } ) );">
|
||||||
|
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
||||||
|
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">1</text>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
</svg>
|
</svg>
|
||||||
|
Before Width: | Height: | Size: 2.3 KiB After Width: | Height: | Size: 2.3 KiB |
@@ -1,6 +1,6 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||||
width="298" height="417" viewBox="0 0 298 417" id="card92">
|
width="298" height="417" viewBox="0 0 298 417" id="card92" class="card" xmlns:v-bind="https://heron.legonzaur.fr">
|
||||||
<defs>
|
<defs>
|
||||||
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
||||||
<stop offset="0" stop-color="gray" stop-opacity="1" />
|
<stop offset="0" stop-color="gray" stop-opacity="1" />
|
||||||
@@ -13,33 +13,6 @@
|
|||||||
<filter id="drop-shadow">
|
<filter id="drop-shadow">
|
||||||
<feDropShadow dx="1" dy="1" stdDeviation="0"></feDropShadow>
|
<feDropShadow dx="1" dy="1" stdDeviation="0"></feDropShadow>
|
||||||
</filter>
|
</filter>
|
||||||
<g id="faction_icon">
|
|
||||||
<circle cx="1" cy="1" r="20" fill="black" filter="url(#drop-shadow)" />
|
|
||||||
<circle cx="0" cy="0" r="20" fill="url(#grad2)" />
|
|
||||||
</g>
|
|
||||||
<g id="d0">
|
|
||||||
<text x="0" y="-0.0" font-size="13.333333333333334" text-anchor="middle" fill="black" font-family="Helvetica"></text>
|
|
||||||
</g>
|
|
||||||
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '0' } ) );" id="d1">
|
|
||||||
<circle cx="0" cy="0" r="20" fill="red" x="0" y="0" />
|
|
||||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">2</text>
|
|
||||||
</g>
|
|
||||||
<g id="d2">
|
|
||||||
<use xlink:href="#d0" x="137.0" y="70.66666666666667" />
|
|
||||||
<use xlink:href="#d1" x="137.0" y="40.0" />
|
|
||||||
</g>
|
|
||||||
<g id="d3">
|
|
||||||
<text x="0" y="-0.0" font-size="14" text-anchor="middle" fill="black" font-family="Helvetica">keep_in_hand</text>
|
|
||||||
</g>
|
|
||||||
<g id="d4">
|
|
||||||
<circle cx="30" cy="27.5" r="15" fill="url(#grad2)" filter="url(#drop-shadow)" />
|
|
||||||
<use xlink:href="#d3" x="137.0" y="31.0" />
|
|
||||||
</g>
|
|
||||||
<g id="effects">
|
|
||||||
<path d="M10,80 L264,80" stroke="black" stroke-width="1" />
|
|
||||||
<use xlink:href="#d2" x="0" y="0" />
|
|
||||||
<use xlink:href="#d4" x="0" y="80" />
|
|
||||||
</g>
|
|
||||||
</defs>
|
</defs>
|
||||||
<use xlink:href="#drop-shadow" />
|
<use xlink:href="#drop-shadow" />
|
||||||
<g id="background">
|
<g id="background">
|
||||||
@@ -50,8 +23,34 @@
|
|||||||
<text x="149.0" y="36" font-size="19" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">Demonic Strength</text>
|
<text x="149.0" y="36" font-size="19" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">Demonic Strength</text>
|
||||||
<text x="149.0" y="53" font-size="13" text-anchor="middle" fill="black" font-family="Helvetica">Action</text>
|
<text x="149.0" y="53" font-size="13" text-anchor="middle" fill="black" font-family="Helvetica">Action</text>
|
||||||
</g>
|
</g>
|
||||||
<use xlink:href="#faction_icon" x="36" y="37" />
|
<g transform="translate(36,37)">
|
||||||
|
<g id="faction_icon">
|
||||||
|
<circle cx="1" cy="1" r="20" fill="black" filter="url(#drop-shadow)" />
|
||||||
|
<circle cx="0" cy="0" r="20" fill="url(#grad2)" />
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
<rect x="0" y="65" width="298" height="200" />
|
<rect x="0" y="65" width="298" height="200" />
|
||||||
<image x="0" y="65" width="298" height="200" xlink:href="../../img/missing.png" />
|
<image x="0" y="65" width="298" height="200" xlink:href="../../img/missing.png" />
|
||||||
<use xlink:href="#effects" x="12" y="265" />
|
<g transform="translate(12,265)">
|
||||||
|
<path d="M10,80 L264,80" stroke="black" stroke-width="1" />
|
||||||
|
<g>
|
||||||
|
<g transform="translate(137.0,70.66666666666667)">
|
||||||
|
<text x="0" y="-0.0" font-size="13.333333333333334" text-anchor="middle" fill="black" font-family="Helvetica"></text>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(137.0,40.0)" v-bind:class="{used:used_effects_indexes.includes(0)}">
|
||||||
|
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '0' } ) );">
|
||||||
|
<circle cx="0" cy="0" r="20" fill="red" x="0" y="0" />
|
||||||
|
<text x="0" y="9" font-size="24" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">2</text>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(0,80)">
|
||||||
|
<g>
|
||||||
|
<circle cx="30" cy="27.5" r="15" fill="url(#grad2)" filter="url(#drop-shadow)" />
|
||||||
|
<g transform="translate(137.0,31.0)">
|
||||||
|
<text x="0" y="-0.0" font-size="14" text-anchor="middle" fill="black" font-family="Helvetica">keep_in_hand</text>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
</svg>
|
</svg>
|
||||||
|
Before Width: | Height: | Size: 2.6 KiB After Width: | Height: | Size: 2.6 KiB |
@@ -1,6 +1,6 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||||
width="298" height="417" viewBox="0 0 298 417" id="card93">
|
width="298" height="417" viewBox="0 0 298 417" id="card93" class="card" xmlns:v-bind="https://heron.legonzaur.fr">
|
||||||
<defs>
|
<defs>
|
||||||
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
||||||
<stop offset="0" stop-color="gray" stop-opacity="1" />
|
<stop offset="0" stop-color="gray" stop-opacity="1" />
|
||||||
@@ -13,24 +13,6 @@
|
|||||||
<filter id="drop-shadow">
|
<filter id="drop-shadow">
|
||||||
<feDropShadow dx="1" dy="1" stdDeviation="0"></feDropShadow>
|
<feDropShadow dx="1" dy="1" stdDeviation="0"></feDropShadow>
|
||||||
</filter>
|
</filter>
|
||||||
<g id="faction_icon">
|
|
||||||
<circle cx="1" cy="1" r="20" fill="black" filter="url(#drop-shadow)" />
|
|
||||||
<circle cx="0" cy="0" r="20" fill="url(#grad2)" />
|
|
||||||
</g>
|
|
||||||
<g id="d0">
|
|
||||||
<text x="0" y="-0.0" font-size="14" text-anchor="middle" fill="black" font-family="Helvetica"></text>
|
|
||||||
</g>
|
|
||||||
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '0' } ) );" id="d1">
|
|
||||||
<circle cx="0" cy="0" r="20" fill="red" x="0" y="0" />
|
|
||||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">3</text>
|
|
||||||
</g>
|
|
||||||
<g id="d2">
|
|
||||||
<use xlink:href="#d0" x="137.0" y="101.5" />
|
|
||||||
<use xlink:href="#d1" x="137.0" y="67.5" />
|
|
||||||
</g>
|
|
||||||
<g id="effects">
|
|
||||||
<use xlink:href="#d2" x="0" y="0" />
|
|
||||||
</g>
|
|
||||||
</defs>
|
</defs>
|
||||||
<use xlink:href="#drop-shadow" />
|
<use xlink:href="#drop-shadow" />
|
||||||
<g id="background">
|
<g id="background">
|
||||||
@@ -41,8 +23,25 @@
|
|||||||
<text x="149.0" y="36" font-size="19" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">Hammer</text>
|
<text x="149.0" y="36" font-size="19" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">Hammer</text>
|
||||||
<text x="149.0" y="53" font-size="13" text-anchor="middle" fill="black" font-family="Helvetica">item</text>
|
<text x="149.0" y="53" font-size="13" text-anchor="middle" fill="black" font-family="Helvetica">item</text>
|
||||||
</g>
|
</g>
|
||||||
<use xlink:href="#faction_icon" x="36" y="37" />
|
<g transform="translate(36,37)">
|
||||||
|
<g id="faction_icon">
|
||||||
|
<circle cx="1" cy="1" r="20" fill="black" filter="url(#drop-shadow)" />
|
||||||
|
<circle cx="0" cy="0" r="20" fill="url(#grad2)" />
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
<rect x="0" y="65" width="298" height="200" />
|
<rect x="0" y="65" width="298" height="200" />
|
||||||
<image x="0" y="65" width="298" height="200" xlink:href="../../img/missing.png" />
|
<image x="0" y="65" width="298" height="200" xlink:href="../../img/missing.png" />
|
||||||
<use xlink:href="#effects" x="12" y="265" />
|
<g transform="translate(12,265)">
|
||||||
|
<g>
|
||||||
|
<g transform="translate(137.0,101.5)">
|
||||||
|
<text x="0" y="-0.0" font-size="14" text-anchor="middle" fill="black" font-family="Helvetica"></text>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(137.0,67.5)" v-bind:class="{used:used_effects_indexes.includes(0)}">
|
||||||
|
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '0' } ) );">
|
||||||
|
<circle cx="0" cy="0" r="20" fill="red" x="0" y="0" />
|
||||||
|
<text x="0" y="9" font-size="24" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">3</text>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
</svg>
|
</svg>
|
||||||
|
Before Width: | Height: | Size: 2.2 KiB After Width: | Height: | Size: 2.2 KiB |
@@ -1,6 +1,6 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||||
width="298" height="417" viewBox="0 0 298 417" id="card94">
|
width="298" height="417" viewBox="0 0 298 417" id="card94" class="card" xmlns:v-bind="https://heron.legonzaur.fr">
|
||||||
<defs>
|
<defs>
|
||||||
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
||||||
<stop offset="0" stop-color="gray" stop-opacity="1" />
|
<stop offset="0" stop-color="gray" stop-opacity="1" />
|
||||||
@@ -13,24 +13,6 @@
|
|||||||
<filter id="drop-shadow">
|
<filter id="drop-shadow">
|
||||||
<feDropShadow dx="1" dy="1" stdDeviation="0"></feDropShadow>
|
<feDropShadow dx="1" dy="1" stdDeviation="0"></feDropShadow>
|
||||||
</filter>
|
</filter>
|
||||||
<g id="faction_icon">
|
|
||||||
<circle cx="1" cy="1" r="20" fill="black" filter="url(#drop-shadow)" />
|
|
||||||
<circle cx="0" cy="0" r="20" fill="url(#grad2)" />
|
|
||||||
</g>
|
|
||||||
<g id="d0">
|
|
||||||
<text x="0" y="-0.0" font-size="14" text-anchor="middle" fill="black" font-family="Helvetica">buy_gem_for_free</text>
|
|
||||||
</g>
|
|
||||||
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '0' } ) );" id="d1">
|
|
||||||
<circle cx="0" cy="0" r="20" fill="red" x="0" y="0" />
|
|
||||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">2</text>
|
|
||||||
</g>
|
|
||||||
<g id="d2">
|
|
||||||
<use xlink:href="#d0" x="137.0" y="101.5" />
|
|
||||||
<use xlink:href="#d1" x="137.0" y="60.5" />
|
|
||||||
</g>
|
|
||||||
<g id="effects">
|
|
||||||
<use xlink:href="#d2" x="0" y="0" />
|
|
||||||
</g>
|
|
||||||
</defs>
|
</defs>
|
||||||
<use xlink:href="#drop-shadow" />
|
<use xlink:href="#drop-shadow" />
|
||||||
<g id="background">
|
<g id="background">
|
||||||
@@ -41,8 +23,25 @@
|
|||||||
<text x="149.0" y="36" font-size="19" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">Pick</text>
|
<text x="149.0" y="36" font-size="19" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">Pick</text>
|
||||||
<text x="149.0" y="53" font-size="13" text-anchor="middle" fill="black" font-family="Helvetica">item</text>
|
<text x="149.0" y="53" font-size="13" text-anchor="middle" fill="black" font-family="Helvetica">item</text>
|
||||||
</g>
|
</g>
|
||||||
<use xlink:href="#faction_icon" x="36" y="37" />
|
<g transform="translate(36,37)">
|
||||||
|
<g id="faction_icon">
|
||||||
|
<circle cx="1" cy="1" r="20" fill="black" filter="url(#drop-shadow)" />
|
||||||
|
<circle cx="0" cy="0" r="20" fill="url(#grad2)" />
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
<rect x="0" y="65" width="298" height="200" />
|
<rect x="0" y="65" width="298" height="200" />
|
||||||
<image x="0" y="65" width="298" height="200" xlink:href="../../img/missing.png" />
|
<image x="0" y="65" width="298" height="200" xlink:href="../../img/missing.png" />
|
||||||
<use xlink:href="#effects" x="12" y="265" />
|
<g transform="translate(12,265)">
|
||||||
|
<g>
|
||||||
|
<g transform="translate(137.0,101.5)">
|
||||||
|
<text x="0" y="-0.0" font-size="14" text-anchor="middle" fill="black" font-family="Helvetica">buy_gem_for_free</text>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(137.0,60.5)" v-bind:class="{used:used_effects_indexes.includes(0)}">
|
||||||
|
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '0' } ) );">
|
||||||
|
<circle cx="0" cy="0" r="20" fill="red" x="0" y="0" />
|
||||||
|
<text x="0" y="9" font-size="24" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">2</text>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
</svg>
|
</svg>
|
||||||
|
Before Width: | Height: | Size: 2.2 KiB After Width: | Height: | Size: 2.2 KiB |
@@ -1,6 +1,6 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||||
width="298" height="417" viewBox="0 0 298 417" id="card95">
|
width="298" height="417" viewBox="0 0 298 417" id="card95" class="card" xmlns:v-bind="https://heron.legonzaur.fr">
|
||||||
<defs>
|
<defs>
|
||||||
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
||||||
<stop offset="0" stop-color="gray" stop-opacity="1" />
|
<stop offset="0" stop-color="gray" stop-opacity="1" />
|
||||||
@@ -13,19 +13,6 @@
|
|||||||
<filter id="drop-shadow">
|
<filter id="drop-shadow">
|
||||||
<feDropShadow dx="1" dy="1" stdDeviation="0"></feDropShadow>
|
<feDropShadow dx="1" dy="1" stdDeviation="0"></feDropShadow>
|
||||||
</filter>
|
</filter>
|
||||||
<g id="faction_icon">
|
|
||||||
<circle cx="1" cy="1" r="20" fill="black" filter="url(#drop-shadow)" />
|
|
||||||
<circle cx="0" cy="0" r="20" fill="url(#grad2)" />
|
|
||||||
</g>
|
|
||||||
<g id="d0">
|
|
||||||
<text x="0" y="-7.0" font-size="14" text-anchor="middle" fill="black" font-family="Helvetica"><tspan x="0" dy="0em">cheaper_skills_passive </tspan><tspan x="0" dy="1em">Piochez une carte.</tspan></text>
|
|
||||||
</g>
|
|
||||||
<g id="d1">
|
|
||||||
<use xlink:href="#d0" x="137.0" y="71.0" />
|
|
||||||
</g>
|
|
||||||
<g id="effects">
|
|
||||||
<use xlink:href="#d1" x="0" y="0" />
|
|
||||||
</g>
|
|
||||||
</defs>
|
</defs>
|
||||||
<use xlink:href="#drop-shadow" />
|
<use xlink:href="#drop-shadow" />
|
||||||
<g id="background">
|
<g id="background">
|
||||||
@@ -36,8 +23,19 @@
|
|||||||
<text x="149.0" y="36" font-size="19" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">Elven Grace</text>
|
<text x="149.0" y="36" font-size="19" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">Elven Grace</text>
|
||||||
<text x="149.0" y="53" font-size="13" text-anchor="middle" fill="black" font-family="Helvetica">Action</text>
|
<text x="149.0" y="53" font-size="13" text-anchor="middle" fill="black" font-family="Helvetica">Action</text>
|
||||||
</g>
|
</g>
|
||||||
<use xlink:href="#faction_icon" x="36" y="37" />
|
<g transform="translate(36,37)">
|
||||||
|
<g id="faction_icon">
|
||||||
|
<circle cx="1" cy="1" r="20" fill="black" filter="url(#drop-shadow)" />
|
||||||
|
<circle cx="0" cy="0" r="20" fill="url(#grad2)" />
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
<rect x="0" y="65" width="298" height="200" />
|
<rect x="0" y="65" width="298" height="200" />
|
||||||
<image x="0" y="65" width="298" height="200" xlink:href="../../img/missing.png" />
|
<image x="0" y="65" width="298" height="200" xlink:href="../../img/missing.png" />
|
||||||
<use xlink:href="#effects" x="12" y="265" />
|
<g transform="translate(12,265)">
|
||||||
|
<g>
|
||||||
|
<g transform="translate(137.0,71.0)">
|
||||||
|
<text x="0" y="-7.0" font-size="14" text-anchor="middle" fill="black" font-family="Helvetica"><tspan x="0" dy="0em">cheaper_skills_passive </tspan><tspan x="0" dy="1em">Piochez une carte.</tspan></text>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
</svg>
|
</svg>
|
||||||
|
Before Width: | Height: | Size: 1.9 KiB After Width: | Height: | Size: 1.9 KiB |
@@ -1,6 +1,6 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||||
width="298" height="417" viewBox="0 0 298 417" id="card96">
|
width="298" height="417" viewBox="0 0 298 417" id="card96" class="card" xmlns:v-bind="https://heron.legonzaur.fr">
|
||||||
<defs>
|
<defs>
|
||||||
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
||||||
<stop offset="0" stop-color="gray" stop-opacity="1" />
|
<stop offset="0" stop-color="gray" stop-opacity="1" />
|
||||||
@@ -13,29 +13,6 @@
|
|||||||
<filter id="drop-shadow">
|
<filter id="drop-shadow">
|
||||||
<feDropShadow dx="1" dy="1" stdDeviation="0"></feDropShadow>
|
<feDropShadow dx="1" dy="1" stdDeviation="0"></feDropShadow>
|
||||||
</filter>
|
</filter>
|
||||||
<g id="faction_icon">
|
|
||||||
<circle cx="1" cy="1" r="20" fill="black" filter="url(#drop-shadow)" />
|
|
||||||
<circle cx="0" cy="0" r="20" fill="url(#grad2)" />
|
|
||||||
</g>
|
|
||||||
<g id="d0">
|
|
||||||
<text x="0" y="-0.0" font-size="14" text-anchor="middle" fill="black" font-family="Helvetica"></text>
|
|
||||||
</g>
|
|
||||||
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '0' } ) );" id="d1">
|
|
||||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
|
||||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">1</text>
|
|
||||||
</g>
|
|
||||||
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '1' } ) );" id="d2">
|
|
||||||
<circle cx="0" cy="0" r="20" fill="green" x="0" y="0" />
|
|
||||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">2</text>
|
|
||||||
</g>
|
|
||||||
<g id="d3">
|
|
||||||
<use xlink:href="#d0" x="137.0" y="101.5" />
|
|
||||||
<use xlink:href="#d1" x="107.0" y="67.5" />
|
|
||||||
<use xlink:href="#d2" x="167.0" y="67.5" />
|
|
||||||
</g>
|
|
||||||
<g id="effects">
|
|
||||||
<use xlink:href="#d3" x="0" y="0" />
|
|
||||||
</g>
|
|
||||||
</defs>
|
</defs>
|
||||||
<use xlink:href="#drop-shadow" />
|
<use xlink:href="#drop-shadow" />
|
||||||
<g id="background">
|
<g id="background">
|
||||||
@@ -46,8 +23,31 @@
|
|||||||
<text x="149.0" y="36" font-size="19" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">Sunstone Brooch</text>
|
<text x="149.0" y="36" font-size="19" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">Sunstone Brooch</text>
|
||||||
<text x="149.0" y="53" font-size="13" text-anchor="middle" fill="black" font-family="Helvetica">item</text>
|
<text x="149.0" y="53" font-size="13" text-anchor="middle" fill="black" font-family="Helvetica">item</text>
|
||||||
</g>
|
</g>
|
||||||
<use xlink:href="#faction_icon" x="36" y="37" />
|
<g transform="translate(36,37)">
|
||||||
|
<g id="faction_icon">
|
||||||
|
<circle cx="1" cy="1" r="20" fill="black" filter="url(#drop-shadow)" />
|
||||||
|
<circle cx="0" cy="0" r="20" fill="url(#grad2)" />
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
<rect x="0" y="65" width="298" height="200" />
|
<rect x="0" y="65" width="298" height="200" />
|
||||||
<image x="0" y="65" width="298" height="200" xlink:href="../../img/missing.png" />
|
<image x="0" y="65" width="298" height="200" xlink:href="../../img/missing.png" />
|
||||||
<use xlink:href="#effects" x="12" y="265" />
|
<g transform="translate(12,265)">
|
||||||
|
<g>
|
||||||
|
<g transform="translate(137.0,101.5)">
|
||||||
|
<text x="0" y="-0.0" font-size="14" text-anchor="middle" fill="black" font-family="Helvetica"></text>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(107.0,67.5)" v-bind:class="{used:used_effects_indexes.includes(0)}">
|
||||||
|
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '0' } ) );">
|
||||||
|
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
||||||
|
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">1</text>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(167.0,67.5)" v-bind:class="{used:used_effects_indexes.includes(1)}">
|
||||||
|
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '1' } ) );">
|
||||||
|
<circle cx="0" cy="0" r="20" fill="green" x="0" y="0" />
|
||||||
|
<text x="0" y="9" font-size="24" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">2</text>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
</svg>
|
</svg>
|
||||||
|
Before Width: | Height: | Size: 2.6 KiB After Width: | Height: | Size: 2.6 KiB |
@@ -1,6 +1,6 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||||
width="298" height="417" viewBox="0 0 298 417" id="card97">
|
width="298" height="417" viewBox="0 0 298 417" id="card97" class="card" xmlns:v-bind="https://heron.legonzaur.fr">
|
||||||
<defs>
|
<defs>
|
||||||
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
||||||
<stop offset="0" stop-color="gray" stop-opacity="1" />
|
<stop offset="0" stop-color="gray" stop-opacity="1" />
|
||||||
@@ -13,24 +13,6 @@
|
|||||||
<filter id="drop-shadow">
|
<filter id="drop-shadow">
|
||||||
<feDropShadow dx="1" dy="1" stdDeviation="0"></feDropShadow>
|
<feDropShadow dx="1" dy="1" stdDeviation="0"></feDropShadow>
|
||||||
</filter>
|
</filter>
|
||||||
<g id="faction_icon">
|
|
||||||
<circle cx="1" cy="1" r="20" fill="black" filter="url(#drop-shadow)" />
|
|
||||||
<circle cx="0" cy="0" r="20" fill="url(#grad2)" />
|
|
||||||
</g>
|
|
||||||
<g id="d0">
|
|
||||||
<text x="0" y="-0.0" font-size="14" text-anchor="middle" fill="black" font-family="Helvetica"></text>
|
|
||||||
</g>
|
|
||||||
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '0' } ) );" id="d1">
|
|
||||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
|
||||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">2</text>
|
|
||||||
</g>
|
|
||||||
<g id="d2">
|
|
||||||
<use xlink:href="#d0" x="137.0" y="101.5" />
|
|
||||||
<use xlink:href="#d1" x="137.0" y="67.5" />
|
|
||||||
</g>
|
|
||||||
<g id="effects">
|
|
||||||
<use xlink:href="#d2" x="0" y="0" />
|
|
||||||
</g>
|
|
||||||
</defs>
|
</defs>
|
||||||
<use xlink:href="#drop-shadow" />
|
<use xlink:href="#drop-shadow" />
|
||||||
<g id="background">
|
<g id="background">
|
||||||
@@ -41,8 +23,25 @@
|
|||||||
<text x="149.0" y="36" font-size="19" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">Shiny Rock</text>
|
<text x="149.0" y="36" font-size="19" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">Shiny Rock</text>
|
||||||
<text x="149.0" y="53" font-size="13" text-anchor="middle" fill="black" font-family="Helvetica">item</text>
|
<text x="149.0" y="53" font-size="13" text-anchor="middle" fill="black" font-family="Helvetica">item</text>
|
||||||
</g>
|
</g>
|
||||||
<use xlink:href="#faction_icon" x="36" y="37" />
|
<g transform="translate(36,37)">
|
||||||
|
<g id="faction_icon">
|
||||||
|
<circle cx="1" cy="1" r="20" fill="black" filter="url(#drop-shadow)" />
|
||||||
|
<circle cx="0" cy="0" r="20" fill="url(#grad2)" />
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
<rect x="0" y="65" width="298" height="200" />
|
<rect x="0" y="65" width="298" height="200" />
|
||||||
<image x="0" y="65" width="298" height="200" xlink:href="../../img/missing.png" />
|
<image x="0" y="65" width="298" height="200" xlink:href="../../img/missing.png" />
|
||||||
<use xlink:href="#effects" x="12" y="265" />
|
<g transform="translate(12,265)">
|
||||||
|
<g>
|
||||||
|
<g transform="translate(137.0,101.5)">
|
||||||
|
<text x="0" y="-0.0" font-size="14" text-anchor="middle" fill="black" font-family="Helvetica"></text>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(137.0,67.5)" v-bind:class="{used:used_effects_indexes.includes(0)}">
|
||||||
|
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '0' } ) );">
|
||||||
|
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
||||||
|
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">2</text>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
</svg>
|
</svg>
|
||||||
|
Before Width: | Height: | Size: 2.2 KiB After Width: | Height: | Size: 2.2 KiB |
@@ -1,6 +1,6 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||||
width="298" height="417" viewBox="0 0 298 417" id="card98">
|
width="298" height="417" viewBox="0 0 298 417" id="card98" class="card" xmlns:v-bind="https://heron.legonzaur.fr">
|
||||||
<defs>
|
<defs>
|
||||||
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
||||||
<stop offset="0" stop-color="gray" stop-opacity="1" />
|
<stop offset="0" stop-color="gray" stop-opacity="1" />
|
||||||
@@ -13,24 +13,6 @@
|
|||||||
<filter id="drop-shadow">
|
<filter id="drop-shadow">
|
||||||
<feDropShadow dx="1" dy="1" stdDeviation="0"></feDropShadow>
|
<feDropShadow dx="1" dy="1" stdDeviation="0"></feDropShadow>
|
||||||
</filter>
|
</filter>
|
||||||
<g id="faction_icon">
|
|
||||||
<circle cx="1" cy="1" r="20" fill="black" filter="url(#drop-shadow)" />
|
|
||||||
<circle cx="0" cy="0" r="20" fill="url(#grad2)" />
|
|
||||||
</g>
|
|
||||||
<g id="d0">
|
|
||||||
<text x="0" y="-0.0" font-size="14" text-anchor="middle" fill="black" font-family="Helvetica"></text>
|
|
||||||
</g>
|
|
||||||
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '0' } ) );" id="d1">
|
|
||||||
<circle cx="0" cy="0" r="20" fill="red" x="0" y="0" />
|
|
||||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">5</text>
|
|
||||||
</g>
|
|
||||||
<g id="d2">
|
|
||||||
<use xlink:href="#d0" x="137.0" y="101.5" />
|
|
||||||
<use xlink:href="#d1" x="137.0" y="67.5" />
|
|
||||||
</g>
|
|
||||||
<g id="effects">
|
|
||||||
<use xlink:href="#d2" x="0" y="0" />
|
|
||||||
</g>
|
|
||||||
</defs>
|
</defs>
|
||||||
<use xlink:href="#drop-shadow" />
|
<use xlink:href="#drop-shadow" />
|
||||||
<g id="background">
|
<g id="background">
|
||||||
@@ -41,8 +23,25 @@
|
|||||||
<text x="149.0" y="36" font-size="19" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">War Club</text>
|
<text x="149.0" y="36" font-size="19" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">War Club</text>
|
||||||
<text x="149.0" y="53" font-size="13" text-anchor="middle" fill="black" font-family="Helvetica">item</text>
|
<text x="149.0" y="53" font-size="13" text-anchor="middle" fill="black" font-family="Helvetica">item</text>
|
||||||
</g>
|
</g>
|
||||||
<use xlink:href="#faction_icon" x="36" y="37" />
|
<g transform="translate(36,37)">
|
||||||
|
<g id="faction_icon">
|
||||||
|
<circle cx="1" cy="1" r="20" fill="black" filter="url(#drop-shadow)" />
|
||||||
|
<circle cx="0" cy="0" r="20" fill="url(#grad2)" />
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
<rect x="0" y="65" width="298" height="200" />
|
<rect x="0" y="65" width="298" height="200" />
|
||||||
<image x="0" y="65" width="298" height="200" xlink:href="../../img/missing.png" />
|
<image x="0" y="65" width="298" height="200" xlink:href="../../img/missing.png" />
|
||||||
<use xlink:href="#effects" x="12" y="265" />
|
<g transform="translate(12,265)">
|
||||||
|
<g>
|
||||||
|
<g transform="translate(137.0,101.5)">
|
||||||
|
<text x="0" y="-0.0" font-size="14" text-anchor="middle" fill="black" font-family="Helvetica"></text>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(137.0,67.5)" v-bind:class="{used:used_effects_indexes.includes(0)}">
|
||||||
|
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '0' } ) );">
|
||||||
|
<circle cx="0" cy="0" r="20" fill="red" x="0" y="0" />
|
||||||
|
<text x="0" y="9" font-size="24" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">5</text>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
</svg>
|
</svg>
|
||||||
|
Before Width: | Height: | Size: 2.2 KiB After Width: | Height: | Size: 2.2 KiB |
@@ -1,6 +1,6 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||||
width="298" height="417" viewBox="0 0 298 417" id="card99">
|
width="298" height="417" viewBox="0 0 298 417" id="card99" class="card" xmlns:v-bind="https://heron.legonzaur.fr">
|
||||||
<defs>
|
<defs>
|
||||||
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
||||||
<stop offset="0" stop-color="gray" stop-opacity="1" />
|
<stop offset="0" stop-color="gray" stop-opacity="1" />
|
||||||
@@ -13,19 +13,6 @@
|
|||||||
<filter id="drop-shadow">
|
<filter id="drop-shadow">
|
||||||
<feDropShadow dx="1" dy="1" stdDeviation="0"></feDropShadow>
|
<feDropShadow dx="1" dy="1" stdDeviation="0"></feDropShadow>
|
||||||
</filter>
|
</filter>
|
||||||
<g id="faction_icon">
|
|
||||||
<circle cx="1" cy="1" r="20" fill="black" filter="url(#drop-shadow)" />
|
|
||||||
<circle cx="0" cy="0" r="20" fill="url(#grad2)" />
|
|
||||||
</g>
|
|
||||||
<g id="d0">
|
|
||||||
<text x="0" y="-0.0" font-size="14" text-anchor="middle" fill="black" font-family="Helvetica">buy_for_free</text>
|
|
||||||
</g>
|
|
||||||
<g id="d1">
|
|
||||||
<use xlink:href="#d0" x="137.0" y="71.0" />
|
|
||||||
</g>
|
|
||||||
<g id="effects">
|
|
||||||
<use xlink:href="#d1" x="0" y="0" />
|
|
||||||
</g>
|
|
||||||
</defs>
|
</defs>
|
||||||
<use xlink:href="#drop-shadow" />
|
<use xlink:href="#drop-shadow" />
|
||||||
<g id="background">
|
<g id="background">
|
||||||
@@ -36,8 +23,19 @@
|
|||||||
<text x="149.0" y="36" font-size="19" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">Bully</text>
|
<text x="149.0" y="36" font-size="19" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">Bully</text>
|
||||||
<text x="149.0" y="53" font-size="13" text-anchor="middle" fill="black" font-family="Helvetica">Action</text>
|
<text x="149.0" y="53" font-size="13" text-anchor="middle" fill="black" font-family="Helvetica">Action</text>
|
||||||
</g>
|
</g>
|
||||||
<use xlink:href="#faction_icon" x="36" y="37" />
|
<g transform="translate(36,37)">
|
||||||
|
<g id="faction_icon">
|
||||||
|
<circle cx="1" cy="1" r="20" fill="black" filter="url(#drop-shadow)" />
|
||||||
|
<circle cx="0" cy="0" r="20" fill="url(#grad2)" />
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
<rect x="0" y="65" width="298" height="200" />
|
<rect x="0" y="65" width="298" height="200" />
|
||||||
<image x="0" y="65" width="298" height="200" xlink:href="../../img/missing.png" />
|
<image x="0" y="65" width="298" height="200" xlink:href="../../img/missing.png" />
|
||||||
<use xlink:href="#effects" x="12" y="265" />
|
<g transform="translate(12,265)">
|
||||||
|
<g>
|
||||||
|
<g transform="translate(137.0,71.0)">
|
||||||
|
<text x="0" y="-0.0" font-size="14" text-anchor="middle" fill="black" font-family="Helvetica">buy_for_free</text>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
</svg>
|
</svg>
|
||||||
|
Before Width: | Height: | Size: 1.8 KiB After Width: | Height: | Size: 1.8 KiB |